Go to file
2021-01-23 10:00:15 +01:00
os Upgraded esptool to python3 2020-12-07 20:02:01 +01:00
simulation Display one color after the other 2019-05-22 21:25:33 +02:00
tools More documentation added for the tools 2021-01-15 17:45:37 +01:00
unit Remove display_countcharacters_de and display_countwords_de 2019-04-20 21:39:50 +02:00
.gitignore Ignore locally stored configuration files 2020-12-07 20:54:46 +01:00
displayword.lua Background of first row changeable 2021-01-23 09:44:15 +01:00
init.lua Made Telnetserver optional 2021-01-14 21:55:51 +01:00
main.lua Background of first row changeable 2021-01-23 09:44:15 +01:00
mqtt.lua Background of first row changeable 2021-01-23 09:44:15 +01:00
Readme.md Documentation improved 2021-01-23 10:00:15 +01:00
telnet.lua Indention improved 2020-03-06 23:55:14 +01:00
timecore.lua More local variables; ~ 2k more RAM 2016-06-19 15:57:57 +02:00
webpage.html Reduced html stuff 2020-02-12 20:14:01 +01:00
webserver.lua Merge branch 'master' into sim2 2020-01-29 20:47:00 +01:00
wordclock.lua Formating added 2020-12-10 22:15:27 +01:00

ESP Wordclock

Setup

Initial Setup

Install the firmware on the ESP: The ESP must be set into the bootloader mode, like this

The firmware can be downloaded with the following script:

cd os/
./flash.sh ttyUSB0

Connect to the ESP via a terminal emulator like screen using a baud rate of 115200. Then format the filesystem and reboot the ESP with the following commands:

file.format()
node.restart()

Then disconnect the serial terminal and copy the required files to the microcontroller:

./tools/initialFlash.sh /dev/ttyUSB0

Upgrade

Determine the IP address of your clock and execute the following script:

./tools/remoteFlash.sh IP-Address

Hardware Setup

Mandatory:

  • GPIO2 LEDs
  • GPIO0 Bootloader (at start)
  • GPIO0 factory reset (long during operation) Optinal:
  • ADC VT93N2, 48k light resistor

MQTT Interface

Status

  • basetopic/brightness Current brightness in percent
  • basetopic/background Current background color

Commands

  • basetopic/cmd/single
    • ON Set brightness to 100%
    • OFF Set brightness to 0%
    • 0-100 Set brightness to given value
    • #rrggbb Background color is set to hex representation of red, green and blue
    • 0-255,0-255,0-255 Background color is set to decimal representation of red, green an blue
  • basetopic/cmd/telnet
    • ignored Stop MQTT server and start telnetserver at port 23

OpenHAB2

Tested MQTT with binding-mqtt 2.5.x

Configuration

Thing mqtt:topic:wordclock "Wordclock" (mqtt:broker) @ "MQTT"  {
  Channels:
   Type dimmer : dim "Dimming" [ stateTopic="basetopic/brightness", commandTopic="basetopic/cmd/single" ]
   Type string : cmd "Command" [ commandTopic="basetopic/cmd/single" ]
   Type switch : active "Active" [ commandTopic="basetopic/cmd/single" ]
   Type colorRGB : background "Background" [ stateTopic="basetopic/background", commandTopic="basetopic/cmd/single", on="28,0,0", off="0,0,0" ]
}