Esp8266 auth: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
Zeile 29: Zeile 29:
 
<code> esptool.py -p /dev/tty<SERIALPORT> write_flash 0x00000 0x00000.bin 0x10000 0x10000.bin</code>
 
<code> esptool.py -p /dev/tty<SERIALPORT> write_flash 0x00000 0x00000.bin 0x10000 0x10000.bin</code>
 
or with newer versions of esptool (e.g. 0.4.6 on debian): <code>esptool -ca 0x00000 -cf 0x00000.bin -ca 0x10000 -cf 0x10000.bin</code>
 
or with newer versions of esptool (e.g. 0.4.6 on debian): <code>esptool -ca 0x00000 -cf 0x00000.bin -ca 0x10000 -cf 0x10000.bin</code>
 +
 +
== How to flash .lua files ==
 +
 +
Use for example the [https://github.com/kmpm/nodemcu-uploader nodemcu-uploader]:
 +
<code>nodemcu-uploader -B 115200 upload *.lua</code>
 +
 +
Beware: The tool will not tell you that lines are too long and can not be uploaded but instead throw some error messages you do not understand and exit... The solution is to remove the comments at the beginning of the file before uploading or split them up.
  
 
==Todo==
 
==Todo==

Version vom 14. Juli 2016, 09:48 Uhr

WHAT

ESP 8266 based authentication system used in various things @ metalab.at

Source code is found on github

What exactly?

  • Scannerroom
  • Elektronikkammerl


Command Features

  • add User IButton via learning Mode
  • List saved Users
  • delete Users <-- NEW


How

Take an ESP8266 module

Flash the NodeMCU LUA firmware github -- precompiled: Datei:Esp8266-firmware.zip

Upload the files.

How to flash firmware

Use esptool in python to flash firmware on esp.
Press flash button and reset and then release first reset button to get in flash mode
Flash command für precompiled Firmware oben
esptool.py -p /dev/tty<SERIALPORT> write_flash 0x00000 0x00000.bin 0x10000 0x10000.bin or with newer versions of esptool (e.g. 0.4.6 on debian): esptool -ca 0x00000 -cf 0x00000.bin -ca 0x10000 -cf 0x10000.bin

How to flash .lua files

Use for example the nodemcu-uploader: nodemcu-uploader -B 115200 upload *.lua

Beware: The tool will not tell you that lines are too long and can not be uploaded but instead throw some error messages you do not understand and exit... The solution is to remove the comments at the beginning of the file before uploading or split them up.

Todo

  • Add schematics of current setups for elektrinkkammerl and scannerraum
  • Add more doku on how to flash and import the scripts
  • Design a breakoutboard with standardized connectors for I-button, and relays