1# not 2 3## Description 4 5Negates the return value of the specified action. 6 7## Property Value 8 9[Action](action.md) to execute. 10 11## Return Value 12 13Returns true if the action returned false. Returns false if the action returned 14true. 15 16## Example 17 18```json 19{ 20 "comments": ["Check if register 0xA0 is not equal to 0xFF"], 21 "not": { 22 "i2c_compare_byte": { "register": "0xA0", "value": "0xFF" } 23 } 24} 25``` 26