Skip to content

Commit 9823652

Browse files
committed
Replace boolean type with bool in examples
This is part of a move to encourage use of the standard bool type over Arduino's non-standard boolean type alias.
1 parent 834d412 commit 9823652

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/full_test_suite/full_test_suite.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include "config.h"
1313

1414
int test_delay = 1000; //so we don't spam the API
15-
boolean describe_tests = true;
15+
bool describe_tests = true;
1616

1717
char serverAddress[] = "192.168.0.3"; // server address
1818
int port = 8080;

0 commit comments

Comments
 (0)