Nest ePaper Signage

From Hackstrich
Revision as of 14:27, 24 October 2020 by SarahEmm (talk | contribs)

Project Status

All signs are installed and fully functional as of October 2020.

Project Overview

I wanted a display of calendar events on our wall, and started this project to accomplish this. In the end it resulted in a system of 4 types of ePaper signs around the house displaying various pieces of information.

System Requirements

  • Off the shelf hardware available
    • I wanted to get the system completed and in use quickly, rather than having to iterate on a hardware design before I could even start on the software side.
  • Wireless data transmission
    • I didn't want to have to run new cables around the house to drive data to the signs, and we don't have Ethernet or any other data running around the house currently.
  • Able to run on battery power for 1 month or more at a time
    • Some of the signs are in places where running power to them would be a problem.
    • Even for the signs that are near power, things look nicer without extra wires, and using up outlets isn't ideal.

Hardware Evaluated

The battery requirement pretty much limited my options to ePaper, as LCD displays generally required being plugged in due to the power requirements over weeks or months. I looked at several ePaper-based options before settling on one.

  • Generic Aliexpress ePaper Shelf Price Displays
    • Pros
      • Inexpensive
    • Cons
      • No open protocol or API in most cases, just software to push new prices out from an Excel spreadsheet or similar.
      • Tend to only be available in very small sizes
      • Air protocol tends to be something custom, not Zigbee or WiFi or anything
  • Joan meeting room displays
    • Pros
      • 3 month battery life
      • Touchscreen device
      • WiFi communications
    • Cons
      • Display starts at $549 which is more than I was looking to spend on one display.
      • Monthly plan required to display custom content, which starts at $21 per month per display.
  • Advantech ePaper Display Devices
    • Pros
      • Nice looking displays in a variety of sizes
      • Buttons on several of the displays
      • 802.15.4 communications
    • Cons
      • Larger sizes of display are "Coming Soon"
      • Protocol is proprietary and requires the Advantech hub device which starts at $720
  • WaveShare NFC Displays
    • Pros
      • No battery required, powered by NFC from the device performing an update
    • Cons
      • Only updates when an NFC device is held up to the unit, can't update on-demand.
  • SyncSign ePaper Displays
    • Pros
      • Least expensive displays of any of the options, especially for smaller sizes ($35 for 2.9", $99 for 4.2", $299 for 7.5")
      • Hub is also inexpensive ($70) and uses Zigbee for hub to display communications
      • Open cloud API (and SDK to run code on the hub itself) to draw custom content on the displays
      • Battery life averaging 1 year with signs set to poll every 10 seconds and getting 7 updates a day pushed
      • 4.2" sign has 4 buttons on it
      • 2.9" and 7.5" displays are three-colour (black/white/red now and black/white/yellow coming soon)
      • Hub also supports connecting Zigbee sensors to monitor temperature, humidity, light, occupancy, etc.
    • Cons
      • Relatively unknown company, unsure if they'll be around long-term
      • Build quality feels cheap initially, though once mounted on the wall they feel a lot better

Project Details

Initially the project was just going to be a calendar that auto-updated to display upcoming events, but once I found the hardware system I wanted to use I thought of a few more uses I wanted to try out. In the end the first deployment was 3 signs, then a second deployment added a 4th type of sign (Dog Food) and a second "copy" of the Weather sign in a different area of the house, displaying the same content as the original one.

Signs

  • Calendar - A 4.2" square sign that displays the events coming up on the current day, or the next day if it's later in the day.
  • Alert - A 2.9" rectangular sign on the fridge that displays any alerts from the home automation system, or the current date if no alerts exist at present.
  • Weather - A 2.9" rectangular sign that displays the current weather type, temperature, and humidity, and what weather is coming up in the near future.
  • Dog Food - A 2.9" rectangular sign in the kitchen that displays which food and medication each dog needs next. This one was added in the second phase of the project.

Calendar

The Calendar sign is a 4.2" display with 4 buttons underneath, three of which are currently in use. The sign displays the current date at the top, and lists the events of the day (pulled from our Google calendars via their API) under that. At 8pm each day, the display switches to show the events for the next day, so that we can start planning the next morning out.

Alert

The Alert sign is a 2.9" display, stuck to our fridge with a magnet (which sticks through the plastic case to the CR2032 batteries inside the display). This sign displays any alerts currently active in our home automation system (which runs openHAB), which so far includes:

  • HVAC alerts - filter change required, A/C or heating failure
  • IT alerts - UPS problems, low toner or low paper level in the printer, unreachable servers or problems on servers
  • Battery alerts - Low battery in our deadbolt, smart blinds, or the signs that make up this signage system

When no alerts are active, this sign displays the current date instead.

Weather

The Weather sign is a 2.9" display, with one copy upstairs where we spend a lot of our time, and one copy downstairs by the front door. This sign is split in half, the left half displaying the current weather and the right half displaying upcoming weather. Each half is mostly identical and has an icon for current weather, the current temperature, and the current humidity level. The weather icon changes to red if there is precipitation either currently or in the forecast (depending on which half of the display), and the temperature and humidity change to red if they are at more extreme levels where we would want to prepare for them. This display uses the Climacell API to get its weather information, which is free for the number of queries per day that this system ends up using. This display is a little different than the others in that it's not updated on a specific schedule, as weather changes in less predictable ways. Various factors cause the system to decide when to update it, based on whether it thinks we'll care about the difference between the stale displayed data and the current conditions. There's a balancing act here between updating too often which would run the battery down quicker, and not updating often enough which would end up displaying out of date information that's not useful.

Dog Food

The Dog Food sign is a 2.9" display which displays what food and medication each of our dogs needs to be given next. The information is stored in a YAML file, and the sign updates itself between each meal so that it's always displaying the information required when we're preparing their food. Medication is in red and food is in black, which helps remind us when medication is required.

Images