Last tested on: Raspbian Buster
Add the following snippet to /boot/config.txt:
# Adafruit PiTFT 2.8"
dtoverlay=pitft28-resistive,speed=64000000,fps=30
| #!/usr/bin/env bash | |
| # Show information about IKEA Tradfri devices firmware from the official IKEA servers | |
| # script by github.com/hhromic | |
| # optional filter | |
| declare -r FILTER=$1 | |
| # URLs for firmware channels | |
| declare -r -A CHANNEL_URLS=( | |
| [CURRENT]=http://fw.ota.homesmart.ikea.net/feed/version_info.json |
| #!/usr/bin/env bash | |
| # Mirror a git repository into another | |
| # script by github.com/hhromic | |
| # origin git repository | |
| declare -r ORIGIN="<<your origin git repository here>>" | |
| # destination git repository (mirror) | |
| declare -r MIRROR="<<your destination (mirror) git repository here>>" |