Build of v0.5 updated install instructions
This commit is contained in:
parent
e4fd33fe87
commit
c08ac7c4e4
Binary file not shown.
BIN
bin/firmware.bin
BIN
bin/firmware.bin
Binary file not shown.
@ -43,8 +43,6 @@ Source structure
|
|||||||
- Directory for flashing device filesystem
|
- Directory for flashing device filesystem
|
||||||
* - /doc
|
* - /doc
|
||||||
- Various external documents used as input
|
- Various external documents used as input
|
||||||
* - /docs
|
|
||||||
- Folder published to github pages
|
|
||||||
* - /html
|
* - /html
|
||||||
- Source for html files
|
- Source for html files
|
||||||
* - /img
|
* - /img
|
||||||
|
BIN
src_docs/source/images/putty.png
Normal file
BIN
src_docs/source/images/putty.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
BIN
src_docs/source/images/serial.png
Normal file
BIN
src_docs/source/images/serial.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
src_docs/source/images/wifi.png
Normal file
BIN
src_docs/source/images/wifi.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
@ -7,14 +7,33 @@ Official esptool
|
|||||||
The prefered option for flashing esp8266 device is via the official esptool. Documentation can be found
|
The prefered option for flashing esp8266 device is via the official esptool. Documentation can be found
|
||||||
here; https://docs.espressif.com/projects/esptool/en/latest/esp32/
|
here; https://docs.espressif.com/projects/esptool/en/latest/esp32/
|
||||||
|
|
||||||
|
Windows 10 should install a driver for the USB -> Serial automatically when you connect a esp8266.
|
||||||
|
|
||||||
|
Flashing on windows
|
||||||
|
*******************
|
||||||
|
|
||||||
The basic command for flashing on Windows is;
|
The basic command for flashing on Windows is;
|
||||||
|
|
||||||
``esptool.py --port COM4 write_flash 0 firmware.bin``
|
``esptool.py --port COM4 write_flash 0x0 firmware.bin``
|
||||||
|
|
||||||
If there are issues you can try do erase the flash first using this command;
|
If there are issues you can try do erase the flash first using this command;
|
||||||
|
|
||||||
``esptool.py --port COM4 erase_flash``
|
``esptool.py --port COM4 erase_flash``
|
||||||
|
|
||||||
|
Serial Monitoring
|
||||||
|
*******************
|
||||||
|
|
||||||
|
To check output from the device (logs) there are several tools out there. I found this simple tool in the Windows Store called ``Serial Port Monitoring``.
|
||||||
|
Just select a baud rate of 115200, 8N1.
|
||||||
|
|
||||||
|
.. image:: images/serial.png
|
||||||
|
:width: 800
|
||||||
|
:alt: Serial output
|
||||||
|
|
||||||
|
|
||||||
|
Binaries
|
||||||
|
********
|
||||||
|
|
||||||
In the /bin directory you will find 3 different firmware builds;
|
In the /bin directory you will find 3 different firmware builds;
|
||||||
|
|
||||||
* **firmware.bin**
|
* **firmware.bin**
|
||||||
@ -47,3 +66,7 @@ If this is not configured in the device it will create an wirless access point c
|
|||||||
enter the SSID and password you want to use. If the web page dont open automatically you can enter the following adress
|
enter the SSID and password you want to use. If the web page dont open automatically you can enter the following adress
|
||||||
in the browser: **http://192.168.4.1**
|
in the browser: **http://192.168.4.1**
|
||||||
|
|
||||||
|
.. image:: images/wifi.png
|
||||||
|
:width: 200
|
||||||
|
:alt: Wifi page
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user