-
Wrover module. Connected to sd like this: https://dl.espressif.com/dl/schematics/ESP-WROVER-KIT_SCH-2.pdf , can't mount sd card file system:
rst:0x1 (POWERON_RESET),boot:0x3f (SPI_FAST_FLASH_BOOT)
…
-
Is the luasockets port working?
I've uploaded the latest lua-rtos port to my esp32, but can't seem to get luasockets to do anything.
The following is one of the failed attempts:
local socket …
-
As stated in #24 the http-server will be transferred to the new luasocket.
Is this done already? Because I get panic when printing via lua.
For example:
`
print("Hello")
`
I get a kernel p…
-
tbl = {}
tbl.value = 1234475220
print(tbl.value)
require('cjson').encode(tbl)
/ > tbl = {}
/ > tbl.value = 1234475220
/ > print(tbl.value)
1234475220
/ > require('cjson').encode(tbl)
{"valu…
-
Just wonder when can we have mqtt feature for esp32? very looking forwards to this.
-
```
/ > net.wf.scan()
SSID RSSI AUTH
---------------------------------------------------
assertion "heap != NULL && "free() target pointer is outside hea…
qbzzt updated
6 years ago
-
s = sensor.attach("DHT11", pio.GPIO15)
while true do
print("temp: "..s:read("temperature").." humidite : "..s:read("humidity"))
tmr.delayms(500)
end
fails (after a few iterations) to a …
-
Hi,
The following errors come up when building the latest commit:
```
/Users/username/LuaRTOS/esp-idf/components/bt/lib/libbtdm_app.a(rwip.o):(.iram1.text+0x4): undefined reference to `rwip_env'
…
-
In components/lua/modules/sys/error.h there is a variable called "new", which is a reserved word in c++ and breaks building of cpp files when they include anything that uses errors.
Just renaming to …
xopxe updated
6 years ago
-
mqtt.client(...) should wait a little more (or a timeout anywhere is a bit short)
`client = mqtt.client("clientId-012345", "mylittlebroker.com", 1883, false)
tmr.delay(2) --