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:
commit
dcfbd006b5
4 changed files with 4 additions and 0 deletions
|
|
@ -55,6 +55,7 @@ void setup() {
|
|||
// we are connected
|
||||
Serial.println();
|
||||
Serial.println(io.statusText());
|
||||
digital->get();
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -62,6 +62,7 @@ void setup() {
|
|||
// we are connected
|
||||
Serial.println();
|
||||
Serial.println(io.statusText());
|
||||
analog->get();
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ void setup() {
|
|||
// we are connected
|
||||
Serial.println();
|
||||
Serial.println(io.statusText());
|
||||
color->get();
|
||||
|
||||
// set analogWrite range for ESP8266
|
||||
#ifdef ESP8266
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@ void setup() {
|
|||
// we are connected
|
||||
Serial.println();
|
||||
Serial.println(io.statusText());
|
||||
servo_feed->get();
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue