Merge pull request #37 from adafruit/addin-get-examples

added get() method usage back to examples/07, 09, 13, and 16
This commit is contained in:
Limor "Ladyada" Fried 2018-06-20 09:37:28 -07:00 committed by GitHub
commit dcfbd006b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

View file

@ -55,6 +55,7 @@ void setup() {
// we are connected
Serial.println();
Serial.println(io.statusText());
digital->get();
}

View file

@ -62,6 +62,7 @@ void setup() {
// we are connected
Serial.println();
Serial.println(io.statusText());
analog->get();
}

View file

@ -72,6 +72,7 @@ void setup() {
// we are connected
Serial.println();
Serial.println(io.statusText());
color->get();
// set analogWrite range for ESP8266
#ifdef ESP8266

View file

@ -67,6 +67,7 @@ void setup() {
// we are connected
Serial.println();
Serial.println(io.statusText());
servo_feed->get();
}