Raindrop C6B3

Raindrop C6B3

This page is to Setup and Config Raindrop C6B3

Hardware and Software

Hardware

Raindrop C6B3 & Arduino

Software

1.

Support :

Example : Steps

    1. (Module : Arduino)

    2. V++ : 5V

    3. GND : GND

    4. A0 : A0

    5. D0 : Any Digital

Sanki Notes

Examples

      1. int val; int aPin = A0; void setup() { Serial.begin(115200); } void loop() { val = analogRead(aPin); Serial.print("Water : "); Serial.println(val); delay(1000); }

Second Example