-
-
Ugreen UPS with Unraid
Hi, I assume you are talking about UGREEN US3000 right? I have an ASRock N100M with a picopsu (12V power brick). Can anyone tell me if the US3000 will also work with custom builds?
-
Tailscale and Homeassistant no longer works with network type host
I’m also interested in this setup. Is there a solution for this problem? Could you solve it @jrtaylor93 ?
-
[SUPPORT] AlexGreenUK - Unraid Docker Templates
Just found out that the unraid template is out of date. For example ntfy is not working with this version. Please use "ghcr.io/getwud/wud:latest" as Repository to get the newest version (currently v8.0.1). https://github.com/getwud/wud/issues/631#issuecomment-2735314091
-
How can I tell the current installed version of a docker?
If it is not recommanded to use "latest" for docker containers, is there a way (maybe plugin?) to use a specific version but also get notified if there is a newer version available? I personally would also like to see the changelog if there is a new version available. Are there any plans to implement such a feature in Unraid?
-
[PLUGIN] Tasmota Power Monitor
I have 2 Smart Plugs lying around here, 1 Tasmota and 1 OpenBeken flashed on. Here are the outputs if put http://IP_OF_YOUR_DEVICE/cm?cmnd=Status%208 in the browser: OpenBeken: { "StatusSNS": { "Time": "2024-07-19T14:33:13", "ENERGY": { "Power": 12.699999, "ApparentPower": 12607.089843, "ReactivePower": 12607.083984, "Factor": 0.001007, "Voltage": 233.464630, "Current": 54.000000, "ConsumptionTotal": 483.106109, "Yesterday": 482.320281, "ConsumptionLastHour": 0.004588 } } } Tasmota: { "StatusSNS": { "Time": "2024-07-19T15:32:08", "ENERGY": { "TotalStartTime": "2024-07-19T14:34:49", "Total": 0.001, "Yesterday": 0.000, "Today": 0.001, "Power": 13, "ApparentPower": 13, "ReactivePower": 0, "Factor": 1.00, "Voltage": 233, "Current": 0.054 } } } As you can see some values are not matching. For me the OpenBeken Plug does not work at all with this Unraid Plugin... But the Tasmota Plug is working 😃
-
zwavejs2mqtt docker container pass Zwave USB dongle
Found the issue. Apparently the ZWave integration in Home Assistant is the cause. The integration can somehow not handle IP addresses. If I use the URL “ws://192.168.1.10:3000” then it doesn't work. But if I use “ws://localhost:3000” or “ws://unraid.local:3000” it is working.
-
zwavejs2mqtt docker container pass Zwave USB dongle
Hi all, I currently try to switch from Home Assistant VM to Docker. I have already switched Zigbee2MQTT to Unraid Docker, but somehow this doesnt work for ZWave JS UI. The ZWave JS UI Container is running fine, I can control all my devices from it. But somehow I can not connect the Home Assistant VM to the ZWave JS UI Unraid Container. What I did so far: - Removed old Zwave Integration in Home Assistant - Added Integration -> Z-Wave -> Z-Wave -> Uncheck "Use the Z-Wave JS Supervisor add-on" -> URL = ws://192.168.1.10:3000 (192.168.1.10 is the IP of my Unraid server) - Failed to connect Here my settings.js: { "mqtt": { "name": "zwave-js-ui", "host": "mosquitto", "port": 1883, "qos": 1, "prefix": "zwave", "reconnectPeriod": 3000, "retain": true, "clean": true, "auth": true, "username": "REDACTED", "password": "REDACTED", "disabled": true, "_ca": "", "ca": "", "_cert": "", "cert": "", "_key": "", "key": "" }, "gateway": { "type": 0, "plugins": [], "authEnabled": false, "payloadType": 0, "nodeNames": true, "hassDiscovery": false, "discoveryPrefix": "homeassistant", "logEnabled": true, "logLevel": "info", "logToFile": false, "values": [], "jobs": [], "disableChangelog": false, "notifyNewVersions": false, "versions": { "app": "9.14.5", "driver": "12.12.3", "server": "1.36.0" }, "https": false }, "zwave": { "enabled": true, "port": "/dev/serial/by-id/usb-0658_0200-if00", "allowBootloaderOnly": false, "commandsTimeout": 30, "logLevel": "debug", "rf": { "txPower": {}, "region": 0 }, "securityKeys": { "S2_Unauthenticated": "REDACTED", "S2_Authenticated": "REDACTED", "S2_AccessControl": "REDACTED", "S0_Legacy": "REDACTED" }, "securityKeysLongRange": { "S2_Authenticated": "REDACTED", "S2_AccessControl": "REDACTED" }, "deviceConfigPriorityDir": "/usr/src/app/store/config", "logEnabled": true, "logToFile": true, "maxFiles": 7, "serverEnabled": true, "serverServiceDiscoveryDisabled": false, "enableSoftReset": true, "enableStatistics": true, "serverPort": 3000, "serverHost": "192.168.1.10", "maxNodeEventsQueueSize": 100, "higherReportsTimeout": false, "disableControllerRecovery": false, "disclaimerVersion": 1 }, "backup": { "storeBackup": false, "storeCron": "0 0 * * *", "storeKeep": 7, "nvmBackup": false, "nvmBackupOnEvent": false, "nvmCron": "0 0 * * *", "nvmKeep": 7 }, "zniffer": { "enabled": false, "port": "", "logEnabled": true, "logToFile": true, "maxFiles": 7, "securityKeys": { "S2_Unauthenticated": "", "S2_Authenticated": "", "S2_AccessControl": "", "S0_Legacy": "" }, "securityKeysLongRange": { "S2_Authenticated": "", "S2_AccessControl": "" }, "convertRSSI": false }, "ui": { "darkMode": true, "navTabs": false, "compactMode": false } } Can someone help me to connect the ZWave JS UI container with Home Assistant?
-
[PLUGIN] Tasmota Power Monitor
I have no experience with unraid plugin development. But I think the file "status.php" should look something like this for EspHome: <?php $esphomepm_cfg = parse_ini_file( "/boot/config/plugins/esphomepm/esphomepm.cfg" ); $esphomepm_device_ip = isset($esphomepm_cfg['DEVICE_IP']) ? $esphomepm_cfg['DEVICE_IP'] : ""; $esphomepm_device_user = isset($esphomepm_cfg['DEVICE_USER']) ? $esphomepm_cfg['DEVICE_USER'] : ""; $esphomepm_device_pass = isset($esphomepm_cfg['DEVICE_PASS']) ? $esphomepm_cfg['DEVICE_PASS'] : ""; $esphomepm_costs_price = isset($esphomepm_cfg['COSTS_PRICE']) ? $esphomepm_cfg['COSTS_PRICE'] : "0.0"; $esphomepm_costs_unit = isset($esphomepm_cfg['COSTS_UNIT']) ? $esphomepm_cfg['COSTS_UNIT'] : "USD"; if ($esphomepm_device_ip == "") { die("esphome Device IP missing!"); } if ($esphomepm_device_user == "") { die("esphome username missing!"); } if ($esphomepm_device_pass == "") { die("esphome password missing!"); } $json = array( 'Power' => getvalue($esphomepm_device_ip,"power",$esphomepm_device_user, $esphomepm_device_pass), 'Voltage' => getvalue($esphomepm_device_ip,"voltage",$esphomepm_device_user, $esphomepm_device_pass), 'Current' => getvalue($esphomepm_device_ip,"current",$esphomepm_device_user, $esphomepm_device_pass), 'Factor' => getvalue($esphomepm_device_ip,"factor",$esphomepm_device_user, $esphomepm_device_pass), 'Energy' => getvalue($esphomepm_device_ip,"energy",$esphomepm_device_user, $esphomepm_device_pass), 'ApparentPower' => getvalue($esphomepm_device_ip,"apparent",$esphomepm_device_user, $esphomepm_device_pass), 'ReactivePower' => getvalue($esphomepm_device_ip,"reactive",$esphomepm_device_user, $esphomepm_device_pass), 'Costs_Price' => $esphomepm_costs_price, 'Costs_Unit' => $esphomepm_costs_unit ); //header('Content-Type: application/json'); echo json_encode($json); function getvalue($ip, $param, $username, $password) { $Url = "http://" . $ip . "/sensor/" . $param; $curl = curl_init($Url); curl_setopt($curl, CURLOPT_FAILONERROR, true); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_HTTPGET, true); curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); curl_setopt($curl, CURLOPT_USERPWD, $username . ":" . $password); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $resultJson = curl_exec($curl); curl_close($curl); $resultObj = json_decode($resultJson, true); $value = $resultObj->{'value'}; $value = isset($value) ? $value : "0"; return $value; } ?>
-
[PLUGIN] Tasmota Power Monitor
Thank you for this nice plugin @Flippo. I saw that you have also created a plugin for espurna. I use home assistant and my energy meter plug is flashed with esphome. Would be great I you could also write an unraid plugin for esphome 😃
-
Alte Hardware defekt, nun ASRock N100M
Danke für die hilfreichen Infos. Ich habe mir auch ein N100m geholt und habe aktuell 3x HDDs, 1x NVME SSD, 2 USB Sticks (Zigbee + ZWave) und 2x PWM Lüfter (für Festplatten und für die CPU) angeschlossen. Als Stromversorgung habe ich eine PicoPSU + 150W AliExpress Netzteil (Link zu meinem ältern Post). Nun habe ich mir gedacht da hier so viel von Leicke Netzeilen die Rede ist probiere ich mal aus ob ich den Stromverbrauch noch weiter senken kann. Habe hierfür ein LEICKE Netzteil 60W 12V 5A bei Amazon bestellt. Und tatsächlich konnte ich meinen Verbrauch um ganze 3 W senken! Hätte ich echt nicht gedacht... Bin mir aber jetzt nicht ganz sicher ob es daran liegt dass das Leicke Netzteil nur 60W hat oder weil es qualitativ hochweritger ist als das AliExpress Netzteil.
-
Asrock N100DC - Test/Messungen
Also ich habe ja auch das N100m und kann das Problem mit der ASM1166 M2 Karte bestätigen. Bei mir funktioniert die auch nicht direkt am M2 slot sondern nur über einen PCIE Adapter. Den ASM1166 habe ich auch nach der Anleitung von DataCollector geflasht. Aktuell habe ich auch eine NVME SSD am M2 slot angeschlossen, die funktioniert auch ohne Probleme. D.h. der ASM1166 Controller steckt bei mir jetzt im PCI x16 slot.
-
Asrock N100DC - Test/Messungen
Wow 5,5 W ist schon echt niedrig. Meine Pico PSU + Netzteil ist nun auch angekommen. - Rgeek pico psu 200w nas psu 4 bay 6 bay festplatte hdd netzteil (AliExpress) [Vom Aussehen schein es ein Klon von Inter-Tech 88882190 (Amazon) zu sein] - HONGPOE 12V 12,5A 150W Netzteil (AliExpress) Wenn ich nun auch nur 2 HDDs anschließe (ohne ASM1166) so komme ich auf min. 8,5 W. Mich würde interessieren ob ich noch irgendwelche BIOS Einstellungen vergessen habe oder es wirklich nur an meiner Pico PSU + Netzteil liegt. Hast du die BIOS Einstellung so wie MPC561 auf Seite 1 eingestellt oder nur die Änderungen aus deinem Screenshot? Ich habe die powertop Einstellung in die go Datei eingetragen so wie von mgutt beschrieben. Am Ende der go Datei noch folgende Zeilen hinzugefügt: setpci -s 00:1c.0 0x50.B=0x42 setpci -s 01:00.0 0x80.B=0x42 Hast du evtl. sonst noch andere Einstellungen gemacht um den Verbrauch zu senken?
- unRAID API
-
Asrock N100DC - Test/Messungen
Danke für den Hinweis, das habe ich leider übersehen. Aber ich glaube mein Hauptproblem war eher das die HDDs nicht im Spindown waren 🙈 Sorry bin leider noch ein ziemlich Anfänger in Unraid... So aber nun sieht das schon etwas besser aus. Habe mal folgendes gemessen: - Nur Mainboard (Asrock N100m + RAM): 9 W - Mainbaord + ASM1166 PCI-E Karte: 10 W - Mainboard + ASM1166 + 1 SDD + 3 HDD (diesmal Spindown 🙂) : 15-16 W Und noch eine Verständnisfrage zu den C8 States: Heißt es dass in powertop der Wert dauerhaft in C8 sein muss oder nur sporadisch? Bei mir wechselt das recht häufig, aber er erreicht C8. Hier meine powertop Werte: Und lspci:
-
Asrock N100DC - Test/Messungen
Vielen Dank für den Hinweis. Es war tatsächlich der RAM Riegel. Habe den durch Amazon austauschen lassen und nun geht’s 😃. In der Zeit habe ich mir das ganze setup noch mal durch den Kopf gehen lassen und mich nun doch für das Asrock N100M entschieden. (Ist vermutlich etwas sicherer mit 3 HDD und 1 SSD). Dort gibt es dann auch extra LEDs die anzeigen warum das Mainboard nicht hochfährt. So konnte ich direkt sehen dass es am RAM lag. Habe jetzt folgende Hardware: - Asrock N100M - Crucial 32 GB RAM (CT32G4DFD832A) - ASM1160 M.2 PCI-E key (6 Ports) - Altes ATX Netzteil aber noch 80 plus gold (be quiet BQT F1 500W) - 3x SATA HDD + 1x SATA SSD - be quiet! Pure Wings 2 80mm PWM Lüfter (für die HDDs) Dann noch die BIOS Einstellungen von Seite 1 eingestellt und den Realtek Treiber "RTL8168(B)/RTL8111(B) PCI Drivers" installiert. Nun erreiche ich auch mit powertop —auto-tune die C8 Package states. Verbrauch liegt aktuell bei ca 25W. Ist das in etwa normal für mein setup? Oder sollte der Verbrauch niedriger sein? Ich werde mir noch eine PicoPSU + 12V 150W Netzteil zulegen um das ganze noch weiter zu optimieren.
ElVit
Members
-
Joined
-
Last visited