raspberrypi-grove-hat:hat_seedstudio_grove_sur_raspberry_py_et_capteurs_grove
Table des matières
Intro et install
- Attention, capteurs en 3.3V SEULEMENT
- Attention, pas de hot-plug sinon risque de crash du raspberry pi
Pour installer :
sudo apt install python-pip python3-pip curl -sL https://github.com/Seeed-Studio/grove.py/raw/master/install.sh | sudo bash -s -
On doit avoir à la fin :
Lastest Grove.py from github install complete !!!!!
grove.py
Capteur CO2 SCD30
- page du constructeur : https://www.sensirion.com/en/environmental-sensors/carbon-dioxide-sensors-co2/
- page de manuel grove : http://wiki.seeedstudio.com/Grove-CO2_Temperature_Humidity_Sensor-SCD30/
- code python exemple : http://www.knight-of-pi.org/reading-the-co2-sensor-scd30-over-i2c-with-smbus/
- librairie Arduino : https://github.com/Seeed-Studio/Seeed_SCD30
- librairie python imparfaite : https://github.com/postronium/SCD30-Raspberry-Pi
- service en python : https://github.com/UnravelTEC/Raspi-Driver-SCD30 :
https://github.com/UnravelTEC/Raspi-Driver-SCD30 sudo apt install python-crcmod sudo apt install python3-crcmod sudo sed -i "s|^ExecStart=.*|ExecStart=/usr/bin/pigpiod -l -n 127.0.0.1|" /lib/systemd/system/pigpiod.service sudo systemctl daemon-reload sudo systemctl stop pigpiod sudo systemctl enable pigpiod sudo systemctl start pigpiod git clone https://github.com/UnravelTEC/Raspi-Driver-SCD30 cd Raspi-Driver-SCD30 /scd30-once.py # test # gas_ppm{sensor="SCD30",gas="CO2"} 404.636780 # temperature_degC{sensor="SCD30"} 30.775925 # humidity_rel_percent{sensor="SCD30"} 31.170654 sudo ./install.sh # installer et démarrer le service watch -n 1 cat /run/sensors/scd30/last # test du service
- niveaux de référence ppm CO2: https://www.kane.co.uk/knowledge-centre/what-are-safe-levels-of-co-and-co2-in-rooms
Capteur de lumière TSL2561
- page du constructeur : https://ams.com/TSL2561
- page de manuel grove : http://wiki.seeedstudio.com/Grove-Digital_Light_Sensor/
- NodeRed contrib : https://flows.nodered.org/node/node-red-contrib-tsl2561
- Test Python d'après http://wiki.seeedstudio.com/Grove-Digital_Light_Sensor/ :
git clone https://github.com/DexterInd/GrovePi/grove_i2c_digital_light_sensor/ cd GrovePi/Software/Python/grove_i2c_digital_light_sensor python ./grove_i2c_digital_light_sensor.py
Bouttons et LEDs
Boutton + LED
- manuel seedstudio : boutton+led : http://wiki.seeedstudio.com/Grove-LED_Button/
- test :
python grove_ryb_led_button.py 5
LED multicolore / potentiomètre
- led multicolore : http://wiki.seeedstudio.com/Grove-Variable_Color_LED/
- test :
python grove_relay.py 26
A tester
raspberrypi-grove-hat/hat_seedstudio_grove_sur_raspberry_py_et_capteurs_grove.txt · Dernière modification : 2019/08/23 09:33 de ghusson