Anyone looked into using Electronic Price Tag screens with HA?

Received mime yesterday. Very cool . Custom integration in Home Assistant is neat

Screen updates are very slooooooW so you cannot use it as a clock , Calendar fine. Screen updates via the HA integration are text based . No GUI screen updates via a service call

The openEpaper access point however has a very good interface crammed onto an ESP32

Builtin calendar , QRCode and Weather are very good just a click to setup and will work without Home Assistant

1 Like

wow, nice find.

I had no idea of the webinterface on the AP. Didnt even think about it. Its really nice indeed.

Mine is on order. I’m happy I got in before it went out of stock. I got the pre built kit and a mixture of the eInk sized screens.

I’m trying to get familiar with the onboarding experience before I receive the equipment. I can’t find any docs though on what to do with the Mini-AP v3 out of the box.

How do I get it onto my WiFi? Does anyone know if it supports 5GHz WiFi or will it be going on my 2.4GHz dedicated network?

Thanks!

it is based on an ESP32, so 2.4 GHz only

The instructions will be on the AP display when you turn it on. It quite straight forward. The display will ask you to connect to its Wifi (so the AP will create a hotspot at first). Once you do that, you can then go to the webinterface (the address will also be on the display).

In the webinterface you can configure it to connect to your Wifi. Once that is done, reboot the AP and it will be on your wifi.

Then install the HA integration, add the IP of the AP (which will also be displayed on the AP) and you are set to go.

The most difficult part of the whole setup was actually to understand how to get the batteries out of the displays. But the back is just clicked on, so you can just take it off with a bit of force. Oh yeah and have a paperclip or a bit of wire ready. You need to short the battery contacts for it to reboot.

4 Likes

Used This trick to ensure the Tags boot correctly

1 Like

If you have some tags and an access point, you might also like my script/automation to remind me which bins go out on each day …

2 Likes

There’s some info on the FAQ on the OEPL Wiki that covers this.

Blockquote

Does OpenEpaperLink operate over ZigBee? / Can I use my existing ZigBee stick as an Access Point?

  • OpenEpaperLink employs IEEE 802.15.4 packets for transport, much like Zigbee. However, OpenEpaperLink is an entirely distinct protocol. The protocol itself is intentionally basic due to the inherent limitations of the tags. These tags possess minimal CPU power, necessitating a conservative use of the radio to extend battery life. In contrast, Zigbee is a considerably more complex protocol, rendering it unsuitable for the capabilities of these tags.

In theory, it’s possible to reflash a ZigBee coordinator with firmware that enables its use in conjunction with a Python script, which would replace the ESP component of the conventional Access Point. However, you will lose the Zigbee functionality of the coordinator.

Blockquote

1 Like

Have created a Dashboard to display the tag images , to help in editing and amending tags

1 Like

Does anyone know if there is something like the openepaperlink mini ap v3 available in Europe?
Not sure I want to go down the DIY road…

My package arrived from NL! It took just over a week to USA. I can’t wait to get going on the implementation.

3 Likes

Have fun :).

I did notice after using it now for some time that the refresh will drains the battery, so I am now on a refresh every half hour.

Still remains a very cool addition to my home automation.

service: open_epaper_link.lines4
data:
  line1: " Guest Wi-Fi:"
  line2: "Family Guest "
  line3: " Voucher Code: "
  line4: "01234-56789"
  border: r
  format1: lbbw
  format2: mrrw
  format3: lbbw
  format4: mrrw
target:
  entity_id: open_epaper_link.000002827b92xxxx
1 Like

The mini ap v3 in your link is shipped from The Netherlands. Only not in stock at the moment.

1 Like

How / where to I change the check in time?

Thanks!

I dont understand your question. I just have an automation running in HA that triggers every half hour. This is what I use:

alias: Epaper
description: ""
trigger:
  - platform: time_pattern
    minutes: /30
condition:
  - condition: time
    after: "05:00:00"
    before: "23:00:00"
    weekday:
      - sat
      - fri
      - thu
      - wed
      - tue
      - mon
      - sun
action:
  - service: open_epaper_link.lines4
    data:
      line1: >-
        {{ states('sensor.date') | string }}   {{ states('sensor.time') | string
        }}
      line2: >-
        Z: {{as_timestamp(states.sun.sun.attributes.next_rising) |
        timestamp_custom(" %H:%M") | string }}/{{
        as_timestamp(states.sun.sun.attributes.next_setting) |
        timestamp_custom(" %H:%M") | string }}
      line3: >-
        N: {{ states('sensor.openweathermap_condition') | string }}/{{
        states('sensor.openweathermap_feels_like_temperature') | string }}c
      line4: >-
        V: {{ states('sensor.openweathermap_forecast_condition') | string }}/{{
        states('sensor.openweathermap_forecast_precipitation_probability') |
        string }}%/{{ states('sensor.openweathermap_forecast_temperature') |
        string }}c
      border: r
      format1: rbrw
      format2: lwrb
      format3: lwrb
      format4: lwrb
    target:
      entity_id: open_epaper_link.00000282.........
    enabled: true
mode: single

If you want to make it with a QR code, you could use this python script I created: J-o-h-n-M/ePaperImageGenerator: generates images for the 2.9 inch epaper displays (github.com)

It works for the 2.9 inch displays

1 Like

Oh I see. I thought you were updating how often the epaper display checks in with home base.

I’ve got an automation that refreshes the epaper when my Guest Wi-Fi code changes. That might only be monthly.