diff options
Diffstat (limited to 'decoders/spi/__init__.py')
-rw-r--r-- | decoders/spi/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/decoders/spi/__init__.py b/decoders/spi/__init__.py index 8734acf..fedcc5f 100644 --- a/decoders/spi/__init__.py +++ b/decoders/spi/__init__.py @@ -36,11 +36,12 @@ Commands: - 'CS CHANGE': <data1> is the old CS# pin value, <data2> is the new value. Both data items are Python numbers (0/1), not strings. -Example: +Examples: ['CS-CHANGE', 1, 0] ['DATA', 0xff, 0x3a] ['DATA', 0x65, 0x00] ['CS-CHANGE', 0, 1] + ''' from .spi import * |