diff options
author | Torwag <torsten.wagner@gmail.com> | 2016-05-12 11:13:10 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-19 21:10:35 +0300 |
commit | 6fa60153eae746bee4657ae3fcd69e71144c6d59 (patch) | |
tree | 27773544436d31b827cd37cc820c7d317f673b25 | |
parent | 7f7c84b10a5f3b2f783955b01f55e0f913ac459f (diff) | |
download | micropython-6fa60153eae746bee4657ae3fcd69e71144c6d59.tar.gz micropython-6fa60153eae746bee4657ae3fcd69e71144c6d59.zip |
esp8266/README: Add a very first start section.
Adding a very first start section to get people going after flashing.
I tried to condense it to a minimum to avoid as much as possible
redundancy and bloating.
-rw-r--r-- | esp8266/README.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/esp8266/README.md b/esp8266/README.md index e187d4da17..0509a3799b 100644 --- a/esp8266/README.md +++ b/esp8266/README.md @@ -69,6 +69,34 @@ $ make PORT=/dev/ttyUSB0 deploy The image produced is `firmware-combined.bin`, to be flashed at 0x00000. +First start +----------- + +__Serial prompt__ + +You can access the REPL (Python prompt) over UART (the same as used for +programming). +- Baudrate: 115200 + +__WiFi__ + +Initally, the device configures itself as a WiFi access point (AP). +- ESSID: MicroPython-xxxxxx (x’s are replaced with part of the MAC address). +- Password: micropythoN (note the upper-case N). +- IP address of the board: 192.168.4.1. +- DHCP-server is activated. + +__WebREPL__ + +Python prompt over WiFi, connecting through a browser. +- Hosted at http://micropython.org/webrepl. +- GitHub repository https://github.com/micropython/webrepl. + +Please follow the instructions there. + +More detailed instructions can be found at +http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/intro.html + Troubleshooting --------------- |