|
|
5 years ago | |
|---|---|---|
| client | 5 years ago | |
| CONTRIBUTING.md | 5 years ago | |
| LICENSE | 5 years ago | |
| Makefile | 5 years ago | |
| README.md | 5 years ago | |
| attiny85.mk | 5 years ago | |
| avr.mk | 5 years ago | |
| neopixel.cc | 5 years ago | |
| neopixel.h | 5 years ago | |
| ser2neo.cc | 5 years ago | |
| ser2neo.dox | 5 years ago | |
| serial.cc | 5 years ago | |
| serial.h | 5 years ago | |
ser2neo makes it easier to drive a NeoPixel ring by implementing the NeoPixel protocol in an ATTINY85 and exposing it through a serial interface.
Note: This is not an official Google product.
This software was developed for a OLIMEXINO-85 ATTINY85 USB board with a Adafruit NeoPixel 16 ring. It should work with any other Digispark clone. The implementation is very speed and timing sensitive. If it doesn’t work check that PCIntDelay is correct for your CPU, clock speed, and bootloader.
Pins:
Connect the pins to a 3.3V serial interface such as the FTDI serial cable.
See client/ for a simple client library and demo applications.
NeoPixels use a single wire, 800 kHz, non-return-to-zero protocol. This implementation uses Timer0 in PWM mode where each PWM cycle is one bit. The PWM duty is updated each cycle.
The serial interface is a half duplex, command/response based protocol that’s designed to be mildly computer friendly. Data is transferred at 57600,N,8,1. Character stuffing is used to escape the special values, which are ‘\r’ for end of frame and ‘+’ for escape.
The commands are:
! - sync. Responds with OK sync.? - query. Responds with OK followed by the system ID, version,
type, LED count, and colour order.l - set LEDs. Followed by the LED data with three bytes per RGB
LED. Responds with OK.-- Michael Hope michaelh@juju.net.nz mlhx@google.com