Skip to content

Instantly share code, notes, and snippets.

@Calimerorulez
Calimerorulez / 1-Description.md
Created November 8, 2023 11:48 — forked from krissen/1-Description.md
Weather on a 1.54" epaper tag through Home assistant and OpenEPaperLink

I've long been searching for a simple display to show various things on HA. I wanted it to be cordless with wireless updates, small in size, and without extra sensors since the values to be displayed are already in HA. It's been hard to find something that matches all that, at a reasonable price.

I just stumbled upon a Reddit thread (since removed), where someone recommended OpenEPaperLink and this seller on Tindie. An access point for $35. Five screens (2.9" or 1.54") for $25; a 4.2" for $20. (It seems many have been looking for the same thing. The seller quickly ran out of stock, but more is on the way; more info at the link above.)

There's a HA integration via HACS.

You'll find my example of an automation that updates humidity and temperature here.

It was easy to get

@Calimerorulez
Calimerorulez / frigate_notification_cast.yaml
Last active November 7, 2021 22:09 — forked from hunterjm/frigate_notification.yaml
Frigate Notification Blueprint
blueprint:
name: Frigate Notification Cast
description: |
## Frigate Notification Cast
This blueprint will send a notification to your device when a Frigate event for the selected camera is fired. The notification will initially include the thumbnail of the detection, but will update to include actionable notifications allowing you to view the saved clip/snapshot when available, or silence the notification for a configurable amount of time.
With this blueprint, you may send the notification to multiple devices by leaving "Device" blank and instead use a [notification group][1].
### Required entities:
[Unit]
Description=UNVR Cams
After=network.target
[Service]
ExecStart=bash /usr/local/bin/unvr-cams.sh
User=pi
ExecStop=/usr/bin/killall omxplayer
[Install]
#!/bin/bash
killall omxplayer.bin || true
# A four camera grid on a 1920x1080 monitor.
screen -dmS topleft sh -c 'omxplayer --win "0 0 960 540" -n -1 --avdict rtsp_transport:tcp "YOUR_RTSP_FEED"; exec bash'
screen -dmS topright sh -c 'omxplayer --win "960 0 1920 540" -n -1 --avdict rtsp_transport:tcp "rtsp://YOUR_RTSP_FEED"; exec bash'
#!/bin/bash
## Build Script by Caio Oliveira aka Caio99BR <caiooliveirafarias0@gmail.com>
# For Open-PS2-Loader
## Thanks to:
# - izdubar@psx-scene and jimmikaelkael@psx-scene
# <http://psx-scene.com/forums/f150/%5Blinux%5D-opl-compile-guides-63749/>
# - Bat Rastard@psx-scene and doctorxyz@psx-scene
# <http://psx-scene.com/forums/f150/2015-linux-mint-vm-creation-opl-compiling-guide-ps2sdk-127047/index3.html#post1169435>
# - and a lot of people around internet :)