Upload/Download Lua files to your ESP8266 module with NodeMCU firmware.
Simple. Command Line. Cross-Platform. File Management. NodeMCU.
$ npm install nodemcu-tool -g
NodeMCU Tool allows you to
- Upload Lua files to your ESP8266/NodeMCU module
- Upload any file-types (binary save)
- Bulk/Multi file uploads
- Download any file-type (binary save)
- Delete files
- Format the file system
- Simple Serial Terminal to interact with NodeMCU
- Show existing files on your module
- Precompile Lua files live on NodeMCU
- Minimize Lua files before uploading (provided by luamin)
- Use the NodeMcuConnector API in your own projects
- Apply Project based configurations
- Hard-Reset the module using DTR/RTS reset circuit (like NodeMCU DEV Kit)
- Run files on NodeMCU and display the output
directly from the command line.
Successful tested on Windows10, Debian 8.2 and Ubuntu 14 LTS - works out of the box without any tweaks
The following NodeMCU firmware versions are verified
- NodeMCU LUA 1.4
- NodeMCU LUA 1.5.1
- NodeMCU LUA 1.5.4
- Command Reference
- Common Use-Cases and Examples
- Programmatic Usage
- Fixing Reset-on-Connect Issue
- File Transfer Encoding
- Webstorm Integration
- Contribution Guidelines
- NodeMCU DEVKIT Schematics
- Changelog
- License
- NodeMCU Original NodeMCU Module OR any ESP8266 platform with NodeMCU Firmware
- Upload Transfer files from your PC to NodeMCU/ESP8266 module
- Download Transfer files/obtaining information from the module
To use/install the NodeMCU-Tool, you have to prepare your system to match the following requirements. Especially as beginner, you should read this part carefully
Depending on your Module-Type you have to install the platform-specific driver for the usb-serial-interface. The original NodeMCU v0.9 comes with a CH341 chip with may requires manual driver installation. Modern versions like 1.0 use a CP210x chip with work out of the box on most common systems. Other ESP8266 platforms may user other interfaces - please refer to their user manuals!
The NodeMCU-Tool is written in javascript and requires Node.js as runtime environment. And please don't worry about the wording - NodeMCU and Node.js are two complete different things!
In case you're not familiar with Node.js and NPM it's recommended to read some basic introductions first! Please download the Node.js installer and install on your system in case it's not already there.
Thanks to Node.js, the NodeMCU-Tool is platform independent and will run on Windows, Linux und OSX. There are different installation variants available (system wide or project based).
It's recommended to install nodemcu-tool as global package. NPM will register the binary automatically in your path - it will be directly available on the command line.
$ npm install nodemcu-tool -g
The global installation may require administrator(root) privileges because the package is added to the systems library path. If you get any permission errors on Linux/Mac OS run the command as root or via sudo
$ sudo npm install nodemcu-tool -g
You can also install it in your local project directory. When using this method, the nodemcu-tool
command is not registered within your path!
$ npm install nodemcu-tool
In this case, the binary file is located in node_modules/nodemcu-tool/bin/nodemcu-tool.js
You can also download the latest release directly from GitHub and extract the sources to your project directory.
When using this method, the nodemcu-tool
command is not registered within your path. You have to register it manually using a symlink - or the recommended way: call the binary file ./bin/nodemcu-tool.js
directly.
After installing NodeMCU-Tool you should open a new terminal window and check if the tool is working by obtaining the current version. It should output the current semantic-version tag. Depending on your installation type (global ==> file is registered into your path) you can use the tool directly or you have to go into the module directory:
The binary file is registered within your path. This tutorial assumes that you have installed the tool globally. Otherwise you have to modify the program-call as described below.
$ nodemcu-tool --version
1.5.0
This means you have installed nodemcu-tool via NPM without the -g
(global) flag or via the .zip
/ .tar
package.
There will be no global shortcut to the nodemcu-tool binary! The binary is located in node_modules/nodemcu-tool/bin/nodemcu-tool.js
$ cd node_modules/nodemcu-tool/bin
$ ./nodemcu-tool.js --version
1.5.0
You have to call the node.exe runtime in your command!
$ cd node_modules/nodemcu-tool/bin
$ node nodemcu-tool.js --version
1.5.0
Now you can connect the NodeMCU Module to your computer. The module will be accessible via a virtual serial port. You can identify the port by using the devices
command.
In this example, it is connected via /dev/ttyUSB0
. Keep in mind that you have to provide the device-name to NodeMCU-Tool on each command!
./nodemcu-tool devices
[NodeMCU] Connected Devices | Total: 1
|- /dev/ttyUSB0 (Silicon_Labs, usb-Silicon_Labs_CP2102_USB_to_UART_Bridge_Controller_0001-if00-port0)
This will remove all existing files on the module but is required when running the module for the first time. You can skip this step in case you've already done that manually!
$ nodemcu-tool mkfs --port=/dev/ttyUSB0
[NodeMCU-Tool] Do you really want to format the filesystem and delete all file ? (no) yes
[NodeMCU-Tool] Connected
[NodeMCU] Version: 0.9.5 | ChipID: 0xd1aa | FlashID: 0x1640e0
[NodeMCU] Formatting the file system...this will take around ~30s
[NodeMCU] File System created | format done.
Hint include the native encoder Module into your firmware to speed-up the uploading by factor 4..10!
$ nodemcu-tool upload --port=/dev/ttyUSB0 helloworld.lua
[NodeMCU-Tool] Connected
[NodeMCU] Version: 0.9.5 | ChipID: 0xd1aa | FlashID: 0x1640e0
[NodeMCU-Tool] Uploading "main.lua" ...
[NodeMCU-Tool] Data Transfer complete!
$ nodemcu-tool run helloworld.lua
[NodeMCU-Tool] Connected
[NodeMCU] Version: 0.9.5 | ChipID: 0xd1aa | FlashID: 0x1640e0
[NodeMCU] Running "helloworld.lua"
>----------------------------->
Hello World!
YEAH!!! HELLO WORLD!!!
String: Lorem ipsum dolor sit amet, consetetur sadipscing elitr
>----------------------------->
All commands a well documented within the Command Reference
In case you're using different serial port or the baudrate-settings, it's possible to create a configuration file with specific settings for your project.
To initially create the configuration file, use the init
command:
$ nodemcu-tool init
[NodeMCU-Tool] Creating project based configuration file..
[NodeMCU-Tool] Baudrate in Bit per Seconds, e.g. 9600 (default) (9600) 9600
[NodeMCU-Tool] Serial connection to use, e.g. COM1 or /dev/ttyUSB2 (/dev/ttyUSB0) COM3
This will create a JSON based configuration file named .nodemcutool
in your current directory - you can edit this file manually
In this Example, the baudrate is changed to 19.2k and COM3 is selected as default port. Additionally the --minify
and --compile
flags are set permanently.
{
"baudrate": "19200",
"port": "COM3",
"compile": true,
"minify": true,
"keeppath": true
}
All configuration options are optional
- baudrate (int) - the default baudrate in bits per second
- port (string) - the comport to use
- compile (boolean) - compile lua files after upload
- minify (boolean) - minifies files before uploading
- optimize (boolean) - optimize files before uploading (Deprecated! Use minify instead.)
- keeppath (boolean) - keep the relative file path in the destination filename (i.e: static/test.html will be named static/test.html)
- NodeMCU-Tool will only search in the current directory for the
.nodemcutool
file! - All default options can be overwritten by using the command line options
- The
.nodemcutool
file is only recognized inCLI Mode
NOT inAPI Mode
Many beginners may ask how the tool is working because there is no binary interface documented like FTP to access files.
The answer is quite simple: NodeMCU-Tool implements a serial terminal connection to the Module and runs some command line based lua commands like file.open(), file.write() to access the filesystem. That's it!
Since Version 1.2 it's also possible to transfer binary files to your device. NodeMCU-Tool uses a hexadecimal encode/decoding to transfer the files binary save! The required encoding (file downloads) / decoding (file uploads) functions are automatically uploaded on each operation.
The Tool is separated into the following components (ordered by its invocation)
bin/nodemcu-tool.js
- the command line user interface handler based on commanderlib/NodeMCU-Tool.js
- Highlevel Access to the main functions. Error and Status messages are handled therelib/NodeMcuConnector.js
- the Core which handles the Lua command based communication to the NodeMCU Modulelib/ScriptableSerialTerminal.js
- the lowlevel part - a terminal session to the NodeMCU Module to run the Lua commands
CLI User Frontend
+----------------------+
| |
| nodemcu-tool |
| |
++---------------------+
|| Message and Error Handling
++---------------------+
| |
| lib/NodeMCU-Tool.js |
| |
++---------------------+
|| Core Functions
++---------------------+
| |
| lib/NodeMcuConnector |
| |
++---------------------+
|| Low|Level Command Transport
++---------------------+
| |
|lib/ScriptableSerial- |
|Terminal |
++---------------------+
|| Serial Communication
++---------------------+
| node|serialport |
+----------------------+
It's possible to use the underlying "NodeMcuConnector" in your own projects to communicate with a NodeMCU based device.
Or you can call the bin
file with an external tool. For more details, take a look into the Programmatic Usage Guide
Of course, check the Examples file (tool usage) as well as the examples/
directory for third party examples
By default, the serial connection uses a 9600 baud with 8N1 - this means maximal 960 bytes/s raw data rate.
Due to the limitations of a line-wise file upload, these maximal transfer rate cannot be reached, because every line has to be processed by the lua interpreter and NodeMCU-Tool is waiting for it's response.
It's recommended to use the --minify
flag to minify the code before uploading. Additionally, newer firmware versions 1.x.x
using an auto-baudrate detection algorithm - this means you can increase the baudrate to e.g. 115200 --baud 115200
to speed up the transfer
Additionally include the native encoder Module into your firmware to speed-up the uploading by factor 4..10!
Please open a new issue on GitHub
Contributors are welcome! Even if you are not familiar with javascript you can help to improve the documentation!
NodeMCU-Tool is OpenSource and licensed under the Terms of The MIT License (X11). You're welcome to contribute!