Skip to main content

ESPCLOCK2, Part 1 - Getting timezone and local time

I am almost done with the implementation of ESPCLOCK2, so I will start a series of posts detailing the obstacles encountered and lessons learnt from the project.

The original ESPCLOCK obtains the geolocation of the clock during setup from the user's browser, and use the geolocation to convert to local time using Google's Timezone API. As noted here, this approach hits a major snag as recent browsers started to restrict the use of navigator.geolocation.getCurrentPosition() to Javascript running from SSL-secured websites. Since it would be extremely unlikely for WifiManager to support SSL hosting, another approach is needed.

After considering the alternatives, I think the simplest approach will be to host a simple PHP script on a server. This has several advantages: 1) There are no API keys to muck with. All timezone APIs I looked at require you to register for some kind of API key. 2) You won't be affected by API changes, or the service shutting down. You can run the script from any machine that is properly NTP-synchronized (most OS do it by default these days, even Windows). I am hosting the script here, which is open to public access. It is basically a simple 3-liner:

1
2
3
4
5
6
7
8
9
<?php

if (isset($_REQUEST['tz'])) {
  $time = new DateTime();
  $time->setTimezone(new DateTimeZone($_REQUEST['tz']));
  print $time->format('h:i:s');
}

?>

It takes a timezone string found from the list here, and returns the local time for that timezone. The script has very low memory, network and disk access overhead.

There is still the problem of trying to detect the timezone of the user from the browser during setup. This is done by using Intl.DateTimeFormat().resolvedOptions().timeZone, which is supported by more recent browsers. If for some reason the browser does not support this, the user can always populate the field manually.

Comments

Popular posts from this blog

Cooling mod for the X96 Air #2

Previously, I added a USB cooling fan to the X96 Air TV box . The problem with this mod is that the fan is always running, and it runs at full speed. Ideally, the fan should kick in only when the CPU temperature is above a certain threshold. It would be even better if there is a way to control the fan speed. Dan McDonald left me a comment pointing to his project on Github . He basically connected the fan to a USB relay that can be controlled by Python script. His project inspired me to make a similar mod that would make use of the spare D1 Mini boards I have lying around. The plan is to hook up the fan to a MOSFET (2N7000) and control it via PWM. Here's the very simple circuit: The code simply reads a single character from the serial port (0 - 9). 0 will turn the fan off, while 1 - 9 will generate a proportional PWM to drive the fan, with 1 being the lowest and 9 being the highest. Here's the Arduino code: #include <Arduino.h> void setup () { Serial . begin ( 9600 ...

Installing and customizing CoreELEC in X96 Air

I previously installed CoreELEC on another TV Box ( Ugoos X3 Pro ), which unfortunately died after only 9 months during the summer (due to the unit overheating, which I learned is a common problem for cheap Android TV boxes). So this time I purchased a X96 Air  (4GB/32Gb) and had to do the whole thing again. So this is a note-to-self in case I ever have to install CoreELEC again on some other device. Installation of CoreELEC is simple enough by following this guide . Basically, it involves downloading and writing the firmware to a microSD card using usbimager . Then insert the microSD card, reset the unit and hold the reset until the logo appears. The unit will then proceed to boot into CoreELEC. First thing is to connect to WiFi, then enable SSH. This allows me to login via ssh and execute: ceemmc -x from the terminal. This writes CoreELEC to the built-in eMMC storage, after which I am able to remove the microSD card and reboot the unit into CoreELEC via the built-in sto...

Cooling mod for the X96 Air

I realized after my Ugoos box died that overheating is a big problem with cheap Android TV boxes. A teardown of the Ugoos box shows that it does not have any heatsink or fan at all!  The X96 Air does have a heatsink, but the heatsink is located at the bottom of the casing with no ventilation. In this default configuration, with the ambient room temperature at 25c and playing a 1080p video, I was seeing the CPU temperature at 67c. I drilled a couple of holes at the bottom of the casing. The CPU temperature fell to 59c with the box raised about 2cm with plastic blocks. I retrieved an old 5V laptop fan: Then cut and strip away a spare USB cable: Solder the red and black wires on the fan and the cable: Secure the fan to the bottom of the casing with double-sided tape, then plug the fan into the box's USB connector. Here's a view of the box with some 3D-printed risers installed at the bottom to give the mounted fan sufficient clearance: The CPU now runs at 43c, a huge drop from the ...