Overview
| Comment: | Rename to upper-case class name |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d467fada9d1271e7c9907b51a78e26c3 |
| User & Date: | rkeene on 2020-04-29 00:40:23.050 |
| Other Links: | manifest | tags |
Context
|
2020-04-29
| ||
| 00:40 | lmitlessled_rf v0.2 check-in: be353338e5 user: rkeene tags: 0.2, trunk | |
| 00:40 | Rename to upper-case class name check-in: d467fada9d user: rkeene tags: trunk | |
| 00:34 | limitlessled_rf v0.1 check-in: 1e49925e09 user: rkeene tags: 0.1, trunk | |
Changes
Modified README.md
from [c4976858c8]
to [779c0688d1].
1 2 3 4 5 6 7 8 | 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 | - - - - - - - - - - - - + + + + + + + + + + + + | # Python LimitlessLED via RF Control LimitlessLED bulbs through a directly attached radio. The radio object must have an interface with a "`transmit`" method that formats messages as an LT8900 would over the air. ## API ### Synopsis |
| ︙ | |||
110 111 112 113 114 115 116 | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | - + - + |
def reset_module_via_gpio():
reset_gpio.off()
time.sleep(0.1)
reset_gpio.on()
time.sleep(0.1)
# LT8900 compatible radio
|
Modified limitlessled_rf/__init__.py
from [796fb9f34b]
to [e5093660f8].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + | #! /usr/bin/env python3 import random import time |
| ︙ |