Skip to content

Commit 2480284

Browse files
author
brentru
committed
added get() method usage back to examples/07, 09, 13, and 16 after malloc fix
1 parent 6a9f436 commit 2480284

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

examples/adafruitio_07_digital_out/adafruitio_07_digital_out.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ void setup() {
5555
// we are connected
5656
Serial.println();
5757
Serial.println(io.statusText());
58+
digital->get();
5859

5960
}
6061

examples/adafruitio_09_analog_out/adafruitio_09_analog_out.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ void setup() {
6262
// we are connected
6363
Serial.println();
6464
Serial.println(io.statusText());
65+
analog->get();
6566

6667
}
6768

examples/adafruitio_13_rgb/adafruitio_13_rgb.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ void setup() {
7272
// we are connected
7373
Serial.println();
7474
Serial.println(io.statusText());
75+
color->get();
7576

7677
// set analogWrite range for ESP8266
7778
#ifdef ESP8266

examples/adafruitio_16_servo/adafruitio_16_servo.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ void setup() {
6767
// we are connected
6868
Serial.println();
6969
Serial.println(io.statusText());
70+
servo_feed->get();
7071

7172
}
7273

0 commit comments

Comments
 (0)