| 283 | static int16_t value_int() { return (int16_t)value_long(); } |
| 284 | static uint16_t value_ushort() { return (uint16_t)value_long(); } |
| 285 | static uint8_t value_byte() { return (uint8_t)constrain(value_long(), 0, 255); } |
| 286 | |
| 287 | // Bool is true with no value or non-zero |
| 288 | static bool value_bool() { return !has_value() || !!value_byte(); } |
no outgoing calls
no test coverage detected