summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorRadomir Dopieralski <openstack@sheep.art.pl>2015-06-17 12:12:49 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-06-18 11:42:05 +0300
commit0cba23716d568e8a3fba4da45f04ed5764b88a21 (patch)
treec28f0765c569e10407cde35075d2b80812ab98f8 /esp8266
parentb85bf25e97e771cbeefce255693035463974f320 (diff)
downloadmicropython-0cba23716d568e8a3fba4da45f04ed5764b88a21.tar.gz
micropython-0cba23716d568e8a3fba4da45f04ed5764b88a21.zip
ESP8266: Update the README.md to reflect what works
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/README.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/esp8266/README.md b/esp8266/README.md
index 8d070dd5ea..5d75be67eb 100644
--- a/esp8266/README.md
+++ b/esp8266/README.md
@@ -8,14 +8,16 @@ Currently implemented features include:
- 24k heap RAM available for Python code.
- Garbage collector, exceptions.
- Unicode support.
-- Builtin modules: gc, array, collections, io, struct, sys.
-- C long-long type used as bignum implementation (gives 64 signed ints).
+- Builtin modules: gc, array, collections, io, struct, sys, esp, network.
+- C long-long type used as bignum implementation (gives 64 bit signed ints).
+- Rudimentary WiFi support in station mode.
+- Sockets with callbacks.
+- Basic GPIO support.
Note that floating-point numbers are not supported.
On the TODO list:
-- Wifi support.
-- GPIO support.
+- Full wifi support.
- Internal filesystem using the flash.
- ...