Difference between bool and boolean

bool is the official C++ data type for a truth value
boolean is something arduino defined to be fancy :slight_smile: but it's the same thing

the standard says

Boolean type
bool — type, capable of holding one of the two values: true or false. The value of sizeof(bool) is implementation defined and might differ from 1.