No Description

Godzil 1170da409b Merge remote-tracking branch 'upstream/master' 5 years ago
doc 0c111b8059 version bump to 0.4.2 6 years ago
nodemcu_uploader 1d504a7b45 Add a backup function that will backup all the file on the device to a destination path on the host. 6 years ago
tests d661fac497 fixx missing dependency on wrapt 6 years ago
.gitignore f3ff4ad9ee Should now works both on python 2 and 3 7 years ago
.travis.yml 2a17b2b787 build status. removed python 3.5 8 years ago
LICENSE 6b505d4f29 restructure the project 8 years ago
README.md 726a03db58 Update README.md 7 years ago
nodemcu-uploader.py b8c80f7471 Made py files executable (#73) 6 years ago
pylintrc 71d7f0ca88 lint, test and exceptions 8 years ago
setup.cfg 71f1d34c76 make setup more complete for pypi 8 years ago
setup.py b8c80f7471 Made py files executable (#73) 6 years ago
test_requirements.txt 9fc617723b Python 3 compatibility 7 years ago
tox.ini f3ff4ad9ee Should now works both on python 2 and 3 7 years ago

README.md

nodemcu-uploader.py

A simple tool for uploading files to the filesystem of an ESP8266 running NodeMCU as well as some other useful commands.

It should work on Linux, and OS X; and with any type of file that fits the filesystem, binary or text.

master
Build Status

Please note that these tests is not complete and it might be the tests themselves that are having issues.

Installation

Should be installable by PyPI (prefered) but there might be packaging issues still.

pip install nodemcu-uploader
nodemcu-uploader

Otherwise clone from github and run directly from there

git clone https://github.com/kmpm/nodemcu-uploader
cd nodemcu-uploader
python ./nodemcu-uploader.py

Note that pip would install pyserial >= 2.7. The terminal command (using miniterm from pyserial) might not work depending on version used. This is a known issue.

Notes for Windows

There might be some significant issues with Windows.

Notes for OS X

To solve «ImportError: No module named serial», install the pyserial module:

python easy_install pyserial

Usage

Since version v0.4.0 of the tool you will need a recent (june/july 2016) version of the firmware for nodemcu. The default baudrate was changed in firmware from 9600 to 115200 and this tool was changed as well. Download from http://nodemcu-build.com/ .

If you are using an older firmware you MUST use the option --start-baud 9600 to the device to be recognized. Otherwise you will get a Device not found or wrong port error.

For more usage details see USAGE.md in doc

Issues

When reporting issues please provide operating system (windows, mac, linux etc.), version of this tool nodemcu-uploader --version and version of the firmware on you device. If you got the firmware from http://nodemcu-build.com/ please tell if it was the dev or master branch and at what date it was created.

As for firmware version I would like to have a dump of the details you get when connected using a terminal to the device at boot time. It would look something like this…

NodeMCU custom build by frightanic.com
        branch: master
        commit: b580bfe79e6e73020c2bd7cd92a6afe01a8bc867
        SSL: false
        modules: crypto,file,gpio,http,mdns,mqtt,net,node,tmr,uart,wifi
 build  built on: 2016-07-29 11:08
 powered by Lua 5.1.4 on SDK 1.5.1(e67da894)

When you have as much of that as possible, create a issue in github, https://github.com/kmpm/nodemcu-uploader/issues

Technical Details

This almost uses a implementation of xmodem protocol for the up-/download part. The main missing part is checksum and retransmission.

This is made possible by first preparing the device by creating a set of helper functions using the ordinary terminal mode. These function utilize the built in uart module for the actual transfer and cuts up the transfers to a set of manageable blocks that are reassembled in the receiving end.

Upload

  1. Client calls the function recv()
  2. NodeMCU disables echo and send a ‘C’ to tell that it’s ready to receive data
  3. Client sends a filename terminated with 0x00
  4. NodeMCU sends ACK
  5. Client send block of data according to the definition.
  6. NodeMCU sends ACK
  7. Step 5 and 6 are repeated until NodeMCU receives a block with 0 as size.
  8. NodeMCU enables normal terminal again with echo

Download

  1. Client calls the function send().
  2. NodeMCU disables echo and waits for start.
  3. Client send a ‘C’ to tell that it’s ready to receive data
  4. NodeMCU sends a filename terminated with 0x00
  5. Client sends ACK
  6. NodeMCU send block of data according to the definition.
  7. Client sends ACK
  8. Step 5 and 6 are repeated until client receives a block with 0 as size.
  9. NodeMCU enables normal terminal again with echo.
  10. Data Block Definition

    SOH, size, data[128]

    • SOH = 0x01
    • Single byte telling how much of the 128 bytes data that are actually used.
    • Data padded with random bytes to fill out the 128 bytes frame.

    This gives a total 130 bytes per block.

    The block size was decided for…

    1. Being close to xmodem from where the inspiration came
    2. A fixed size allow the use of the uart.on(‘data’) event very easy.
    3. 130 bytes would fit in the receive buffer.
    4. It would not waste that much traffic if the total size uploaded was not a even multiple of the allowed datasize.

    Disclaimer

    THE SOFTWARE IS PROVIDED «AS IS», WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.