This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Creates patched OpenWrt firmware for TP-Link EAP610-Outdoor v1.2 **UNTESTED** | |
| # Author [email protected] script version 1.0 | |
| # Fixes two issues that prevent stock OpenWrt from flashing: | |
| # 1. Adds |TS1 suffix to support-list (required by TSLS=TS1 devices) | |
| # 2. Sets AddiHardwareVer=2 (required by hardware revision 2 devices) | |
| $ErrorActionPreference = "Stop" | |
| [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
| if (-not (Get-Command python -ErrorAction SilentlyContinue)) { Write-Error "Please install Python first"; exit 1 } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Creates patched OpenWrt firmware for TP-Link EAP610-Outdoor v1.2 | |
| # Author: [email protected] script ver 1.0 | |
| # Fixes two issues that prevent stock OpenWrt from flashing: | |
| # 1. Adds |TS1 suffix to support-list (required by TSLS=TS1 devices) | |
| # 2. Sets AddiHardwareVer=2 (required by hardware revision 2 devices) | |
| set -e | |
| command -v curl &>/dev/null || { echo "Please install curl first"; exit 1; } | |
| command -v python3 &>/dev/null || { echo "Please install python3 first"; exit 1; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| '''A program for manipulating tplink2022 images. | |
| Original: 2022-08-07 by robimarko@gmail.com | |
| ------------------------ | |
| A tplink2022 is an image format encountered on TP-Link devices around the year | |
| 2022. This was seen at least on the EAP610-Outdoor. The format is a container | |
| for a rootfs, and has optional fields for the "software" version. It also | |
| requires a "support" string that describes the list of compatible devices. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| folders_to_fix=() | |
| #-----------USER EDITABLE SETTINGS---------------------------- | |
| #Edit these lines, one for each of your plex root folders. If you only have one plex folder, then you only need one line. | |
| folders_to_fix+=("/mnt/2tb/dropbox/videos/plex") | |
| folders_to_fix+=("/mnt/4tb/plex") | |
| folders_to_fix+=("/mnt/12tb/4kmovies") | |
| #Edit this line if you need to change the Group that plex and your user account use to access these folders |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Zigbee/ZWave battery sensor or switch has gone offline BETA TEST | |
| description: DEPRECATED Report any Zigbee or ZWave device, or any type of switch, as gone offline. BETA TEST | |
| #based on the work of Sybx @ https://community.home-assistant.io/t/low-battery-level-detection-notification-for-all-battery-sensors/258664 | |
| domain: automation | |
| input: | |
| time: | |
| name: Time to test on | |
| description: Test is run at configured time | |
| default: '10:00:00' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Report offline zigbee/zwave/battery/smart plug devices | |
| description: Works with Smart Plugs, ZWave, Zigbee etc (Works with ZHA & Z2M) | |
| #By Tahutipai 2024-02-21 | |
| #Originally Based on the work of Sybx @ https://community.home-assistant.io/t/low-battery-level-detection-notification-for-all-battery-sensors/258664 | |
| #Note: This has been upgraded to report only the Device that is offline, not multiple individual sensors within one Device | |
| domain: automation | |
| input: | |
| time: | |
| name: Time to test on |