Skip to content

OSError: I2C bus error with example #3

Open
@tiborrr

Description

@tiborrr

This error occurred on a Pycom Wipy

code I used:

import time
from scd30 import SCD30
from machine import I2C

#I2C setup
print("setup i2c")
i2c = I2C(0, I2C.MASTER, baudrate=50000)
print(i2c.scan())

#CO2 sensor setup
co2sensor = SCD30(i2c, 0x61)
co2sensor.set_measurement_interval(5)

while True:
    while co2sensor.get_status_ready() != 1:
        time.sleep_ms(200)
    print(co2sensor.read_measurement())
    time.sleep_ms(200)

Results in the following output:

[97]
(655.4566, 23.21889, 56.63605)
(653.791, 23.24559, 56.63147)
(653.7228, 23.27497, 56.55975)
(654.9095, 23.28832, 56.5094)
(655.1393, 23.31503, 56.50024)
(656.0949, 23.28832, 56.49567)
(656.3989, 23.28832, 56.56281)
(655.6221, 23.30168, 56.47736)
(654.5003, 23.28832, 56.37054)
(654.9923, 23.28832, 56.43463)
(654.4737, 23.24559, 56.51245)
(653.8462, 23.24559, 56.53229)
(653.3164, 23.27497, 56.52618)
(652.7819, 23.27497, 56.53687)
(651.5202, 23.27497, 56.58112)
(651.8386, 23.25895, 56.56738)
(651.4281, 23.24559, 56.55518)
(652.6042, 23.24559, 56.5033)
(661.3499, 23.25895, 57.32422)
(667.6893, 23.24559, 56.85577)
(674.1215, 23.24559, 56.63147)
(682.467, 23.21889, 56.53076)
(677.9596, 23.24559, 56.4682)
(676.1273, 23.25895, 56.53534)
(673.8711, 23.24559, 56.40411)
(673.1847, 23.27497, 56.37665)
(669.824, 23.25895, 56.27899)
(667.0184, 23.24559, 56.30798)
(664.3038, 23.24559, 56.39343)
(662.7124, 23.23224, 56.50024)
(660.7636, 23.25895, 56.4621)
(658.1758, 23.25895, 56.4621)
(656.9217, 23.25895, 56.4621)
(656.0261, 23.23224, 56.45752)
(655.1484, 23.25895, 56.4621)
(655.5229, 23.27497, 56.48499)
(655.0932, 23.25895, 56.3858)
(655.0857, 23.25895, 56.34308)
(654.7072, 23.24559, 56.44836)
(656.6269, 23.21889, 56.48651)
(659.3814, 23.21889, 56.71082)
**Traceback (most recent call last):
  File "<stdin>", line 19, in <module>
  File "/flash/lib/scd30.py", line 95, in get_status_ready
  File "/flash/lib/scd30.py", line 161, in __read_bytes**

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions