Lainattu teksti Foorumilta "http://forums.vwvortex.com/showthread.php?5075482-VW-Climatronic-Readouts" 1. Hold down "ECON", and press the "up-vent" button (next to recirculation). Both temperature displays will read 00 or 00'0, and you can release the buttons once they do. 2. Twist the LEFT temperature knob until the display above reads 19’0. 3. Twist the FAN knob until the left temperature display reads 19’1 (like 19.1). 4. The right temperature display is now a digital speedometer! HOW COOL IS THAT!!! --- For tach (in x100), twist the FAN knob until the left temperature display reads 19’3 (like 19.3) --- To reset and go back to normal operation, hit the ECON button once. These are the different settings the Climatronic can display. The numbers on the left indicate the “CHANNEL” the smaller number indicates the sub-channel Main channel: 0 - System data 0 Number program 1 Left ERL 2 Skillful ERL 3 Point of job accensione/avvio 4 I re...
ESP8266 Board configurations https://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/intro.html#requirements - Need ESP8266 board with 1Mbyte flash. - Remember boards are mostly operating 3.3V Get firmware here Need esptool for desktop computer. Best way to install it by using pip install esptool f.g on Python directory Erase flash esptool.py --port /dev/ttyUSB0 erase_flash Flash new firmware esptool.py --port /dev/ttyUSB0 --baud 460800 write_flash --flash_size=detect 0 esp8266-20170108-v1.8.7.bin Serial communication with realterm 115.2k REPL over serial port is always available Wifi Communication Board configures automatically Wifi Access point. ESSID: MicroPython-xxxxxx Password: micropythoN IP:192.168.4.1 WebREPL is available, but before first run after flashing the password need to setup. Only way to do that is use the serial REPL. Give the command import webrepl_setup on serial console and follow ...