Update irsend.lua

The for loop was reverse because of that when i transfer 0xfff000ff i have received 0xff000fff. This update works perfect (I have tested this by receiving through Arduino IRreceiver).
This commit is contained in:
ksankark 2015-02-13 11:13:00 +05:30
parent 3b80bc443d
commit a58f50eb30
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ do
pulse(pin, NEC_HDR_MARK)
waitus(NEC_HDR_SPACE)
-- sequence, lsb first
for i = 0, 31 do
for i = 31, 0, -1 do
pulse(pin, NEC_BIT_MARK)
waitus(isset(code, i) and NEC_ONE_SPACE or NEC_ZERO_SPACE)
end