grove.py
grove.py copied to clipboard
Python library for Seeedstudio Grove devices
I could not find any information about the Infrared Temperature Sensor (MLX90615). Did anyone made this running on a RPI?
I tried to follow grove water sensor example shown in `https://github.com/Seeed-Studio/grove.py/blob/master/grove/grove_water_sensor.py` The below condition is opposite in my case: ``` if sensor.value > 800: print("{}, Detected Water.".format(value)) else: print("{}, Dry.".format(value))...
I'm a pretty new user of Grove modules. I have successfully run 16x2 LCD and ultrasonic ranger with that Python library but I can't run IMU9DOFICM20600 (gyro/accelerometer/compass) with it. What...
https://github.com/Seeed-Studio/grove.py/blob/master/grove/grove_gesture_sensor.py ``` python if data0 != 0x20 :#or data1 0x76: print("Error with sensor") ``` Only one byte is checked - second check is commted out. Why? ``` python if data...
I want to use Grove Base Hat for Raspberry Pi 3B running Ubuntu 18.04 LTS. I tried curl -sL https://github.com/Seeed-Studio/grove.py/raw/master/install.sh | sudo bash -s - But it never succeeds with...
I'm getting this I2C error which I can't seem to figure out why: ``` raceback (most recent call last): File "/home/pi/.local/lib/python3.9/site-packages/seeed_si114x.py", line 296, in _ReadByte read_data = self.bus.read_byte_data(self.addr,Reg) File "/usr/local/lib/python3.9/dist-packages/smbus2/smbus2.py",...
## Problem The `smbus` instantiation logic in `i2c.py` selects the wrong i2c bus number for CM4 Pi. This presents itself in the form of an uncaught `IOError` that crashes a...