cat /sys/class/thermal/cooling_device0/type
should give rpi-poe-fan
sudo vi /etc/udev/rules.d/50-rpi-fan.rules
| { | |
| "version": "1.27.1", | |
| "notes": "## [1.27.1]\n\n### Bug Fixes\n* test update flow", | |
| "pub_date": "2026-06-13T12:00:00Z", | |
| "platforms": { | |
| "windows-x86_64": { | |
| "sha256": "test", | |
| "url": "https://github.com/dvalfrid/rigstats/releases/download/v1.27.0/RIGStats_1.27.0_x64-setup.exe" | |
| } | |
| } |
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| Comment: GPGTools - https://gpgtools.org | |
| mQGiBEAQ1DURBADhg5y3w9MlSySfh/rOyS5dEUEyKuNHOibOR4a3GdoHSXUIg2Ws | |
| Y1StzN/kx2TB220rOTGFg1tiAEbrhls2zK1t93eqgfmodpx5/ZbVL6//dKFWKNwk | |
| O+gQsTOH1NRqoBnJcsIbXlJghhZ2jcdOTCyf3E4xcvhdvGV+32oujBv5IwCgsvaD | |
| 6Wr9X0B3S0PkSB9R73w1heEEAJiTAEM7Muz9RIXqoKhX08eCEEgAeteGcrVzgnQF | |
| bSmz828nsjVD38gRKha5OPWemhLo7vZuYYUCVKEDfcDUV6r6Bo/QelemC8+Ilxxc | |
| rLZU/2Lu1wVI3vb4Gd2aB8LAwKvfui4jLEjQocwhjFNFTmPlG+Q4GtMHIdPoE6En | |
| 3HjmA/4r9cCOdax0DFSpfG9abytr3Fu4ze+FkxWMZ5hkGin6GOI/QI0ExVEjqoco |
| #!/bin/bash | |
| # Fetching IP adress from joker.com | |
| # Format: <html><head><title>Current IP Check</title></head><body>Current IP Address: 88.80.167.132</body></html> | |
| function fetchIP { | |
| local _returnParam=$1 | |
| local _response=$(curl --silent https://svc.joker.com/nic/checkip) | |
| local _exit_code=$? | |
| if [ $_exit_code -ne 0 ]; then |
I hereby claim:
To claim this, I am signing this object:
| // Först behöver vi ett interface | |
| package net.valfridsson; | |
| public interface IdentityEnum<I, E extends Enum<E>> { | |
| /** | |
| * @return Hämtar ut {@link I} för {@link E} | |
| */ | |
| I getId(); |