OpenBeken now supports several time sources beyond NTP, including browser time, DS3231 RTC, NEO-6M GPS, and DCF77 radio time.
Defining ENABLE_TIME_PMNTP adds a GUI button to set the clock from PC or tablet time, giving a simple one-time sync path.
The DS3231 driver starts with startdriver DS3231 , where 1 syncs once on boot and 2 resyncs every minute.
The NEO-6M GPS driver decodes NMEA, can set clock and latitude/longitude, and the DCF77 driver decodes minute-long radio time frames with edge selection options.
Cheap DS3231 battery boards may be wired for rechargeable cells, so a CR2032 can be unsafe unless the 200 ohm resistor is removed.
Recently time code from OBK was changed to allow for more time sources (beside the well known NTP).
The possibly simplest method is setting the OpenBeken time to the time of the device you are using to access the GUI (this is allready in OBK code, just not enabled):
Setting device time to browser time
If you define "ENABLE_TIME_PMNTP" in obk_config.h your GUI will show an additional button "Set clock to PC time", which will set the time to the time of your PC/Tablet...:
This is done once, and the accuracy depends on your device: My LN882H seems quite good, in half a year the drift was only about 5 minutes - if you set it regulary, you can keep it even better.
But of course there are more things to present:
Using a DS3231 RTC
Also allready present is a driver for the DS3231 RTC - a cheap possibility to add a battery powered RTC chip which can set the time e.g. on startup.
It's enabled in obk_config.h with "#define ENABLE_DRIVER_DS3231 1"
Useful in case the device has no access to another time source, e.g. when there's no internet and hence no NTP possible.
An important hint if you have one of those cheap battery powered devices like this one: The circuit is designed for a rechargeable battery - if used with e common CR2032 this might blow up your cell (or maybe even worse).
You can easily test if "VCC" is connected to the battery's "+" over a 200 ohm resistor and a diode. If so, I suggest to simply remove the resistor to protect your battery:
If your hardware is clear, you start the driver with
the optional argument will define if and when the openbeken time is set to the RTC time:
"1" - this will set the device time to RTC time once on startup
"2" - the device time is regulary (every minute) set to the RTC time, so RTC is "master clock" for the device.
To set the RTC you can use the two commands
DS3231_SetTime <hours> <minutes> <seconds> <day> <month> <year> - (e.g. DS3231_SetTime 19 50 01 13 8 25)
DS3231_SetEpoch <epoch since 1970> - (e.g. DS3231_SetEpoch 3269879540)
If you are using a Linux PC you might "set" the RTC via
wget -q "http://<your.device.IP.address>/cmd_tool?cmd=DS3231_SetEpoch+$(date -u +%s)"
Here's a picture of an ESP32 with DS3231 on pins 25 (SDA) and 26 (SCL).
to set devices clock to RTC time once on startup of driver.
If you don't have (or don't want) your device to get the time via internet and NTP I made two pull requests for additional time sources: GPS and DCF77 (a German longwave time signal radio station).
For the devices with a usable UART, you can use my NEO-6M driver. It will decode the NMEA statements from the device and allow you to set the devices time and even latitude/longitude in case you are using "sunrise/sunset" calculations.
The modules are quite cheap (~2.5 to 3 € on ali) an you need to connect the NEO-6M RX and TX to the devices TX and RX.
Here an example with the module connected to BK7238 module (needs "flag 26" for me, so NEO6M TX is connected to P1 and NEOs RX to P0).
You have the following arguments to
"<baudrate>" will use the integer as baud rate - this requires NEO6M was set to this baudrate permanently before. It will not send any command to NEO6M!
"setclock" will set the obk time to GPS time if NEO6M is "locked"
"setlatlong" will set the obk latitude/longitude to GPS values if NEO6M is "locked" (and "ENABLE_TIME_SUNSET_SUNRISE" is defined)
Usually the GPS module will send a lot of NMEA messages every second - this would need a lot of buffer for the "parser".
So on startup the driver will send the command to disable all messages except RMC (we will only parse "$GPRMC" lines).
If you have the possibility to set the NEOM6 permanently to only this output, you would only need the RX on the obk side.
You might read and set the module via "u-Center" software available at "https://www.u-blox.com" - or use the recenty added "savecfg" argument to "startdriver".
Not tested too much, but works o.k. here ...
As my desk is not directly next to a window, reception sometimes is bad. So I bought a pigtail and an antenna for a vehicle with an 2m cable.
I didn't measure, but I'd say reception is not as good as if I lay the original antenna there - but it's o.k. to get a GPS signal even 1.5 meters away from the window.
If you are using a smart switch with live wires, remember that the ground (GND) is usually not isolated from the live wires! So you will need complete insulation to prevent electric shock.
For small money you will get a small board with an ferrite antenna like this one:
It will decode a radio signal broadcasting the actual time in "bits" represented by signal changes. Every second there is a 100ms ("0") or 200ms "1" change which is decoded as high/low on the modules output.
Since it's often used in battery powered devices, you need to enable reception by pulling the "PON" pin to GND.
The driver will decode the signal by collecting the bits over one minute and then calculate date, time and DST (summer-/winter-time).
Reception is not too reliable, even with the parity bit it sometimes receives a wrong time.
You can therefore test, if the next signal is 60 seconds after the previous to be quite sure, reception is fine.
The decoding is done via interrupts and tested on LN882H, Beken, BL602 and ESP platforms for now.
Here's some debug output from the reception and decoding of the signal:
optional arguments are
"fall" per default, a rising edge will mark the "bits", if you need a falling edge (e.g. if using a opto-isolator), use this argument
"httpstat" add some details from driver on main page
As stated before, smart switches IO pins are usually live, so I also tried if this works trough an opto-isolator: It does (but inverts the signal in my very simple realization):
This shows my test with a BK7231N switch (here powered by a PoE power supply with 48V) and the receiver input on the "switch" (since opto coupler inverts the signal, I used it with "fall" argument). I'm using a common PC-817 and a 220 ohm resistor for 3.3V for DCF77 device.
About Author
max4elektroda wrote 729 posts with
rating 179 , helped 47 times.
Been with us since 2024 year.
Very nice, I didn't even realize there are so many time sources around! Did you use my new HAL interrupts API for DCF77 on LN882H, Beken, BL602 and ESP? How crucial are timings for DCF77, were there any... [Read more]
insmod
21 Dec 2025 17:13
HAL IRQ is not used.
But, do you think you can adapt BK and BL change interrupts to HAL?
Plus, LN882H, Realteks after B, ECR, and XRs can use both edge irq oob.
I doubt this driver would be used very... [Read more]
p.kaczmarek2
21 Dec 2025 17:34
Well, if it's not using IRQ HAL, then @max4elektroda probably should integrate with our HAL first. It will be way cleaner that way.
I don't worry much about new IOR role. In the past, I didn't want... [Read more]
max4elektroda
21 Dec 2025 17:39
Yes, this driver was made before and while HAL_IRQ was created, I will try to change it.
For now added missing "CHANGE" to W600/W800 (tested), LN882H (testing atm, but it'crashing from time to time,... [Read more]
p.kaczmarek2
21 Dec 2025 18:36
Beken has no native change interrupt I think, so you need to set it up again to opposite edge with each event. [Read more]
max4elektroda
21 Dec 2025 20:29
Switched to new IRQ API and added "CHANGE" for the platforms I knew about and can test:
W800, LN882H and ESP - tested with ESP8266.
DCF driver works for these (LN882H tested with both "flavors": "CHANGE"... [Read more]
p.kaczmarek2
21 Dec 2025 23:11
Nice, HAL updates are necessary, it's good they turned out to be done today already.
IOR entry is your choice, at the moment I don't think it has much impact on the main build size. [Read more]
dktr
22 Dec 2025 09:51
Cool, at one time I tested on an esp8266 + gps neo6p and with the PPS output connected and you can make a pretty reasonable NTP time server out of it. [Read more]
FAQ
TL;DR: Extend OpenBeken time sources with browser time, DS3231 RTC, or NEO‑6M GPS; one device showed 5‑minute drift over 6 months. “Set clock to PC time” adds a one‑click sync option. [Elektroda, max4elektroda, post #21786021]
Why it matters: Reliable clocks fix schedules, logs, and sunrise/sunset automations when NTP is unavailable—ideal for offline or firewall‑restricted devices.
OpenBeken (OBK) now supports more time sources beyond NTP. You can sync from your browser, a DS3231 RTC, or a NEO‑6M GPS. The update adds compile flags, drivers, and commands to set device time at startup or periodically. It also supports latitude/longitude updates from GPS to power sunrise/sunset features when enabled. This helps devices without internet keep accurate schedules and logs. “This is done once, and the accuracy depends on your device.” [Elektroda, max4elektroda, post #21786021]
How do I set OpenBeken time to my PC/browser time?
Compile with ENABLE_TIME_PMNTP in obk_config.h. After flashing, open the GUI and use the new button “Set clock to PC time.” The device sets its time to your browser device’s clock. Accuracy depends on your host clock stability. One reported device drifted only about 5 minutes over six months before resync. [Elektroda, max4elektroda, post #21786021]
How do I wire and start a DS3231 RTC with OpenBeken?
Connect DS3231 SCL to your chosen SCL pin and SDA to SDA. Then run: startdriver DS3231 . Use opt=1 to set time once on startup; opt=2 to resync every minute. To program the RTC time, use DS3231_SetTime or DS3231_SetEpoch. [Elektroda, max4elektroda, post #21786021]
Is there a quick Linux command to set the DS3231 to current UTC?
Yes. Example: wget -q "http:///cmd_tool?cmd=DS3231_SetEpoch+$(date -u +%s)". This writes the current UTC epoch into the DS3231 via the device’s HTTP command interface. After that, the device can read back the RTC time at boot or on schedule, depending on your driver option. [Elektroda, max4elektroda, post #21786021]
What is the risk with cheap DS3231 battery boards and how do I fix it?
Some boards attempt to charge the coin cell through a resistor and diode path. A non‑rechargeable CR2032 can overheat or vent in that circuit. Test for a path from VCC to battery “+” via around 200 Ω and a diode. If present, remove the resistor to protect the cell. [Elektroda, max4elektroda, post #21786021]
How do I use a NEO‑6M GPS module as a time source?
Connect NEO‑6M TX to the device RX and RX to TX. Start with: startdriver NEO6M setclock setlatlong. The driver sets time when GPS is locked and can update latitude/longitude for sunrise/sunset if enabled. It disables all but $GPRMC to reduce parsing overhead. [Elektroda, max4elektroda, post #21786021]
Can the GPS driver save configuration on the NEO‑6M?
Yes. Use the “savecfg” argument with startdriver to store settings on the module. That lets you persist output message choices and baud rate, reducing runtime commands. The post notes it was not heavily tested but worked as expected. [Elektroda, max4elektroda, post #21786021]
What’s the cost of adding GPS time to my device?
Approximate NEO‑6M module price is €2.5–€3. This budget option provides UTC and position for automation without internet access. “The modules are quite cheap (~2.5 to 3 € on ali).” That makes GPS a practical alternative where NTP is blocked. [Elektroda, max4elektroda, post #21786021]
How accurate is device time if I only set it from the browser occasionally?
Accuracy depends on your SoC’s clock drift. The author reports an LN882H drifting about 5 minutes over half a year. Regular manual sync keeps error small. For better stability, make DS3231 the master (opt=2) to correct the device each minute. [Elektroda, max4elektroda, post #21786021]
What is DCF77 and will OpenBeken support it?
DCF77 is a German longwave radio time signal. The author submitted pull requests adding DCF77 as an additional time source, alongside GPS. The thread says “…to be continued with DCF77 driver …,” indicating planned coverage in that PR series. [Elektroda, max4elektroda, post #21786021]
Do I need both TX and RX lines for NEO‑6M?
The OBK driver transmits at startup to limit NMEA output to RMC only. That needs TX from the device to the NEO‑6M. If you configure the module permanently for RMC‑only elsewhere, you may wire only the module’s TX to the device’s RX. [Elektroda, max4elektroda, post #21786021]
How do I start the DS3231 on ESP32 pins 26 (SCL) and 25 (SDA)?
Use: startdriver DS3231 26 25 1. That sets the device clock from the RTC once at driver startup. Adjust the third argument to 2 if you want continuous minute‑by‑minute resync instead. [Elektroda, max4elektroda, post #21786021]
How do I wire NEO‑6M to a BK7238 running OpenBeken?
On the shown setup, the author used “flag 26” so NEO‑6M TX goes to P1 and RX to P0. Ensure the UART mapping matches your board configuration before starting the driver. Then run startdriver NEO6M with the desired options. [Elektroda, max4elektroda, post #21786021]
What commands are available to set DS3231 time?
Use DS3231_SetTime (e.g., DS3231_SetTime 19 50 01 13 8 25). Or use DS3231_SetEpoch (e.g., DS3231_SetEpoch 3269879540) for a single‑value update. [Elektroda, max4elektroda, post #21786021]
Quick setup: How do I enable the GUI one‑click time sync?
Using a non‑rechargeable CR2032 on a DS3231 board designed to trickle‑charge the cell. The cell can fail. Verify the resistor‑diode path from VCC to the battery “+”. Remove the resistor if present to prevent charging. [Elektroda, max4elektroda, post #21786021]
Comments
Very nice, I didn't even realize there are so many time sources around! Did you use my new HAL interrupts API for DCF77 on LN882H, Beken, BL602 and ESP? How crucial are timings for DCF77, were there any... [Read more]
HAL IRQ is not used. But, do you think you can adapt BK and BL change interrupts to HAL? Plus, LN882H, Realteks after B, ECR, and XRs can use both edge irq oob. I doubt this driver would be used very... [Read more]
Well, if it's not using IRQ HAL, then @max4elektroda probably should integrate with our HAL first. It will be way cleaner that way. I don't worry much about new IOR role. In the past, I didn't want... [Read more]
Yes, this driver was made before and while HAL_IRQ was created, I will try to change it. For now added missing "CHANGE" to W600/W800 (tested), LN882H (testing atm, but it'crashing from time to time,... [Read more]
Beken has no native change interrupt I think, so you need to set it up again to opposite edge with each event. [Read more]
Switched to new IRQ API and added "CHANGE" for the platforms I knew about and can test: W800, LN882H and ESP - tested with ESP8266. DCF driver works for these (LN882H tested with both "flavors": "CHANGE"... [Read more]
Nice, HAL updates are necessary, it's good they turned out to be done today already. IOR entry is your choice, at the moment I don't think it has much impact on the main build size. [Read more]
Cool, at one time I tested on an esp8266 + gps neo6p and with the PPS output connected and you can make a pretty reasonable NTP time server out of it. [Read more]