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