Lua-RTOS-ESP32
Lua-RTOS-ESP32 copied to clipboard
Lua RTOS for ESP32
.. lora.attach(lora.BAND868) lora.setAppEui("*******.. ") lora.setAppKey("**********..") lora.setDr(7) lora.setAdr(true) lora.setReTx(4) lora.join(lora.OTAA) lora.tx(false, 4, pack.pack(msg)) .. will crash the system (at least on my esp32) soon after waking up from cpu.sleep(10). if i...
Is there any way to set the hostname of the board? Currently, it defaults to `espressif`
this is done on a per-interface basis, which means its even supported to have different hostnames for each interface
{255, 0, 0} produces blue, {0, 0, 255} produces red
My Screen have Blue and Red pixel inverted. This PR add a new driver CHIPSET_ILI9341_BGR This patch also improve touch handling and fix orientation
Is there a reason why this snippet ``` if (len > 1) { i2c_master_read(cmd, (uint8_t *) data, len, I2C_MASTER_LAST_NACK); } else { i2c_master_read_byte(cmd, (uint8_t *) data, I2C_MASTER_ACK); } ``` in...
Hi, When making improvement to the source code, you always need to update the documentation accordingly. Today, the doc is in a wiki which is part of a separate repository....
Since Lua-RTOS has tasks it would make sense to look at CSP like channels. Starting postion might be [LuaCSP](https://github.com/loyso/LuaCSP) perhaps. Or perhaps go like [lua-channels](https://github.com/majek/lua-channels/blob/master/lua-channels.lua).
fix for issue #376
It would be great if we could use websockets. That would allow to have complex client side UI, portably, and some light API on the microcontroller side. Do you have...