-
Notifications
You must be signed in to change notification settings - Fork 18
Grove Sensors
Thomas Amberg edited this page Sep 18, 2020
·
99 revisions
Connect to Grove D<XY>
Color | Signal |
---|---|
Black | GND |
Red | VCC (3.3V) |
White | NC |
Yellow | SIG (Digital) |
- https://www.arduino.cc/reference/en/language/functions/digital-io/digitalread/ (built-in)
- Example: File > Examples > Basics > DigitalReadSerial
Connect to Grove A<XY>
Color | Signal |
---|---|
Black | GND |
Red | VCC (3.3V) |
White | NC |
Yellow | SIG (Analog) |
- https://www.arduino.cc/reference/en/language/functions/analog-io/analogread/ (built-in)
- Example: File > Examples > Basics > AnalogReadSerial
Connect to Grove A<XY>
Color | Signal |
---|---|
Black | GND |
Red | VCC (3.3V) |
White | NC |
Yellow | SIG (Analog) |
- https://www.arduino.cc/reference/en/language/functions/analog-io/analogread/ (built-in)
- Example: File > Examples > Basics > AnalogReadSerial
Connect to Grove D<XY>
Color | Signal |
---|---|
Black | GND |
Red | VCC (3.3V) |
White | NC |
Yellow | SIG (Digital) |
- Library: Sketch > Include Library > Manage Libraries... > DHTesp > Install
- Example: File > Examples > DHT sensor library for ESPx > DHT_ESP8266
- In the example code, make sure to use DHT11
//dht.setup(..., DHTesp::DHT22); dht.setup(..., DHTesp::DHT11);
- In the example code, make sure to use DHT11
- Library: Sketch > Include Library > Manage Libraries... > Grove DHT11 > Install
- Example: File > Examples > Grove Temperature and Humidity Sensor > DHTtester
- In the example code, make sure to use DHT11
//#define DHTTYPE DHT22 #define DHTTYPE DHT11
- In the example code, make sure to use DHT11
- http://wiki.seeedstudio.com/Grove-TemperatureAndHumidity_Sensor/
- https://github.com/Seeed-Studio/Grove_Temperature_And_Humidity_Sensor
Connect to Grove D<XY>
Color | Signal |
---|---|
Black | GND |
Red | VCC (3.3V) |
White | NC |
Yellow | SIG (Digital, PWM) |
- Library: Sketch > Include Library > Manage Libraries... > Grove Ultrasonic Ranger > Install
- Example: File > Examples > Grove Ultrasonic Ranger > UltrasonicDisplayOnTerm