Overview
Comment: | Rename class to upper-case |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c9419b56adcbd405ee83f8a1882967a2 |
User & Date: | rkeene on 2020-04-29 00:37:42 |
Other Links: | manifest | tags |
Context
2020-04-29
| ||
00:38 | lt8900_spi v2.0 check-in: 5fd146a915 user: rkeene tags: 2.0, trunk | |
00:37 | Rename class to upper-case check-in: c9419b56ad user: rkeene tags: trunk | |
00:02 | lt8900_spi v1.0 check-in: ba248e2cfc user: rkeene tags: 1.0, trunk | |
Changes
Modified README.md from [e27f58af7d] to [4e3efca6a5].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + | # Python LT8900 via SPI This Python module enables a Python to talk to an LT8900 radio attached to an serial peripheral interface (SPI). ## API ### Synopsis |
︙ | |||
61 62 63 64 65 66 67 | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + | reset_gpio.on() def reset_module_via_gpio(): reset_gpio.off() time.sleep(0.1) reset_gpio.on() time.sleep(0.1) |
Modified lt8900_spi/__init__.py from [c7ac30653e] to [d3ab104dc8].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + | # | P1-17 | P1-18 | P1-21 | P1-19 | P1-23 | P1-24 | P1-25 | # -________________________________________________________- # Raspberry Pi import spidev import time |
︙ |