diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2015-10-04 16:46:58 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2015-10-04 16:46:58 +0200 |
commit | 5fb5e20aa00ead18785c14fe788cdfdbced14f63 (patch) | |
tree | 414b35d76f065a026157488e49d60b090d0f612b | |
parent | dcba99769089f3ebccf839f4be6c605da52e64d7 (diff) | |
download | esp-playground-5fb5e20aa00ead18785c14fe788cdfdbced14f63.tar.gz esp-playground-5fb5e20aa00ead18785c14fe788cdfdbced14f63.tar.bz2 esp-playground-5fb5e20aa00ead18785c14fe788cdfdbced14f63.tar.xz esp-playground-5fb5e20aa00ead18785c14fe788cdfdbced14f63.zip |
o Better firmware info when posting.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | README.md | 50 | ||||
-rw-r--r-- | mqtt-bridge/mq.lua | 14 |
3 files changed, 57 insertions, 8 deletions
@@ -1,5 +1,6 @@ esptool nodemcu-uploader +*.bin cfg-* .cookie @@ -1,10 +1,12 @@ -# Installing `esptool` +# Required Tools + +## Installing `esptool` $ git clone https://github.com/themadinventor/esptool.git $ cd esptool $ python setup.py install -local -# NodeMCU Uploader +## NodeMCU Uploader This tool uploads the Lua files. Requires that the device is runnig the Lua firmware. @@ -13,12 +15,32 @@ This tool uploads the Lua files. Requires that the device is runnig the Lua firm https://github.com/nodemcu/nodemcu-firmware +# Installing Lua Interpreter + +1. Download a release from https://github.com/nodemcu/nodemcu-firmware/releases +1. Check that you have a connection to the board: + + $ esptool.py read_mac + Connecting... + MAC: 18:fe:34:06:59:a5 + +1. Upload firmware + + $ esptool.py write_flash 0x0 nodemcu_integer_0.9.6-dev_20150704.bin + Connecting... + Erasing flash... + Wrote 450560 bytes at 0x00000000 in 43.8 seconds (82.4 kbit/s)... + + Leaving... + +1. Now start talking! + # Talking to the Lua firmware -On unix Screen is a useful tool to talk to serial ports. Usage: +On unix Screen is a useful tool to talk to serial ports. Usage: $ screen <device> <baud rate> - + $ screen /dev/ttyUSB0 9600 After starting screen and pressing reset you should get some output similar to this: @@ -27,7 +49,7 @@ After starting screen and pressing reset you should get some output similar to t NodeMCU 0.9.6 build 20150704 powered by Lua 5.1.4 lua: cannot open init.lua - > + > The first garbage output is expected and is from the bootloader trying to autodetect the baud rate. @@ -41,13 +63,29 @@ Open screen and paste this code: print(ip) -- Configure the device - wifi.setmode(wifi.STATION) + wifi.setmode(wifi.STATION) wifi.sta.config("...", "...") -- Now check that the IP is assigned. It might take some time so try again. ip = wifi.sta.getip() print(ip) +# Building a new Lua firmware + +## Build and install the compiler and SDK + + $ git clone --recursive https://github.com/pfalcon/esp-open-sdk.git + $ cd esp-open-sdk + $ make STANDALONE=n + .. wait a while .. + + Add the compiler to your $PATH (see output) + + $ cd .. + $ git clone https://github.com/nodemcu/nodemcu-firmware + $ cd nodemcu-firmware + $ make + # References * [Lua API](https://github.com/nodemcu/nodemcu-firmware/wiki/nodemcu_api_en) diff --git a/mqtt-bridge/mq.lua b/mqtt-bridge/mq.lua index da77063..a6ae0b9 100644 --- a/mqtt-bridge/mq.lua +++ b/mqtt-bridge/mq.lua @@ -19,8 +19,18 @@ end local function mq_client_connected(con) p("connected") - local majorVer, minorVer, devVer, chipId, flashId, flashSize, flashMode, flashSpeed = node.info() - payload = '{"version": "'..majorVer..'.'..minorVer..'.'..devVer..'", "chipId":'..chipId..', "flashId":'..flashId..', "flashSize":'..flashSize..', "flashMode":'..flashMode..', "flashSpeed":'..flashSpeed.."}" + local majorVer, minorVer, devVer, chipId, flashId, flashSize, flashMode, flashSpeed, buildDate = node.info() + payload = '{"version": "'..majorVer..'.'..minorVer..'.'..devVer..'", "chipId":'..chipId..', "flashId":'..flashId..', "flashSize":'..flashSize..', "flashMode":'..flashMode..', "flashSpeed":'..flashSpeed + + if buildDate then + payload = payload..', "buildDate": "'..buildDate..'"' + end + + if node.info_versions then + major, minor, dev, buildDate, sdkVersion = node.info_versions() + payload = payload..'", versions": {"major": '..major..', "minor": '..minor..', "dev": '..dev..', "buildDate": "'..buildDate..'", "sdk": "'..sdkVersion..'"}' + end + payload = payload.."}" P.publish("firmware", payload) end |