DCF77 emulator with ESP8266, Elektor LABS version (150713)
Upgrade your old DCF77 clock to be synchronised via NTP
Here is the original version of this project
Although the idea behind this project is quite straight forward, the implementation is a bit more difficult. The software may need some modification to be compatible with your DCF clock, so we have designed a small PCB in the Elektor lab that makes it very easy to (re)program the ESP8266 module if and when needed.
We combined the hardware for the clock and programmer into one circuit and changed the RS232 programming interface to a more modern USB connection. The new schematic consist of the ESP module (MOD1), 3.3V LDO (IC1), a connection for a USB to 3.3V (!!) UART (K1, pin compatible with an FTDI cable), jumper JP1 to set the ESP to programming mode, T1 for buffering/level translation of the DCF output and power LED1. The latter (and R1) may be omitted, the ESP-01 module has its own power LED.
T1 will make interfacing to the hardware of your clock a bit easier, it translates the 3.3V level of the ESP-output to the logic voltage level of your DCF clock. Collector resistor R4 may be omitted if your clock already has a pull-up resistor at the input of the DCF decoder. The DCF output will be inverted by this transistor, we have changed the original software to correct this. You may need to check the documentation of the DCF-module in your clock to see if the output signal should be inverted or not, but you can also use the good-old ‘trial and error’ method to see what polarity of the output works for your clock.
Although many parts are SMD types, soldering and assembling will not be too difficult. In the BOM a 2 x 4-way socket strip is included for mounting the ESP-01 module, but to save space (height) and improve mechanical stability the ESP-01 is preferably soldered on the main PCB without this socket. But you may also remove the socket afterwards.
Before we can use this circuit in the clock, the ESP module must be programmed with the Arduino sketch ESP8266_NTPtoDCF you can download below. If you haven’t programmed any ESP modules before, don’t forget to install the ESP8266 core in the Arduino IDE first. More on this subject can be found on here and on many other internet sites and tutorials.
Before the sketch will work for your DCF clock, there are three things that (may) need modification:
JP1 must be closed at power on to switch the ESP module to flash (programming) mode.
In the Arduino IDE, Tools menu, select ‘Generic ESP8266 Module’ as board type and the correct COM port number of your USB to UART interface. Then compile and upload the sketch, wait for the upload to complete and open the Serial Monitor in the Arduino IDE (again in the Tools menu).
The ESP-module will echo useful information to your computer screen to check if the DCF simulator is doing its job correctly. First it will show if the ESP is able to connect to your network, if not: check if you entered the correct SSID and password in the sketch. After the connection is established, the time server is read and decoded time information is displayed. Please note that the time on your screen is two minutes in advance, this lead is needed to synchronise the DCF clock in time!
If the connection to the time server is not made, you probably misspelled the URL. Correct it in line 65 of the sketch. If you have corrected the sketch you must reprogram the sketch. Remember to power cycle the circuit (unplug and plug K1 again) to put the ESP8266 in programming mode again.
Once the information in the Serial Monitor is correct, the circuit is ready to be installed in your DCF clock. Remove the programming cable from K1 and open jumper JP1. Remove the old DCF receiver from your clock, in most cases it will be a separate module with three wires (+5V, GND and DCF) that connect to K2 of our circuit.
If you want to be sure that the output of our DCF emulator produces a valid DCF code signal, there are numerous Arduino based (test) projects on the internet with DCF77 decoders. We tested our prototype with the DCF77clock_mod sketch
R1 = 220 Ω, thick film, 5%, 0.1W, 150V, 0805
R2 = 47 kΩ, thick film, 5%, 0.1W, 150V, 0805
R3,R4,R5 = 3.3 kΩ, thick film, 5%, 0.1W, 150V, 0805
Capacitor
C1 = 470 nF, 50 V, X7R, 0805
C2 = 100µF, 16V radial can SMD
C3 = 100 nF, 50 V, X7R, 0805
Semiconductor
LED1 = LED, red, 50 mcd, 1.85 V @ 20 mA
T1 = BC847C, 45 V, 100 mA, 250 mW, hfe=400
IC1 = LM3940 3.3V LDO
Other
MOD1 = ESP8266 ESP-01 WiFi module (Elektor shop 150445-91)
K1 = Pin header, breakable, 1 row, 6-way, horizontal
K2 = Pin header, breakable, 1 row, 3-way, vertical
JP1 = Pin header, breakable, 1 row, 2-way, vertical
MOD2 = Pin socket for ESP8266, breakable, 2 rows, 8-way, vertical Jumper, 2 way, 2.54 mm
PCB 150713-1 v1.0
Although the idea behind this project is quite straight forward, the implementation is a bit more difficult. The software may need some modification to be compatible with your DCF clock, so we have designed a small PCB in the Elektor lab that makes it very easy to (re)program the ESP8266 module if and when needed.
We combined the hardware for the clock and programmer into one circuit and changed the RS232 programming interface to a more modern USB connection. The new schematic consist of the ESP module (MOD1), 3.3V LDO (IC1), a connection for a USB to 3.3V (!!) UART (K1, pin compatible with an FTDI cable), jumper JP1 to set the ESP to programming mode, T1 for buffering/level translation of the DCF output and power LED1. The latter (and R1) may be omitted, the ESP-01 module has its own power LED.
T1 will make interfacing to the hardware of your clock a bit easier, it translates the 3.3V level of the ESP-output to the logic voltage level of your DCF clock. Collector resistor R4 may be omitted if your clock already has a pull-up resistor at the input of the DCF decoder. The DCF output will be inverted by this transistor, we have changed the original software to correct this. You may need to check the documentation of the DCF-module in your clock to see if the output signal should be inverted or not, but you can also use the good-old ‘trial and error’ method to see what polarity of the output works for your clock.
Although many parts are SMD types, soldering and assembling will not be too difficult. In the BOM a 2 x 4-way socket strip is included for mounting the ESP-01 module, but to save space (height) and improve mechanical stability the ESP-01 is preferably soldered on the main PCB without this socket. But you may also remove the socket afterwards.
Before we can use this circuit in the clock, the ESP module must be programmed with the Arduino sketch ESP8266_NTPtoDCF you can download below. If you haven’t programmed any ESP modules before, don’t forget to install the ESP8266 core in the Arduino IDE first. More on this subject can be found on here and on many other internet sites and tutorials.
Before the sketch will work for your DCF clock, there are three things that (may) need modification:
- The credentials of your WiFi network
- The URL of the time server used for synchronization
- The polarity of the DCF output
char ssid[] = "your_network_name"; // your network SSID (name)
char pass[] = "network_password"; // your network password
The URL of the NTP time server is defined in line 65:
const char* ntpServerName = "0.nl.pool.ntp.org";
In this case a server for the Dutch (nl) time zone is used. The polarity of the output emulating the DCF coding is defined in lines 462 to 472 of the sketch:
switch (PartialPulseCount++) {
case 0:
if (PulseArray[PulseCount] != 0)
digitalWrite(LedPin, 0);
break;
case 1:
if (PulseArray[PulseCount] == 1)
digitalWrite(LedPin, 1);
break;
case 2:
digitalWrite(LedPin, 1);
break;
For inverted coding (output normally high, pulses zero level) change ‘0’ to ‘1’ and vice versa in the digitalWrite commands. Flashing the ESP8266 NOTE: never connect power to K1 when a USB to serial converter is powering the circuit (or the other way around!) This will short these two 5V power supplies, which results in damage to your DCF clock and/or computer. Close jumper JP1 and connect a 3.3V FTDI cable or any other USB to serial converter between K1 and your computer.JP1 must be closed at power on to switch the ESP module to flash (programming) mode.
In the Arduino IDE, Tools menu, select ‘Generic ESP8266 Module’ as board type and the correct COM port number of your USB to UART interface. Then compile and upload the sketch, wait for the upload to complete and open the Serial Monitor in the Arduino IDE (again in the Tools menu).
The ESP-module will echo useful information to your computer screen to check if the DCF simulator is doing its job correctly. First it will show if the ESP is able to connect to your network, if not: check if you entered the correct SSID and password in the sketch. After the connection is established, the time server is read and decoded time information is displayed. Please note that the time on your screen is two minutes in advance, this lead is needed to synchronise the DCF clock in time!
If the connection to the time server is not made, you probably misspelled the URL. Correct it in line 65 of the sketch. If you have corrected the sketch you must reprogram the sketch. Remember to power cycle the circuit (unplug and plug K1 again) to put the ESP8266 in programming mode again.
Once the information in the Serial Monitor is correct, the circuit is ready to be installed in your DCF clock. Remove the programming cable from K1 and open jumper JP1. Remove the old DCF receiver from your clock, in most cases it will be a separate module with three wires (+5V, GND and DCF) that connect to K2 of our circuit.
If you want to be sure that the output of our DCF emulator produces a valid DCF code signal, there are numerous Arduino based (test) projects on the internet with DCF77 decoders. We tested our prototype with the DCF77clock_mod sketch
BOM 150713
ResistorR1 = 220 Ω, thick film, 5%, 0.1W, 150V, 0805
R2 = 47 kΩ, thick film, 5%, 0.1W, 150V, 0805
R3,R4,R5 = 3.3 kΩ, thick film, 5%, 0.1W, 150V, 0805
Capacitor
C1 = 470 nF, 50 V, X7R, 0805
C2 = 100µF, 16V radial can SMD
C3 = 100 nF, 50 V, X7R, 0805
Semiconductor
LED1 = LED, red, 50 mcd, 1.85 V @ 20 mA
T1 = BC847C, 45 V, 100 mA, 250 mW, hfe=400
IC1 = LM3940 3.3V LDO
Other
MOD1 = ESP8266 ESP-01 WiFi module (Elektor shop 150445-91)
K1 = Pin header, breakable, 1 row, 6-way, horizontal
K2 = Pin header, breakable, 1 row, 3-way, vertical
JP1 = Pin header, breakable, 1 row, 2-way, vertical
MOD2 = Pin socket for ESP8266, breakable, 2 rows, 8-way, vertical Jumper, 2 way, 2.54 mm
PCB 150713-1 v1.0
Discussie (14 opmerking(en))
Lutz Foerster 2 weken geleden
Funktion unsigned long sendNTPpacket(IPAddress& address)
Hat jemand eine Lösung für das Problem??
Die Version von Thoralf Freitag oben funktioniert aber fehlerfrei!
Compiling with 1.8.19 shows an error "no return statement in function returning non-void [-Werror=return-type]" in line 457 with a wrong "}"
Any solution to solve this??
Above posted version from Thoralf Freitag runs perfectly fine
Fränk Baumfrau 3 jaar geleden
Statt
" PulseArray[17+ArrayOffset] == 2;
PulseArray[18+ArrayOffset] == 2;"
muß es richtig so sein:
" PulseArray[17+ArrayOffset] = 2;
PulseArray[18+ArrayOffset] = 2; "
Thoralf Freitag 3 jaar geleden
Fränk Baumfrau 3 jaar geleden
Fränk Baumfrau 3 jaar geleden
Gibt es dafür eine Idee dieses zu korrigieren?
Thoralf Freitag 3 jaar geleden
Xyzzzy 3 jaar geleden
time_t ThisTime = secsSince1900 - seventyYears + ( timeZone * 3600 ) + 60;
If the delay is constant, you could always try to reduce 60 in the above line to 58.
Thoralf Freitag 3 jaar geleden
gstan 3 jaar geleden
Thoralf Freitag 3 jaar geleden
Fränk Baumfrau 3 jaar geleden
exit status 1
'ServerSessions' in namespace 'BearSSL' does not name a type
Can you help me ti fox this error?
Thoralf Freitag 3 jaar geleden
Fränk Baumfrau 3 jaar geleden
But Day of week is one Day to much. How to fix it?
Today is Friday, 24.09.2021, on the Clock it shows Saturday, 24.09.2021
Thoralf Freitag 3 jaar geleden
12:19:04.379 -> Local port: 2390
12:19:04.379 -> TimeServerIP: 195.50.171.101
12:19:04.379 -> sending NTP packet...
12:19:04.379 ->
12:19:04.379 -> --------------- CUT HERE FOR EXCEPTION DECODER ---------------
12:19:04.412 ->
12:19:04.412 -> Exception (0):
12:19:04.412 -> epc1=0x40201311 epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000000 depc=0x00000000
12:19:04.412 ->
12:19:04.412 -> >>>stack>>>
12:19:04.412 ->
12:19:04.412 -> ctx: cont
12:19:04.412 -> sp: 3ffffdd0 end: 3fffffc0 offset: 0190
12:19:04.412 -> 3fffff60: 00000030 3ffee8d8 3ffee8f4 40201311
12:19:04.445 -> 3fffff70: 40205a00 65ab32c3 3ffee968 40202664
12:19:04.445 -> 3fffff80: 3ffee8d8 3ffee924 3ffee968 40201386
12:19:04.445 -> 3fffff90: 3fffdad0 00000000 3ffee9e0 40201399
12:19:04.445 -> 3fffffa0: feefeffe 00000000 3ffee9e0 40202d3c
12:19:04.479 -> 3fffffb0: feefeffe feefeffe 3ffe8614 40100bc9
12:19:04.479 -> <<<stack<<<
12:19:04.479 ->
12:19:04.479 -> --------------- CUT HERE FOR EXCEPTION DECODER ---------------
Thoralf Freitag 3 jaar geleden
to
now it works
Xyzzzy 3 jaar geleden
Dcf77 uses 1 = Monday.
My old dcf clocks refuses to set the time if weekday does not match the date.
Also, some clocks seem to need some more synchronization time when starting up
(not only the stop bit from the previous frame).
When the ntp packet has been received, there is no need for WiFi to be active.
Turning WiFi off makes current consumption go from 75 mA to 16 mA.
(Using an ESP-12E/F module in a 3V battery operated clock with EN activated by the clock)
Modified sourcecode with the above fixes attached.
walterdkn 3 jaar geleden
You can change/ add a line like this:
DayOfW = weekday(ThisTime) - 1;
if (DayOfW == 0) DayOfW = 7;
Walter
Brian Jones 4 jaar geleden
Kind regards Brian
MSF Emulator.pdf (420kb)
Brian Jones 4 jaar geleden
Thomas 01 4 jaar geleden
gefolgt von ca. 1 Minute kein Signal. Dieses wiederholt sich im Wechsel.
Aufgebaut mit ESP8266 ESP-01S.
Was muss ich einstellen, damit ein DCF-Ausganssignal anliegt ohne Pause (kein Signal)?
walterdkn 4 jaar geleden
dieses Verhalten ist normal. Das Modul holt sich die aktuelle Netzzeit, wandelt sie in DCF um und gibt das DCF-Telegramm aus. Dann beginnt ein neuer Zyklus, am Anfang liegt kein gültiges DCF-Telegramm vor; sobald es da ist wird es wieder ausgegeben.
Die DCF-Uhr muss also die Zeit intern überbrücken. Da aber bei einem herkömmlichen DCF-Empfang in der Regel nur einmal pro Tag das Signal dekodiert wird sollte das kein Problem sein. Manche Uhren werten das Signal auch im Hintergrund aus und aktualisieren die Zeit sobald ei gültiges Telegramm vorliegt.
Walter
Thomas 01 4 jaar geleden
In der Zeit wo "kein gültiges DCF-Telegramm vorliegt" liegt an den Ausgang vom ESP-01S an Pin Gido2 3,3 Volt an, dann zeigt meine Uhr "Kein Signal" als Text an.
"Wenn" in der Zeit wo "kein gültiges DCF-Telegramm vorliegt" an den Ausgang vom ESP-01S an Pin Gido2 0 Volt anliegt (Vebindung zur Uhr unterbrochen; Kabel entfernt) , wird die Zeit intern von meiner Uhr überbrückt.
Wie kann man diese Einstellung von 3,3 Volt auf 0 Volt, in der Zeit wo "k e i n gültiges DCF-Telegramm vorliegt" umstellen?
Thomas 01 4 jaar geleden
beim überprüfen des Sketch Esp8266_NtpToDcf77 erscheint die Fehlermeldung Esp8266_NtpToDcf77:224:27: error: 'weekday' was not declared in this scope
ayOfW = weekday(epoch); und es geht nicht weiter.
Ich bitte um Hilfe.
JPe4619 4 jaar geleden
Helmar Waiczies 4 jaar geleden
es liegt am weekday, schätze mal falsche Time.h bzw TimeLib.h installiert ?!
ich verwende die v1.5 dafür: https://github.com/PaulStoffregen/Time
die aktuell 1.6 scheint es aber auch zu tun
Thomas 01 4 jaar geleden
Am DCF-Ausgang habe ich ein Signal.
Dieses Signal habe ich für die Uhr invertierter.
Das DCF-Empfangssignal (über Wlan) hat Aussätzer, gibt es eine Lösung? Die Uhr zeigt dann "Kein Signal" an.
Kann man die Software so verändern,
dass die Wlan-Verbindung erkannt wird ohne sichtbare SSID?
Helmar Waiczies 4 jaar geleden
Das mit dem "Dieses Signal habe ich für die Uhr invertierter" verstehe ich nicht, was hat das mit dem Wlan zu tun ?
Das modul gibt "normal" oder "invertiert" aus, je nachdem was man in der Software einstellt. Steht aber alles im pdf beschrieben
Helmar Waiczies 6 jaar geleden
oder auch nur das brd-file ?
Alexander gam19 Grigorev 6 jaar geleden
GR CE 6 jaar geleden
walterdkn 6 jaar geleden
https://www.elektormagazine.de/labs/dcf77-emulator-with-esp8266
There I posted exactly the same problem; fuso did upload a modified software which solves the problem:
https://www.elektormagazine.de/files/attachment/9889
Furthermore the new software solves another problem which is in the original version: sometimes the emulator hangs up and must be restarted. Since I flashed the new version this issue did not occur any more.
Meanwhile I have running three modules with different dcf clocks (one ELV model, the other ones are my own creations, one of them still with a PIC); all of them are working absolutely fine.
GR CE 6 jaar geleden
9314: DCF77 Signal detected, duration: 899, appending value 1 at position 56
10313: DCF77 Signal detected, duration: 900, appending value 1 at position 57
11313: DCF77 Signal detected, duration: 1899, appending value 1 at position 58
Time: 0:0:0 Date: 0.0.0
####
#### Begin of new Minute!!!
####
Finalizing Buffer
Parity check NOK - running on internal clock.
13313: DCF77 Signal detected,
Helmar Waiczies 6 jaar geleden
habs erfolgreich aufgebaut aber es kommt kein sinnvolles dcf-signal, wlan geht aber
Update: beim Flashen muss man wohl Erase Flash: "All Flash Contents" auswählen
Bei nur "Only Sketch" kommt bei mir der u.A. "Müll" raus, oder es geht garnichts
getestet mit Arduino IDE 1.8.2, esp8266 v2.4.1 und https://github.com/PaulStoffregen/Time
mit der 1.8.5 hatte ich andere Problem, weis aber nicht ob das zusammenhängt
Helmar Waiczies 6 jaar geleden
das eigentliche Problem waren wohl die default Flash Einstellungen für den ESP, die beim ersten mal flashen zwar funktionieren aber nicht wenn schon mal was anderes drauf geschrieben war, da kamen dann sogar Runtim Errors also nicht mit der timelib.h zu tun So erkläre ich mir das zumindest. Seither läuft das Ding 24/7 ohne Probleme.
walterdkn 6 jaar geleden