Author Topic: Simple illuminated time display that can be driven over USB?  (Read 1517 times)

0 Members and 1 Guest are viewing this topic.

Offline sparkydogTopic starter

  • Regular Contributor
  • *
  • Posts: 234
  • Country: us
Simple illuminated time display that can be driven over USB?
« on: April 19, 2024, 09:41:43 pm »
My cable company recently decided to remotely brick my DVR. This is annoying for a number of reasons, but in particular... I was rather used to it doubling as a clock.

Now, I really don't want much from a clock, just:
  • It should be self-illuminated light-on-dark (i.e. LED/VFD/OLED, not LCD).
  • It should use or support 24-hour time.
  • I shouldn't have to set it. Ever. (Not even if the DST rules change.)

Is this so much to ask?

Well, apparently it is, because while it's trivial to find two-out-of-three in various combinations, almost nothing satisfies all three. (If this is reminding you of this other, recent thread... yup. Except I'm looking for self-illuminated.) Frills such as seconds, date, temperature and weather are acceptable but not required. I wouldn't mind an off-the-shelf product, but the only one I can find that checks all the above boxes is this, and I don't like the seconds being a different size. (I'm not in love with the dot-matrix style digits, either.) I'd also prefer to avoid something that needs to be hooked up to WiFi, and I will not use anything that requires installing an app.

Now... mitigating my woes, I do happen to have a Linux "server" near where I want the clock, which satisfies the third point via the magics of NTP and software updates. In fact, if I could just hook an always-on display to that, it would solve my problem nicely.

Is there a modest-sized (at least 3"×1" but not larger than 18"×5") OLED screen that I can control from a PC USB port from userland software, but not as an X/Wayland display? Or is there any four-digit seven-segment (with colon, please!) time display (preferably with 1" to 3" high digits and preferably white, blue, or at least not-red) that can be controlled from a PC USB port? Basically, I want something that lets me run software on the PC to update the display when the minute changes. (Something that can also be powered off the same port would be ideal, but isn't strictly necessary.)

I'm not adverse to adding a MCU to the mix and/or scavenging a display from some off-the-shelf clock. (I suppose that, with enough effort, I could coax an old smartphone into serving, but I'd prefer something a little more straight forward.)
 

Offline robert.rozee

  • Frequent Contributor
  • **
  • Posts: 279
  • Country: nz
Re: Simple illuminated time display that can be driven over USB?
« Reply #1 on: April 20, 2024, 02:03:01 am »
GPS module, small colour LCD screen, and a single-chip BASIC computer:

https://geoffg.net/SuperClock.html

personally, i'd put a small toggle switch on the back to select daylight savings option, you only need to flip it twice a year.


cheers,
rob   :-)
 

Offline PCB.Wiz

  • Super Contributor
  • ***
  • Posts: 1555
  • Country: au
Re: Simple illuminated time display that can be driven over USB?
« Reply #2 on: April 20, 2024, 03:40:36 am »
Is there a modest-sized (at least 3"×1" but not larger than 18"×5") OLED screen that I can control from a PC USB port from userland software, but not as an X/Wayland display? Or is there any four-digit seven-segment (with colon, please!) time display (preferably with 1" to 3" high digits and preferably white, blue, or at least not-red) that can be controlled from a PC USB port?

I recently went looking for a largish 7-segment display, with properly proportioned digits.
There are not many around.

This is nice and large, 30.5mm digits,  and will have very good viewing angles, but is glass and pins only, so you need to add a segment driver / board.
https://www.aliexpress.com/item/1005003087294038.html

Smaller 7-seg do exist, like this from Adafruit
https://www.adafruit.com/product/5581

and smaller ones from Aliexpress  10mm high digits.
https://www.aliexpress.com/item/1005004102385524.html
or
https://www.aliexpress.com/item/32924015493.html

or 15m high, but no colon
https://www.aliexpress.com/item/32944755027.html

I'm not adverse to adding a MCU to the mix and/or scavenging a display from some off-the-shelf clock. (I suppose that, with enough effort, I could coax an old smartphone into serving, but I'd prefer something a little more straight forward.)
The Pi-PICO may be the best building block with a OLED or TFT ?

eg This OLED is 77 x 19mm  active area, 256x64 pixels.
https://www.aliexpress.com/item/1005006051449911.html


There are wifi ready clocks
https://www.aliexpress.com/item/1005005609244308.html
but it's unclear if they are properly global in timezone handling ?

Maybe this one does ? 1.2" displays
https://www.aliexpress.com/item/1005005430295742.html
« Last Edit: April 20, 2024, 04:16:03 am by PCB.Wiz »
 

Offline sparkydogTopic starter

  • Regular Contributor
  • *
  • Posts: 234
  • Country: us
Re: Simple illuminated time display that can be driven over USB?
« Reply #3 on: April 22, 2024, 09:19:30 pm »
GPS module, small colour LCD screen, and a single-chip BASIC computer:

https://geoffg.net/SuperClock.html

personally, i'd put a small toggle switch on the back to select daylight savings option, you only need to flip it twice a year.

The problem with a flip-switch is that I have to flip it. That means the clock is going to be wrong when I wake up after a time change, which is the most important time for it to be right. (Also, how do GPS-based clocks account for leap seconds? Are they just off by a few seconds? Do they use a manual offset?)

Also, I'm really looking for something that doesn't involve blocking light. 🙂 There are plenty of LCD screens floating around if I wanted to go that route. There's a reason I'm looking for OLED specifically, or for a segmented display that can light individual segments (which is to say, pretty much any such display).

The best I've seen are some 5.5" displays, but they all seem to take HDMI. (Which, okay, considering they're also 1080p... and priced accordingly...) That would be "workable" but would need something like a Pi to drive the display.

Are there MCUs that can be powered off USB and support some sort of communication over the same USB? Or would I have to use a USB-to-serial with a separate power supply to talk to an MCU from a computer?
 

Offline PCB.Wiz

  • Super Contributor
  • ***
  • Posts: 1555
  • Country: au
Re: Simple illuminated time display that can be driven over USB?
« Reply #4 on: April 22, 2024, 09:59:12 pm »

Are there MCUs that can be powered off USB and support some sort of communication over the same USB? Or would I have to use a USB-to-serial with a separate power supply to talk to an MCU from a computer?
Sure, any USB MCU can do.
You need to link their USB code, which can have varying quality…
People often use  serial bridge to skip that hassle.

Some MCU can boot using USB.

eg The pi-pico can boot from USB, and I expect has modest speed python usb support, which should be fine in your case.
 

Offline mianos

  • Contributor
  • Posts: 27
  • Country: au
Re: Simple illuminated time display that can be driven over USB?
« Reply #5 on: April 23, 2024, 12:57:02 am »
If you don't mind a few hours of work, cut and pasting from GPT, these 'yellow display' boards:


Would make a perfect clock. Good size, clear backlit display, wifi to sntp.
Usb power supply.
I have not looked much, but there is likely code for what you want.

Once you mount it you would never need to touch it again. For my own clock, I use the one built into the esp-idf and set "AEST-10AEDT,M10.1.0,M4.1.0/3".
If you wanted to get the time without ever changing the DST rules you can just scrape some other web site with known good time.


void initialize_sntp(SettingsManager& settings) {
    setenv("TZ", settings.tz.c_str(), 1);
    tzset();
    esp_sntp_setoperatingmode(SNTP_OPMODE_POLL);
    esp_sntp_setservername(0, settings.ntpServer.c_str());
    esp_sntp_init();
    ESP_LOGI(TAG, "SNTP service initialized");
    int max_retry = 200;
    while (sntp_get_sync_status() == SNTP_SYNC_STATUS_RESET && max_retry--) {
        vTaskDelay(100 / portTICK_PERIOD_MS);
    }
    if (max_retry <= 0) {
        ESP_LOGE(TAG, "Failed to synchronize NTP time");
        return; // Exit if unable to sync
    }
    time_t now = time(nullptr);
    struct tm timeinfo;
    localtime_r(&now, &timeinfo);
    ESP_LOGI("TimeTest", "Current local time and date: %d-%d-%d %d:%d:%d",
             1900 + timeinfo.tm_year, 1 + timeinfo.tm_mon, timeinfo.tm_mday,
             timeinfo.tm_hour, timeinfo.tm_min, timeinfo.tm_sec);
}
 

Offline fchk

  • Regular Contributor
  • *
  • Posts: 245
  • Country: de
Re: Simple illuminated time display that can be driven over USB?
« Reply #6 on: April 23, 2024, 05:31:10 am »
Is there a modest-sized (at least 3"×1" but not larger than 18"×5") OLED screen that I can control from a PC USB port from userland software, but not as an X/Wayland display? Or is there any four-digit seven-segment (with colon, please!) time display (preferably with 1" to 3" high digits and preferably white, blue, or at least not-red) that can be controlled from a PC USB port? Basically, I want something that lets me run software on the PC to update the display when the minute changes. (Something that can also be powered off the same port would be ideal, but isn't strictly necessary.)

https://www.mouser.com/ProductDetail/Display-Visions/EA-PLUGL128-6GTCZ?qs=UkDUCjYnTB3JUsCi7MJI3Q%3D%3D
https://www.mouser.com/datasheet/2/127/plug_seriee-1532082.pdf

OLed
Capacitive Touch
USB
GPIOs, RS232/485, SPI, I2C
easy to use ASCII commands
 

Offline sparkydogTopic starter

  • Regular Contributor
  • *
  • Posts: 234
  • Country: us
Re: Simple illuminated time display that can be driven over USB?
« Reply #7 on: April 23, 2024, 05:51:42 pm »
https://www.mouser.com/ProductDetail/Display-Visions/EA-PLUGL128-6GTCZ?qs=UkDUCjYnTB3JUsCi7MJI3Q%3D%3D
https://www.mouser.com/datasheet/2/127/plug_seriee-1532082.pdf

OLed
Capacitive Touch
USB
GPIOs, RS232/485, SPI, I2C
easy to use ASCII commands

Er... that looked interesting until I saw the price. $130? For a tiny, monochrome 128×64 display? Uh... no thanks. At that price I might as well buy a waveshare 5.5inch. Sure, I'd also need a PI or the like to drive it (or figure out how to run a second X server), but it's bigger, full color, and 1080p... for a lower price. (In fact, that plus a Pi Zero is still a lower price.)
 

Offline xvr

  • Regular Contributor
  • *
  • Posts: 168
  • Country: ie
    • LinkedIn
Re: Simple illuminated time display that can be driven over USB?
« Reply #8 on: April 24, 2024, 10:33:16 am »
> $130? For a tiny, monochrome 128×64 display?

This is not only display. This is complete HMI (Human Machine Interface) module. But $130 a little out of bounds :)

Here https://nextion.aliexpress.com/store/4579011 will be cheaper (and better)

 

Offline Gyro

  • Super Contributor
  • ***
  • Posts: 9512
  • Country: gb
Re: Simple illuminated time display that can be driven over USB?
« Reply #9 on: April 24, 2024, 10:53:59 am »
I know it's not self illuminated but the epaper display has decent contrast and it wouldn't be hard to make a nice stand with front illumination. You could probably pick up a Kindle keyboard for little money these days and constantly USB power it. Timekeeping from the web over wifi.

Just a thought anyway - rather more of an interesting conversation piece than a basic clock...  https://www.instructables.com/Literary-Clock-Made-From-E-reader/

There's also a digital version for a jailbroken paperwhite (self illuminated). Make sure the firmware version can be jailbroken.... https://github.com/mattzzw/kindle-clock
Best Regards, Chris
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf