fix: fan curve, lcd firmware, NICs, and README.md

* Make improvements to README.md
* Do some fan curve adjustments to try and reduce fan noise
* add dfu-util so ulcmd can flash the touch screen if there's a firmware version mismatch
* Move NIC management away from cloud-init to OMV
* Ensure OMV has hostname set correctly
This commit is contained in:
Chris Blake 2024-05-27 12:30:17 -05:00
parent 9c08f287fc
commit c259d223bf
9 changed files with 75 additions and 25 deletions

View file

@ -79,9 +79,13 @@ def __calculate_fan_speed(temp):
fanspeed = 25
case _ if temp >= 40 and temp < 50:
fanspeed = 75
case _ if temp >= 50 and temp < 60:
fanspeed = 150
case _ if temp >= 60 and temp < 70:
case _ if temp >= 50 and temp < 55:
fanspeed = 100
case _ if temp >= 55 and temp < 60:
fanspeed = 130
case _ if temp >= 60 and temp < 65:
fanspeed = 160
case _ if temp >= 65 and temp < 70:
fanspeed = 200
case _:
fanspeed = 255