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
| set -e | |
| set -u | |
| __usage=" | |
| $0 | |
| OpenWRT DDNS updater ('ddns-scripts') script for the Porkbun API. | |
| The script has been extended to support running it directly (eg. via cron) without having to install the \`ddns-scripts\` opkg package. | |
| Suggested script path: /usr/bin/ddns-update-porkbun.sh |
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/python | |
| # | |
| # Simple relay control for the Denkovi USB Relay Module 4 Channels, for Home Automation - v2 | |
| # http://denkovi.com/usb-relay-board-four-channels-for-home-automation-v2 | |
| # | |
| # Better tools are offered on http://denkovi.com but they need an internet | |
| # connection, and are not open source. | |
| # | |
| __author__ = "Martin Roth" |