Skip to content

Commit 0885c61

Browse files
authored
Merge pull request #7649 from per1234/boolean-bool
Replace boolean type with bool in examples
2 parents e518050 + 8b11b58 commit 0885c61

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build/shared/examples/04.Communication/SerialEvent/SerialEvent.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020

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

2424
void setup() {
2525
// initialize serial:

build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ int responseDelay = 5; // response delay of the mouse, in ms
4444
int threshold = range / 4; // resting threshold
4545
int center = range / 2; // resting position value
4646

47-
boolean mouseIsActive = false; // whether or not to control the mouse
47+
bool mouseIsActive = false; // whether or not to control the mouse
4848
int lastSwitchState = LOW; // previous switch state
4949

5050
void setup() {

build/shared/examples/10.StarterKit_BasicKit/p12_KnockLock/p12_KnockLock.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const int quietKnock = 10;
4646
const int loudKnock = 100;
4747

4848
// variable to indicate if locked or not
49-
boolean locked = false;
49+
bool locked = false;
5050
// how many valid knocks you've received
5151
int numberOfKnocks = 0;
5252

@@ -146,7 +146,7 @@ void loop() {
146146
}
147147

148148
// this function checks to see if a detected knock is within max and min range
149-
boolean checkForKnock(int value) {
149+
bool checkForKnock(int value) {
150150
// if the value of the knock is greater than the minimum, and larger
151151
// than the maximum
152152
if (value > quietKnock && value < loudKnock) {

0 commit comments

Comments
 (0)