Skip to content
This repository was archived by the owner on Apr 14, 2021. It is now read-only.

Replace boolean type with bool in examples #17

Merged
merged 1 commit into from
May 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/Tools/ReadMacAddress/ReadMacAddress.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WifiData EspSerial;
String mac = ""; // a string to hold incoming data
String ssid="";
String espresponse="";
boolean flag=false;
bool flag=false;

//These commands, in SLIP protocol, get the MAC Address from the ESP8266.
char command1[]={0xc0,0x0,0xa,0x4,0x0,0x0,0x0,0x0,0x0,0x50,0x0,0xf0,0x3f,0xc0};
Expand Down
2 changes: 1 addition & 1 deletion examples/Tools/Wifi2Serial/Wifi2Serial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <UnoWiFiDevEd.h>

String inputString = ""; // a string to hold incoming data
boolean stringComplete = false; // whether the string is complete
bool stringComplete = false; // whether the string is complete


void setup() {
Expand Down