//Copyright 2015 <>< Charles Lohr, See LICENSE file.
//WS2812 sender that abuses the I2S interface on the WS2812.

#ifndef _WS2812I2S_TEST
#define _WS2812I2S_TEST

//Stuff that should be for the header:

#include <c_types.h>



#define FBW 128
#define FBH 120

extern int gframe;
extern uint8_t framebuffer[((FBW/8)*(FBH))*2]; //prevent overscan a bit.


void ICACHE_FLASH_ATTR testi2s_init();

#endif

