Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
project:nodemcu_windev:en [2017/03/11 19:25]
licho
project:nodemcu_windev:en [2017/03/11 20:19]
licho
Line 3: Line 3:
 |**Related:​**| | |**Related:​**| |
 |**Reference:​**| https://​Espressif.com | |**Reference:​**| https://​Espressif.com |
-| **License:​** | [[https://​creativecommons.org/​licenses/​by-sa/​3.0/|Uveďte původ-Zachovejte licenci; CC BY-SA]] ​ | +| **License:​** | [[http://​creativecommons.org/​licenses/​by-sa/​4.0/|Creative Commons Attribution-ShareAlike; CC BY-SA]] ​ | 
-===== NodeMCU ​- Developer'​s IDE for nodeMCU on Windows 10 ===== +===== NodeMCU ​Linux Build Environment ​=====
-Goal of this guide is to build Integrated Developement Environment (IDE) for work and development of nodeMCU solutions on operating system Windows 10.+
  
-=== Content === +Guide  
-  * [[nodemcu_windev:​en#​Upload NodeMCU ​firmware|Upload NodeMCU firmware]] +Návod jak postupovat při instalaci a nastavení prostředí na Ubuntu Serveru, a následné kompilace ​firmware ​pomocí nástroje ''​make''​.
-  * [[nodemcu_windev:​en#​ESP8266 Flasher Tool|SP8266 Flasher Tool]] +
-  * [[nodemcu_windev:​en#​Upload LUA skripts to ESP8266|Upload LUA skripts to ESP8266]] +
-  * [[nodemcu_windev:​en#​ESPlorer Tool|ESPlorer Tool]] +
-  * [[nodemcu_windev:​en#​Install MongoDB Serveru|Install MongoDB Serveru]] +
-  * [[nodemcu_windev:​en#​Install Node.js|Install Node.js]] +
-  * [[nodemcu_windev:​en#​Instalal Python|Install Python]] +
-  * [[nodemcu_windev:​en#​Install Node-Red|Install Node-Red]] +
-  * [[nodemcu_windev:​en#​Install Mosquitto MQTT Broker|Install Mosquitto MQTT Broker]] +
-  * [[nodemcu_windev:​en#​Testing MQTT protocol with MQTTLens|Testing MQTT protocol with MQTTLens]] +
-  +
-==== Upload NodeMCU firmware ====+
  
-In guide [[nodemcu_lbe:​en|Linux Firmware Build Environment]] we went through steps how to compile nodeMCU firmware. Now we need upload firmware into ESP8266. For this purpose are available virious scripts and programs on the internet. Here we describe tool for Windows written in Delphi[[https://github.com/nodemcu/nodemcu-flasher|NodeMCU-Flasher]].+Originální návod je dostupný na [[http://www.esp8266.com/wiki/doku.php?​id=toolchain#​how_to_setup_a_vm_to_host_your_toolchain|ESP8266 Wiki]]
  
-Before we start uploading ​firmware ​enable ''​FLASH''​ modeFlash mode can enable by pushing ''​FLASH''​ button on nodeMCU or before reboot set ''​GPIO0''​ pin to value ''​LOW''​. [[nodemcu:​en#​Important warnings|Important warnings]]+Prostředí pro kompilaci ​firmware ​pro NodeMCU je postaveno na serveru Ubuntu.
  
-==== ESP8266 Flasher Tool ====+Pro instalaci nám stačí mini verze. 
 +[[http://​archive.ubuntu.com/​ubuntu/​dists/​precise-updates/​main/​installer-amd64/​current/​images/​netboot/​mini.iso|64-bit Ubuntu (mini.iso)]] ​
  
-Project'​s page on GitHub: [[https://​github.com/​nodemcu/​nodemcu-flasher|NodeMCU Flasher]]+V instalátoru Ubuntu vybereme pouze **"​Basic Ubuntu Server"​** a **"​openSSH Server"​**
  
-Download from GitHub [[https://​github.com/​nodemcu/​nodemcu-flasher|NodeMCU Flasher]]. +Po restaru je potřeba doinstalovat následující aplikace
- +
-Opinion: Personally I'm using on Windows 10 for work with GIT software [[https://​github.com/​git/​git-scm.com|GIT scm]]. +
- +
-It is good to remeber where you downloaded ESP8266Flasher binaries from GitHub.+
 <​code>​ <​code>​
-%PATHNODEMCUFLASHER%\Win64\Release\ESP8266Flasher.exe +sudo apt-get install build-essential zip gdb vim make unrar autoconf automake bison texinfo libtool mc gcc g++ gperf libc-dbg ncurses-dev expat lua5.1 lua5.1-doc luarocks gperf bison flex texinfo git help2man gawk python python-pip unzip screen python2.7 python-serial
-</​code>​+
  
-Verify in Device Manager serial port number ​for communication with nodeMCUO. +for m in lua-bitlib luafilesystem md5 luaposix luasocket; do sudo luarocks install $m; done
-<​code>​ +
-%SYSTEMROOT%\System32\devmgmt.msc +
-</​code>​+
  
-{{wiki_nodemcu_comport_win.png}} +sudo pip install mkdocs
- +
-=== Procedure for uploading firmware === +
-  * Connect to serial port +
-{{ wiki_nodemcu_esp8266flasher_com.png?​300 }} +
-  * Change setting for communication with ESP8266 Flasher +
-{{ wiki_nodemcu_esp8266flasher_config.png?​300 }} +
-  * Upload monolitic firmware //​flash.bin//​ with ESP8266Flasher.exe to adress //​0x00000//​ +
-{{ wiki_nodemcu_esp8266flasher_mono.png?​300 }} +
-  * Upload compiled bootloader //​bin/​0x00000.bin//​ to adress //0x00000// and firmware //​bin/​0x10000.bin//​ to adress //​0x10000//​ +
-{{ wiki_nodemcu_esp8266flasher_dual.png?​300 }} +
-  * Confirm previous steps to upload firmware to ESP8266 +
-{{ wiki_nodemcu_esp8266flasher_flashing.png?​300 }} +
-  * Wait for success +
-{{ wiki_nodemcu_esp8266flasher_success.png?​300 }} +
- +
-==== Upload LUA skripts to ESP8266 ==== +
-Tools for uploading LUA scripts areavaile in big variety and tools are documented for example [[https://​nodemcu.readthedocs.io/​en/​master/​en/​upload/​|here]]. +
- +
-==== ESPlorer Tool==== +
-ESPlorer is IDE for ESP8266, primary supporting LUA, MicroPython and sevel AT commands for ESP8266 . ESPlorer requirers installed package JAVA Standard Edition verion 7 and higher. +
- +
- +
-Project'​s page on GitHub: [[https://​github.com/​4refr0nt/​ESPlorer|ESPlorer]] +
- +
- +
-Download ESPlorer [[http://​esp8266.ru/​esplorer/#​download|here]]. +
- +
-Supported platforms platformy:​ +
- +
-  * Windows(x86,​ x86-64) +
-  * Linux(x86, x86-64, ARM soft & hard float) +
-  * Solaris(x86,​ x86-64) +
-  * Mac OS X(x86, x86-64, PPC, PPC64) +
-   +
-{{ wiki_nodemcu_esplorer.png }} +
- +
-Output from ESPlorer console +
-<​code>​ +
-> =node.heap() +
-45264 +
-+
 </​code>​ </​code>​
  
- +Stáhnout z githubu **ESP Open SDK** spustit **make**
-==== Install MongoDB Server ==== +
-For Datastorage engin with communication with Node.js was choosen MondoDB. MongoDB is free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemas. MongoDB is developed by MongoDB Inc. and is free and open-source,​ published under a combination of the GNU Affero General Public License and the Apache License. +
- +
-Original install guide is [[https://​docs.mongodb.com/​manual/​tutorial/​install-mongodb-on-windows/​|here]].  +
- +
-  ​First download isntallation package [[https://​fastdl.mongodb.org/​win32/​mongodb-win32-x86_64-2008plus-ssl-3.2.10-signed.msi|mongodb-win32-x86_64-2008plus-ssl-3.2.10-signed.msi]] +
-  ​Install mongodb-win32-x86_64-2008plus-ssl-3.2.10-signed.msi package +
-  ​Add install MongoDB path to system variable PATH+
 <​code>​ <​code>​
-PS C:\> $env:path += ";"​ + "​C:​\Program Files\mongodb\Server\3.2\bin"​ +git clone --recursive https://github.com/pfalcon/esp-open-sdk
-PS C:\> [Environment]::​SetEnvironmentVariable("​PATH",​ $env:path, "​Machine"​) +
-</​code>​ +
-  * Create folders for databases +
-<​code>​ +
-PS C:\> New-Item -ItemType "​directory"​ -Path c:\data -Force +
-PS C:\> New-Item -ItemType "​directory"​ -Path c:\data\db -Force +
-</code> +
-  * Create folders for logs +
-<​code>​ +
-PS C:\> New-Item -ItemType "​directory"​ -Path "​c:​\data\log"​ -Force +
-</code> +
-  * Create log file +
-<​code>​ +
-PS C:\> New-Item -ItemType "​file"​ -Path "​c:​\data\log\mongo.log" -Force +
-</code> +
-  * Create MongoDB configuration file +
-<​code>​ +
-PS C:\> New-Item -ItemType "​file"​ -Path "​C:​\Program Files\MongoDB\Server\3.2\bin\mongod.cfg"​ -Force +
-PS C:\> $MONGODBCONF = "​systemLog:​`n ​   destination:​ file`n ​   path: c:​\data\log\mongo.log`nstorage:​`n ​   dbPath: c:​\data\db"​ +
-PS C:\> $MONGODBCONF | Out-File -FilePath "​C:​\Program Files\MongoDB\Server\3.2\bin\mongod.cfg"​ -Append +
-PS C:\> more "​C:​\Program Files\MongoDB\Server\3.2\bin\mongod.cfg"​ +
-systemLog:​ +
-    destination:​ file +
-    path: C:​\Data\log\mongod.log +
-storage: +
-    dbPath: C:​\Data\db +
-</code> +
-  * Create MongoDB service +
-<​code>​ +
-PS C:\> Invoke-Expression "& `"​C:​\Program Files\MongoDB\Server\3.2\bin\mongod.exe`" ​--config `"​C:​\Program Files\MongoDB\Server\3.2\bin\mongod.cfg`"​ --install"​ +
-</​code>​+
  
-For semi-automated I wrote in PowerShellu 5 [[https://​github.com/​lichnak/​nodemcu-labka/​blob/​master/​doc/​wiki/​cs/​InstallMongoDB.ps1|MongDB Installation PowerShell Script]] +cd esp-open-sdk
-  +
-==== Install Node.js ====  +
-[[http://​nodejs.org/​|Node.js]] is an open-source, cross-platform JavaScript runtime environment for developing a diverse variety of server tools and applications. Although Node.js is not a JavaScript framework,​[4] many of its basic modules are written in JavaScript, and developers can write new modules in JavaScript. The runtime environment interprets JavaScript using Google'​s V8 JavaScript engine..+
  
-Project documenation of [[https://​nodejs.org/​download/​release/​latest/​docs/​api/​|Node.js API]] +make STANDALONE=y ​|& tee make0.log
- +
-Warning: If you use node.js version v7.1.0, it is recommended to reinstall node.js to version v7.0.0. Node.js v7.1.0 has know error on Windows platform, error causes node.js to crash when you use for node.js consoles Powershell or CMD. +
- +
-  * Download 64-bit verion of Node.js (32-bit is for hipsters) [[https://​nodejs.org/​download/​release/​v7.0.0/​node-v7.0.0-x64.msi|node-v7.0.0-x64.msi]] +
-  * Install ''​node-v7.0.0-x64.msi''​ package, deafault install path is ''​C:​\Program Files\nodejs''​ +
-  * If you didn't select option ''​Add PATH'',​ then add node.js install path to systéem variale ''​PATH''​  +
-  * Now that the ''​PATH''​ variable is set correctly, you will still encounter errors. Manually go into the AppData directory and you will find that there is no npm directory inside Roaming. Manually create this directory. +
-<​code>​ +
-PS C:\> $NPMPATH = $Env:​USERPROFILE + "​\AppData\Roaming\npm"​ +
-PS C:\> New-Item -ItemType "​directory"​ -Path $NPMPATH +
-PS C:\> $Env:PATH += ";"​ + $NPMPATH + ";​C:​\Program Files\nodejs"​ +
-PS C:\> [Environment]::​SetEnvironmentVariable("​PATH",​ $Env:PATH, "​Machine"​)+
 </​code>​ </​code>​
  
 +Pokud se při spuštění **make STANDALONE=y |& tee make0.log** vyskytne chyba (chybějící aplikace a pod.), tak je třeba ji doinstalovat a spustit **make STANDALONE=y |& tee make0.log** znovu
  
-==== Install Python ====  +Editovat soubor ​''~/.bashrc'' ​a přidat na jeho konec
- +
-Next steps are to install Python in version ​ 2.7, because node.js package node-gyf is dependent on Python2.7 and haven't started to support Pyhthon v3.x.x yet. +
- +
-  * Download 64-bit verion of [[https://www.python.org/​downloads/​windows/​download|Python v2.7]] +
-  * Install ''​python-2.7.12.amd64.msi''​ package +
-  * Select default installation options and add Python install path to system variables ''​PATH''​ and ''​PYTHON''​+
 <​code>​ <​code>​
-PS C:\> $Env:PATH += ";C:\Program Files\Python27"​ +export ​PATH="$HOME/​esp-open-sdk/​xtensa-lx106-elf/​bin/​:​$PATH"​ 
-PS C:\> [Environment]::​SetEnvironmentVariable("​PATH", ​$Env:PATH"Machine"​) +alias xgcc="xtensa-lx106-elf-gcc"
-PS C:\> [Environment]::​SetEnvironmentVariable("​PYTHON",​ "​C:​\Program Files\Python27", ​"Machine")+
 </​code>​ </​code>​
-  * Setup Node.js for installed Python version 
-<​code>​ 
-  PS C:\> cd "​C:​\Program Files\nodejs\"​ 
-PS C:\Program Files\nodejs>​ cmd 
-Microsoft Windows [Version 10.0.14393] 
-(c) 2016 Microsoft Corporation. Všechna práva vyhrazena. 
  
-C:\Program Files\nodejs>​npm config set python "​C:​\Program Files\Python27\python.exe" +Na stránce s [[https://github.com/​nodemcu/​nodemcu-firmware/releases|firmware]] zjistit odkaz na poslední verzi
-C:\Program Files\nodejs>​exit +
-PS C:\Program Files\nodejs>​  +
-</code>+
  
- +Stáhnout zdrojové soubory a rozbalit je
-==== Install Node-Red ==== +
- +
-To aviod dependency conflicts first step is to install Microsoft compilator ''​windows-build-tools''​ for Node.js packages. +
-And sedcond step is now ito nstall rest of Node-Red dependency packages.  ​+
 <​code>​ <​code>​
-PS C:​\> ​cd "​C:​\Program Files\nodejs\"​ +cd ~ 
-PS C:\Program Files\nodejs>​ cmd +wget https://github.com/​nodemcu/​nodemcu-firmware/​archive/​1.5.4.1-master_20161001.zip 
-Microsoft Windows [Version 10.0.14393] +unzip 1.5.4.1-master_20161001.zip ​-d nodemcu-firmware
-(c) 2016 Microsoft CorporationVšechna práva vyhrazena. +
- +
-C:\Program Files\nodejs>​npm install ​-g --production windows-build-tools +
-C:\Program Files\nodejs>​npm install ​-g node-gyp +
-C:\Program Files\nodejs>​npm install ​-g bindings +
-C:\Program Files\nodejs>​npm install -g bcrypt +
-C:\Program Files\nodejs>​npm install -g bson +
-C:\Program Files\nodejs>​npm install -g bufferutil +
-C:\Program Files\nodejs>​npm install -g kerberos +
-C:\Program Files\nodejs>​npm install -g mqtt +
-C:\Program Files\nodejs>​npm install -g mongodb +
-C:\Program Files\nodejs>​npm install -g nan +
-C:\Program Files\nodejs>​npm install -g node-sass +
-C:\Program Files\nodejs>​npm install -g options +
-C:\Program Files\nodejs>​npm install -g phantomjs +
-C:\Program Files\nodejs>​npm install -g pm2 +
-C:\Program Files\nodejs>​npm install -g pm2-windows-startup +
-C:\Program Files\nodejs>​npm install -g sqlite3 +
-C:\Program Files\nodejs>​npm install -g ultron +
-C:\Program Files\nodejs>​npm install -g utf-8-validate +
-C:\Program Files\nodejs>​npm install -g ws +
-C:\Program Files\nodejs>​exit +
-PS C:\Program Files\nodejs> ​+
 </​code>​ </​code>​
  
- +Otevřít adresář
-Configuration of package pm2-windows-startup+
 <​code>​ <​code>​
-PS C:​\> ​cd "​C:​\Program Files\nodejs\"​ +cd ~/​nodemcu-firmware/​nodemcu-firmware-1.5.4.1-master_20161001
-PS C:\Program Files\nodejs>​ cmd +
-Microsoft Windows [Version 10.0.14393] +
-(c) 2016 Microsoft CorporationVšechna práva vyhrazena. +
- +
-C:\Program Files\nodejs>​pm2-startup install +
-C:\Program Files\nodejs>​pm2 save +
-C:\Program Files\nodejs>​exit +
-PS C:\Program Files\nodejs>​+
 </​code>​ </​code>​
  
- +V souboru ''​user_modules.h''​ je možné zapínat a vypínat moduly, které budou zahrnuty do firmware
-Install Node-Red+
 <​code>​ <​code>​
-PS C:\> cd "​C:​\Program Files\nodejs\"​ +mcedit app/​include/​user_modules.h
-PS C:\Program Files\nodejs>​ cmd +
-Microsoft Windows [Version 10.0.14393] +
-(c) 2016 Microsoft Corporation. Všechna práva vyhrazena. +
- +
-C:\Program Files\nodejs>​npm install -g node-red +
-C:\Program Files\nodejs>​npm install -g node-red-dashboard +
-C:\Program Files\nodejs>​exit +
-PS C:\Program Files\nodejs>​+
 </​code>​ </​code>​
  
-Start Node-Red+Spuštění kompilace firmware se provede příkazem
 <​code>​ <​code>​
-PS C:\> cd "​C:​\Program Files\nodejs\"​ +make
-PS C:\Program Files\nodejs>​ cmd +
-Microsoft Windows [Version 10.0.14393] +
-(c) 2016 Microsoft Corporation. Všechna práva vyhrazena. +
- +
-C:\Program Files\nodejs>​node "​%USERPROFILE%\AppData\Roaming\npm\node_modules\node-red\red.js"​ +
-C:\Program Files\nodejs>​exit +
-PS C:\Program Files\nodejs>​+
 </​code>​ </​code>​
  
-Configure Node-Red for automatic start+Výsledný bootloader a firmware je uložen ve složce bin, např.
 <​code>​ <​code>​
-PS C:\> cd "​C:​\Program Files\nodejs\"​ +-rw-rw-r-- ​ 1 node node  27872 Oct 26 11:21 0x00000.bin 
-PS C:\Program Files\nodejs>​ cmd +-rw-rw-r-- ​ 1 node node 357683 Oct 26 11:21 0x10000.bin
-Microsoft Windows [Version 10.0.14393] +
-(c) 2016 Microsoft Corporation. Všechna práva vyhrazena. +
- +
-C:\Program Files\nodejs>​pm2 start "​%USERPROFILE%\AppData\Roaming\npm\node_modules\node-red\red.js" +
-C:\Program Files\nodejs>​pm2 save +
-C:\Program Files\nodejs>​exit +
-PS C:\Program Files\nodejs>​+
 </​code>​ </​code>​
- 
-Nyní můžeme spustit Node-RED editor na [[http://​localhost:​1880|http://​localhost:​1880]] 
- 
-{{wiki_nodemcu_windev_nodered.png}} 
- 
-==== Install Mosquitto MQTT Broker ==== 
-For role MQTT Brokera in IDE  was chosen software Mosquitto. 
- 
-  * First download installation files for [[https://​slproweb.com/​download/​Win32OpenSSL_Light-1_0_2j.exe|OpenSSL]],​ [[http://​mirror.ibcp.fr/​pub/​eclipse//​mosquitto/​binary/​win32/​mosquitto-1.4.10-install-win32.exe|Mosquitto]] and library [[ftp://​sources.redhat.com/​pub/​pthreads-win32/​dll-latest/​dll/​x86/​pthreadVC2.dll|pThreads]] 
-  * Install OpenSSL package ''​Win32OpenSSL_Light-1_0_2j.exe''​ 
-  * Install Mosquitto package ''​mosquitto-1.4.10-install-win32.exe''​ 
-  * Copy library ''​pthreadVC2.dll''​ to Mosquitto install folder. 
-<​code>​ 
-PS C:\> dir "​C:​\Program Files (x86)\mosquitto\pthreadVC2.dll"​ 
- 
- 
-    Directory: C:\Program Files (x86)\mosquitto 
- 
- 
-Mode                LastWriteTime ​        ​Length Name 
-----                ------------- ​        ​------ ---- 
--a---- ​       27.5.2012 ​     1:00          55808 pthreadVC2.dll 
-</​code>​ 
-  * Copy OpenSSL libraries ''​libeay32.dll''​ and ''​ssleay32.dll''​ to Mosquitto install folder 
-<​code>​ 
-PS C:\> dir "​C:​\Program Files (x86)\OpenSSL-Win32-102j\*eay32.dll"​ 
- 
- 
-    Directory: C:\Program Files (x86)\OpenSSL-Win32-102j 
- 
- 
-Mode                LastWriteTime ​        ​Length Name 
-----                ------------- ​        ​------ ---- 
--a---- ​       26.9.2016 ​    ​10:​00 ​       1265664 libeay32.dll 
--a---- ​       26.9.2016 ​    ​10:​00 ​        ​274432 ssleay32.dll 
- 
-PS C:\> copy "​C:​\Program Files (x86)\OpenSSL-Win32-102j\*eay32.dll"​ "​C:​\Program Files (x86)\mosquitto\"​ 
-PS C:\> dir "​C:​\Program Files (x86)\mosquitto\*eay32.dll"​ 
- 
- 
-    Directory: C:\Program Files (x86)\mosquitto 
- 
- 
-Mode                LastWriteTime ​        ​Length Name 
-----                ------------- ​        ​------ ---- 
--a---- ​       26.9.2016 ​    ​10:​00 ​       1265664 libeay32.dll 
--a---- ​       26.9.2016 ​    ​10:​00 ​        ​274432 ssleay32.dll 
-</​code>​ 
-  * If you need change Mosquitto configuration 
-<​code>​ 
-PS C:\> notepad "​C:​\Program Files (x86)\mosquitto\mosquitto.conf"​ 
-</​code>​ 
-  * Start Mosquitto service 
-<​code>​ 
-PS C:\> Set-Service Mosquitto -Status Running 
-PS C:\> Get-Service Mosquitto 
- 
-Status ​  ​Name ​              ​DisplayName 
------- ​  ​---- ​              ​----------- 
-Running ​ mosquitto ​         Mosquitto Broker 
-</​code>​ 
- 
- 
-==== Testing MQTT protocol with MQTTLens ==== 
-For testing of MTTQ Broker and data on MQTT protocal is used Chrome extensinon MQTTLens 
- 
-{{wiki_nodemcu_mqttlens.png?​750}} 
  • project/nodemcu_windev/en.txt
  • Last modified: 2017/03/26 12:52
  • by licho