Discuss here different C compiler set ups, and compiling executables for the ESP8266

User avatar
By EmilTk
#58380 Добрый день! Я извиняюсь за глупый вопрос. Я только недавно начал изучать Lua. Я хочу сделать, одновременную работу светодиодов, с началом и концом ленты. Скажите, пожалуйста, как это сделать?
Code: Select allws2812.init()
local i, buffer = 0, ws2812.newBuffer(60, 3); buffer:fill(0, 0, 0); tmr.alarm(0, 50, 1, function()
        i=i+1 -- begins to be included from the first LED, if the change to i = i - 1, starting with the last light of the LED
        buffer:set(i%buffer:size()+1, 0, 0, 255)
        ws2812.write(buffer)
end)


Please tell me how to make at the same time on both sides?