diff options
author | Damien George <damien.p.george@gmail.com> | 2016-02-11 13:19:11 +0000 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-26 10:55:21 +0200 |
commit | 3962766be08f0ccd81bedab1a5d1d8f6468f972e (patch) | |
tree | b119f29d21f591bb94b0c6605738a39d092ca8f5 /esp8266/espneopixel.h | |
parent | b62beadae01f65d7751d26d82e35d56925f4e6d9 (diff) | |
download | micropython-3962766be08f0ccd81bedab1a5d1d8f6468f972e.tar.gz micropython-3962766be08f0ccd81bedab1a5d1d8f6468f972e.zip |
esp8266: Add esp.neopixel_write function to bit-bang WS2812 data.
Diffstat (limited to 'esp8266/espneopixel.h')
-rw-r--r-- | esp8266/espneopixel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/esp8266/espneopixel.h b/esp8266/espneopixel.h new file mode 100644 index 0000000000..4b20afda58 --- /dev/null +++ b/esp8266/espneopixel.h @@ -0,0 +1 @@ +void esp_neopixel_write(uint8_t pin, uint8_t *pixels, uint32_t numBytes, bool is800KHz); |