RGBdigit clock [160100]

A very colourful clock, synchronised via Wi-Fi, With an optional BME280 eBoB sensor board it will also display temperature, humidity and air pressure.
What do you do when you want to design ‘something’ with a vintage or modern display? A clock of course, and this is our first design with RGBDigits: multi-colour 7-segment displays. With a BME280 breakout board attached it will also display temperature, humidity and air pressure. The clock is controlled by an ESP12 module, which makes it possible to synchronise the clock with an internet time server, change the clock settings from any mobile device or computer in the network, or transmit sensor data via Wi-Fi.
RGBDigits are manufactured by a Dutch company with the same name. Every display contains eight 5050 RGB NeoPixel LEDs (seven segments + decimal point) with integrated driver chips, which allow the user to control colour and brightness of every segment/DP individually via a 3-wire bus (VCC, GND an DATA). Up to 10 displays can be daisy chained via their DATA IN and DATA OUT pins.
Each primary colour LED of a NeoPixel can be set to 256 levels of brightness, resulting in 256 x 256 x 256 = 16777216 colours for every segment/DP.
Schematic
The clock is 5V powered via micro USB connector K1. The power supply is protected by 2A PTC resettable fuse F1, Schottky diode D1 serves as reverse polarity protection. IC1 is the main 3.3V voltage regulator, IC6 is the 3.3V supply for the Qtouch touch sensors IC4 and IC5 (separated supply to prevent interference).
The two touch sensors Button0 and Button1 are used to control the display modes of the clock. S1 and S2 are only used for resetting the clock and flashing of the firmware.
IC2 serves as uni-directional level shifter between the 3.3V at the ESP-12E side and the V+ (approx. 4.5V) power supply of the displays.
EEPROM IC3 is used to preserve the clock settings after power off.
A 3.3V FTDI-cable (or other 3.3V USB UART) can be connected to K2 to flash the ESP-12E module, it can also be used for debugging applications.
A BME280 BoB (160109-1) can be connected to K4. The clock will run without it, but of course there will be no sensor data available. An onboard BME280 was no option, heat from the displays will influence the data.
LDR R1 is used to dim the displays in the dark.
K3 makes the 3.3V power and three general purpose I/O pins of the ESP13E accessible for your own developments c.q. future expansions.
Flashing the sketch
The ESP12E Wi-Fi module (which contains an ESP8266) is supported in the Arduino IDE.
add the ESP8266 (NodeMCU). Instructions on how to add the ESP8266 (NodeMCU) can be found at ), follow the steps described there before you can proceed. Unpack the ZIP-file to an Arduino sketch folder on your hard drive, ensure that subfolder DATA (containing the ESP12’s webpage) is preserved in this folder!
Note: if the compiler exits with an error, this is probably caused by one or more missing Arduino libraries. The compiler will report the name of the first missing library, but you can also check if all libraries used in the INCLUDE directives in the “esp8266_rgb_clock” sketch are installed in your Arduino IDE before you start the compiler.
Uploading the clock’s webpages
All settings of the clock can be controlled via Wi-Fi. The initial connection must be made via the ESP8266’s Access Point (AP). Connect your smartphone/tablet/laptop (or PC, if it has a direct Wi-Fi connection) to the open network called “RGB clock” that will appear in the list of available Wi-Fi networks after flashing the clock’s firmware in the previous step. However, first the clock’s webpages must be uploaded to the ESP8266 before you get easy access to the settings of the clock.
On https://github.com/esp8266/Arduino/blob/master/doc/filesystem.md, under ‘Uploading files to the file system’ you’ll find instructions how to do this:
Now the fun starts J Connect to the “RGB Clock” Wi-Fi network, open a browser and connect to 192.168.4.1:81. In the menu (top left corner) select “Wi-Fi settings” and enter the SSID and password of your wireless network. The clock will use this network to connect to the time server (NTP) to synchronise, and send sensor data to the server at Sparkfun (will be discussed later). In the sketch "time.nist.gov" is defined as NTP-server for our clock.
Note:
Every computer with access to your Wi-Fi router can now access the clock to change its settings. Simply type “clock.local:81” in the address bar of a browser to get access to the clock’s webpages.
1 http://www.instructables.com/id/Quick-Start-to-Nodemcu-ESP8266-on-Arduino-IDE/.
BOM 160100-1 RGBdigit clock
Resistor
R1 = LDR NSL-19M51
R2,R3,R4,R5,R6,R8,R9,R10,R11,R12 = 10 kΩ, thick film, 5%, 0.1W, 150V
R7 = 1 kΩ, thick film, 5%, 0.1W, 150V
Capacitor
C1,C5,C6,C7,C10,C11,C13 = 100 nF, 50 V, X7R, 0805
C2,C4,C9 = 10uF, 10V, tantalum 1206
C3,C15,C16 = 1 µF, 50 V, X5R, 0805
C8 = 100 µF, 16 V, 2312
C12,C14 = 10 nF, 50 V, X7R, 0805
Semiconductor
D1 = MBRS540, 40 V, 5 A, Vf=550 mV @ If=5 A
LED1,LED2,LED3,LED4 = 7-segment RGB-display
IC1 = LD1117S33TR, LDO, 3.3 V, 800mA
IC2 = 74LVC1T45GW transceiver 1.2V to 5.5V
IC3 = I2C EEPROM 8K x 8 bit 24LC64T-I/OT
IC4,IC5 = Qtouch Touch Sensor AT42QT1010-TSHR
IC6 = MCP1700T-3302E/TT, LDO, 3.3V, 0.25A
Other
F1 = PTC resettable fuse 2A MF-SMDF200-2 (Bourns)
K1 = Micro USB type B receptacle, bottom mount
K2 = 6-way SIL pinheader, 100mil , angled
K3 = 5-way SIL pinheader, 100mil , angled
K4 = 4-way SIL pinheader, 100mil, straight
K5 = 2-way SIL pinheader, 100mil , angled
MOD1 = ESP8266-12F
S1 = Tactile switch
PCB 160100-1 v2.2
RGBDigits are manufactured by a Dutch company with the same name. Every display contains eight 5050 RGB NeoPixel LEDs (seven segments + decimal point) with integrated driver chips, which allow the user to control colour and brightness of every segment/DP individually via a 3-wire bus (VCC, GND an DATA). Up to 10 displays can be daisy chained via their DATA IN and DATA OUT pins.
Each primary colour LED of a NeoPixel can be set to 256 levels of brightness, resulting in 256 x 256 x 256 = 16777216 colours for every segment/DP.
Schematic
The clock is 5V powered via micro USB connector K1. The power supply is protected by 2A PTC resettable fuse F1, Schottky diode D1 serves as reverse polarity protection. IC1 is the main 3.3V voltage regulator, IC6 is the 3.3V supply for the Qtouch touch sensors IC4 and IC5 (separated supply to prevent interference).
The two touch sensors Button0 and Button1 are used to control the display modes of the clock. S1 and S2 are only used for resetting the clock and flashing of the firmware.
IC2 serves as uni-directional level shifter between the 3.3V at the ESP-12E side and the V+ (approx. 4.5V) power supply of the displays.
EEPROM IC3 is used to preserve the clock settings after power off.
A 3.3V FTDI-cable (or other 3.3V USB UART) can be connected to K2 to flash the ESP-12E module, it can also be used for debugging applications.
A BME280 BoB (160109-1) can be connected to K4. The clock will run without it, but of course there will be no sensor data available. An onboard BME280 was no option, heat from the displays will influence the data.
LDR R1 is used to dim the displays in the dark.
K3 makes the 3.3V power and three general purpose I/O pins of the ESP13E accessible for your own developments c.q. future expansions.
Flashing the sketch
The ESP12E Wi-Fi module (which contains an ESP8266) is supported in the Arduino IDE.
add the ESP8266 (NodeMCU). Instructions on how to add the ESP8266 (NodeMCU) can be found at ), follow the steps described there before you can proceed. Unpack the ZIP-file to an Arduino sketch folder on your hard drive, ensure that subfolder DATA (containing the ESP12’s webpage) is preserved in this folder!
- Connect a 3V3 (!!!!) FTDI-cable between your computer and K2 of the RGB-Clock
- Connect a 5V power supply to micro USB connector K1
- Open the Arduino IDE
- In the Tools menu -> Board, select Board NodeMCU 1.0 (ESP-12E Module)
- In the Tools menu -> Port, select the COM port associated with the FTDI cable
- In the File menu -> Open, select sketch “esp12_rgb_clock.INO”, included in the download from our website
- On the RGB clock board, press and hold reset button S2, press and hold flash button S1, release S2 and then release S1 to enable flashing of the firmware
- Compile and upload the sketch(CTRL+U)
Note: if the compiler exits with an error, this is probably caused by one or more missing Arduino libraries. The compiler will report the name of the first missing library, but you can also check if all libraries used in the INCLUDE directives in the “esp8266_rgb_clock” sketch are installed in your Arduino IDE before you start the compiler.
Uploading the clock’s webpages
All settings of the clock can be controlled via Wi-Fi. The initial connection must be made via the ESP8266’s Access Point (AP). Connect your smartphone/tablet/laptop (or PC, if it has a direct Wi-Fi connection) to the open network called “RGB clock” that will appear in the list of available Wi-Fi networks after flashing the clock’s firmware in the previous step. However, first the clock’s webpages must be uploaded to the ESP8266 before you get easy access to the settings of the clock.
On https://github.com/esp8266/Arduino/blob/master/doc/filesystem.md, under ‘Uploading files to the file system’ you’ll find instructions how to do this:
- Download the tool: https://github.com/esp8266/arduino-esp8266fs-plugin/releases/download/0.2.0/ESP8266FS-0.2.0.zip.
- Unpack the tool into tools directory (the path will look like <home_dir>/Arduino/tools/ESP8266FS/tool/esp8266fs.jar)
- Restart the Arduino IDE
- Now re-open the “esp12_rgb_clock.INO” sketch (if it didn’t open automatically)
- Make sure you have selected the right board and COM port, and closed Serial Monitor
- Press and hold reset button S2, press and hold flash button S1, release S2 and then release S1 to enable flashing of the webpages
- Select Tools -> ESP8266 Sketch Data Upload. This should start uploading the files stored in the “data” folder that was included in the download from our website into ESP8266 flash file system. When done, IDE status bar will display SPIFFS Image Uploaded message.
Now the fun starts J Connect to the “RGB Clock” Wi-Fi network, open a browser and connect to 192.168.4.1:81. In the menu (top left corner) select “Wi-Fi settings” and enter the SSID and password of your wireless network. The clock will use this network to connect to the time server (NTP) to synchronise, and send sensor data to the server at Sparkfun (will be discussed later). In the sketch "time.nist.gov" is defined as NTP-server for our clock.
Note:
- the ESP12’s access point will still be active after you have changed these Wi-Fi settings, so you can always modify them (and other settings) with your mobile device connected to the “RGB Clock” network.
- Firewalls –like the one in the Elektor castle- may block the NTP-protocol of an internet time server, making automatic synchronisation of the RGB clock impossible. We used a smartphone as Wi-Fi hotspot to bypass the time data to the clock, once synchronised it can run without NTP data. Alternatively you can use the manual settings on the clock’s webpage to set the correct time.
- If you want to connect the clock to an unprotected network (no password), check the “Unprotected Wi-Fi network” checkmark in the Wi-Fi settings of the clock
Every computer with access to your Wi-Fi router can now access the clock to change its settings. Simply type “clock.local:81” in the address bar of a browser to get access to the clock’s webpages.
1 http://www.instructables.com/id/Quick-Start-to-Nodemcu-ESP8266-on-Arduino-IDE/.
BOM 160100-1 RGBdigit clock
Resistor
R1 = LDR NSL-19M51
R2,R3,R4,R5,R6,R8,R9,R10,R11,R12 = 10 kΩ, thick film, 5%, 0.1W, 150V
R7 = 1 kΩ, thick film, 5%, 0.1W, 150V
Capacitor
C1,C5,C6,C7,C10,C11,C13 = 100 nF, 50 V, X7R, 0805
C2,C4,C9 = 10uF, 10V, tantalum 1206
C3,C15,C16 = 1 µF, 50 V, X5R, 0805
C8 = 100 µF, 16 V, 2312
C12,C14 = 10 nF, 50 V, X7R, 0805
Semiconductor
D1 = MBRS540, 40 V, 5 A, Vf=550 mV @ If=5 A
LED1,LED2,LED3,LED4 = 7-segment RGB-display
IC1 = LD1117S33TR, LDO, 3.3 V, 800mA
IC2 = 74LVC1T45GW transceiver 1.2V to 5.5V
IC3 = I2C EEPROM 8K x 8 bit 24LC64T-I/OT
IC4,IC5 = Qtouch Touch Sensor AT42QT1010-TSHR
IC6 = MCP1700T-3302E/TT, LDO, 3.3V, 0.25A
Other
F1 = PTC resettable fuse 2A MF-SMDF200-2 (Bourns)
K1 = Micro USB type B receptacle, bottom mount
K2 = 6-way SIL pinheader, 100mil , angled
K3 = 5-way SIL pinheader, 100mil , angled
K4 = 4-way SIL pinheader, 100mil, straight
K5 = 2-way SIL pinheader, 100mil , angled
MOD1 = ESP8266-12F
S1 = Tactile switch
PCB 160100-1 v2.2
Updates from the author
Lucky 6 years ago
(please note: this text was corrected 1-11-2018! So open connection at R5, R4 0 Ohm is the correct setting for I2C address 0x77)
Alternatively, if you are planning to change the firmware of the clock or (re)program the ESP8266 module yourself and/or don't want to change the hardware of the sensor module, you can change the address in source file "Adafruit_BME280.h" in the following line:
#define BME280_ADDRESS (0x77)
Of course you must edit this line and change the address to 0x76.
Roland Temmerman 6 years ago
The actual preassembled Emlektor module BME280 has zero ohm resistors at positions R1, R7 and R5 (!). This results in a default I2C address 6x76 (tested with RaspPi) and not the expected 0x76. An original Adafruit BME280 module has a default address at 0x77. How can I set the correct I2C address on the Elektor module?
Roland Temmerman 6 years ago
ClemensValens 6 years ago
Chris.KB3CS 6 years ago
please someone verify and confirm proper jumper placement with the RGB Digit Clock.
Roland Temmerman 6 years ago
Too late I noticed that the support should have pointed to the links (Dutch (!) elektormagazine.nl) with a clear schematic (for those familiar with Eagle PCB design) which could have prevented all this confusion. Take a look at
https://www.elektormagazine.nl/labs/bme280-bob-160109-1
It would be interesting that if Elektor supplies modules, either a schematic is attached or at least a link to the relevant article and/or schematic.
Best regards
ClemensValens 6 years ago
Chris.KB3CS 6 years ago
thank you for following up!
i have yet to receive any communication regarding what appears to be an unintended assembly error unrelated to the I2C address in the BME280 module i purchased from Elektor, however.
sadly, as it has been over a week since opening a Ticket, i believe i have my answer to that issue: i am on my own to resolve it. i've turned to another breakout board provider (i shall call it "BabbageTomato") so that i may complete my project.
Roland Temmerman 6 years ago
The Bosch sensor BME280 is not calibrated and is not easy to calibrate by software. The sensor can hardly be used as a temperature indication because it deviates 2 to 2,5 degrees from a calibrated TSI Q-TRAK (IAQ monitor) in the range of 10 to 20 °C. Further cheap modules with the same sensor from both Adafuit and BlueDot also show the important deviation. No precision sensor is expected for this price, but none of the three is appropriate even for consumer use.
Bosch forum : what about self heating of sensor (4-5 °C) :
https://xdk.bosch-connectivity.com/community/-/message_boards/message/89140
(according to datasheet : Temperature measured by the internal temperature sensor : This temperature value depends on the PCB temperature, sensor element self-heating and ambient temperature and is typically above ambient temperature.)
[...Bosch Sensortec BME280. As any electronic component, the sensor is subject to self heating, which can be from the sensor itself, as well as from other components used at the time of measurement. Unfortunately, this self heating strongly depends on the usage, and as the XDK can be freely programmed, the self heating depends on so many factors that we cannot provide a simple answer to that.
The sensor can be influenced to some extend by the sampling rate and by how fast a reading is taken after switching it on (see sensor datasheet for details http://ae-bst.resource.bosch.com/media/products/dokumente/bme280/BST-BME280_DS001-09.pdf ). As for a user defined program: I suggest monitoring the outside temperature with a reference thermometer and once a stable offset value is observed, use this to compensate the measurements. As an indication, we observed a self heating of 3-4K (!)under a normal load profile using sensors and Bluetooth.
The inaccuracy of the humidity is strongly related the temperature, as relative humidity is calculated using the temperature reading. Hence, a higher temperature leads to a lower relative humidity. Once the temperature compensation is done, the relative humidity can be calculated using the temperature gap.
See also:
http://go.vaisala.com/humiditycalculator/vaisala_humidity_calculator.html
http://www.vaisala.com/Vaisala%20Documents/Application%20notes/Humidity_Conversion_Formulas_B210973EN-F.pdf ...]
Best regards
Lucky 7 years ago