Skip to content

Commit

Permalink
Updated Quick_Start
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigpotatoe committed Sep 20, 2020
1 parent 6727549 commit 69334a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ void string_callback(unsigned long _current_millis) {
}

void setup() {
// Start Serial
Serial.begin(115200);
Serial.println();

// Add callback to Feature
current_millis.addEventCallback(string_callback);
}
Expand Down
4 changes: 4 additions & 0 deletions examples/Quick_Start/Quick_Start.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ void string_callback(unsigned long _current_millis) {
}

void setup() {
// Start Serial
Serial.begin(115200);
Serial.println();

// Add callback to Feature
current_millis.addEventCallback(string_callback);
}
Expand Down

0 comments on commit 69334a0

Please sign in to comment.