https://github.com/raphaelm/pybob
Python3 interface for boblightd (LED controller)
https://github.com/raphaelm/pybob
Last synced: 3 months ago
JSON representation
Python3 interface for boblightd (LED controller)
- Host: GitHub
- URL: https://github.com/raphaelm/pybob
- Owner: raphaelm
- Created: 2013-02-17T00:26:53.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-02-27T17:18:07.000Z (over 10 years ago)
- Last Synced: 2025-03-15T19:22:01.581Z (3 months ago)
- Language: Python
- Size: 109 KB
- Stars: 2
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
pybob
=====Python 3 interface for boblightd (LED controller)
Documentation
-------------
It's as simple as typing
```python
import time
import pybob
b = pybob.Boblights('127.0.0.1')
b.open()
b.set_light(b.get_lights()[0], "FF0000")
time.sleep(10)
b.close();
```but you if you are interested, check out the module with executing `pydoc pybob`.