| 84 | } |
| 85 | |
| 86 | void setFloat(float v, bool notify = true) |
| 87 | { |
| 88 | if (v == _valf) return; |
| 89 | _valf = v; |
| 90 | if (notify && _valueChanged) _valueChanged(); |
| 91 | } |
| 92 | |
| 93 | void setUint32(uint32_t v, bool notify = true) |
| 94 | { |
no outgoing calls
no test coverage detected