Re: ESP8266 ... der Tipping-Point ist erreicht!!!
Verfasst: Fr 15. Apr 2016, 21:49
Nein.BorgKönig hat geschrieben:hat unser eismensch mal geguckt, ob die käfer am hive laufen...?
Retro Style Eigenbau Computer mit Parallax Propeller
https://hive-project.de/board/
Nein.BorgKönig hat geschrieben:hat unser eismensch mal geguckt, ob die käfer am hive laufen...?
Wohl wahr... aber danach fängt die Arbeit mit der Integration doch erst an...zille9 hat geschrieben:Die ESP8266 brauchen nur ein simples Terminalprogramm, sollten also ohne großen Aufwand auch auf dem Hive laufen.
Neneee...TuxFan hat geschrieben:Aber wie Yeti schon erwähnte, da ist noch so einiges an Entwicklungsarbeit in die AT-Befehls-Geschichte zu investieren. Bei mir hat die Übermittlung von längeren Texten noch nicht geklappt.
Code: Alles auswählen
PORT OPEN 115200
Communication with MCU...
Got answer! AutoDetect firmware...
Communication with MCU established.
AT-based firmware detected.
AT+GMR
AT version:0.40.0.0(Aug 8 2015 14:45:58)
SDK version:1.3.0
Ai-Thinker Technology Co.,Ltd.
Build:1.3.0.2 Sep 11 2015 11:48:04
OK
Code: Alles auswählen
>>> import math
>>> dir(math)
['__name__', 'e', 'pi', 'sqrt', 'pow', 'exp', 'log', 'cos', 'sin', 'tan', 'acos', 'asin', 'atan', 'atan2', 'ceil', 'copysign', 'fabs', 'floor', 'fmod', 'frexp', 'ldexp', 'modf', 'isfinite', 'isinf', 'isnan', 'trunc', 'radians', 'degrees']
>>> math.pi
3.141592
>>> _
Code: Alles auswählen
MicroPython v1.8-149-g6707fc9-dirty on 2016-05-29; ESP module with ESP8266
Type "help()" for more information.
>>> import os
>>> os.listdir()
['boot.py']
>>> _
...die Frage, wieviel Filesystem in einem alten 512k-Flash habenden ESP-01-chen Platz findet, hat sich also ohne langwierige Versuchsreihen geklärt... ;-Dhttps://github.com/micropython/micropython/blob/master/docs/esp8266/tutorial/filesystem.rst hat geschrieben:The internal filesystem
If your devices has 1Mbyte or more of storage then it will be set up (upon first boot) to contain a filesystem. This filesystem uses the FAT format and is stored in the flash after the MicroPython firmware.
Code: Alles auswählen
>>> import gc
>>> gc.mem_free()
21488
>>> _
----------8<-----{Es geht voran!}----->8----------{20160717-130823-UTC} ... pfalcon hat geschrieben:Based on the KickStarter project backers' decision, all future official MicroPython ESP8266 binary releases will be made publicly available. This forum topic will be used to make an announcement of a new release, so you may want to subscribe to this topic, to receive notifications.
In the meantime we already provide daily builds: https://micropython.org/download/#esp8266. Note that the daily builds have some special traits:
- ESP8266 OS-level debug logging enabled, to help diagnosing issues. See for how to control this debug logging: http://docs.micropython.org/en/latest/e ... rd-control
- WebREPL does not automatically start on module boot. To start it, execute "import webrepl; webrepl.start()" in UART interactive prompt.
- Daily builds are made from from the latest work-in-progress source and may have not fully stabilized changes (or in some cases incompatible changes).