-
Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Geekworm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:12, 7 December 2023 50.4.166.201 talk performed unknown action "comments/add" on X715 Software (Seems to work with this code: #!/usr/bin/python from gpiozero import PWMLED import time try: servo = 13 fan = PWMLED(servo) while(1): #get CPU temp file = open("/sys/class/thermal/thermal_zone0/temp") temp = float(file.read()) / 1000.00 temp = float('%.2f' % temp) file.close() if(temp > 35): fan.value = 0.4 if(temp > 40): fan.value = 0.5 if(temp > 50):...)