Initialize Git Repository: 'Pironman5'
Pironman 5 Daemon / Pironman 5 Daemon (arm64, cicd.any, bookworm trixie noble, main) (push) Successful in 11s

This commit is contained in:
Cantibra
2026-05-04 21:21:53 +02:00
commit 0925a0eb74
17 changed files with 1006 additions and 0 deletions
+158
View File
@@ -0,0 +1,158 @@
#
# Pironman 5 Configuration
#
#
# --- Daemon
#
# DEBUG_LEVEL
# Debug Level:
# - debug
# - info
# - warning
# - error
# - critical
# Default: 'info'
DEBUG_LEVEL='info'
#
# --- OLED Display
#
# OLED_ENABLED
# OLED enable
# 'true' / 'false'
# Default: 'true'
OLED_ENABLED='true'
# OLED_ROTATION
# Set to rotate OLED display
# '0' / '180'
# Default: '0'
OLED_ROTATION='0'
# OLED_DISK
# Set the displayed hard drive
# in the OLED display
# 'total' / '(devicepath)'
# Default: 'total'
OLED_DISK='total'
# OLED_NETWORK_INTERFACE
# Set the displayed network
# interface in the OLED display
# 'all' / '(interface)'
# Default: 'all'
OLED_NETWORK_INTERFACE='all'
# OLED_SLEEP_TIMEOUT
# Set the timeout in seconds for
# when the OLED display goes to sleep
# - 0: Inifinite
# - 1<: Seconds
#
# Default: '10'
OLED_SLEEP_TIMEOUT='10'
#
# --- RGB
#
# RGB_ENABLED
# RGB enable
# 'true' / 'false'
# Default: 'true'
RGB_ENABLED='true'
# RGB_LED_COUNT
# RGB LED count
# '1' - '4'
# Default: '4'
RGB_LED_COUNT='4'
# RGB_COLOR
# RGB color
# hex format without '#'
# Default: '0a1aff'
RGB_COLOR='0a1aff'
# RGB_BRIGHTNESS
# RGB brightness
# '0' - '100'
# Default: '50'
RGB_BRIGHTNESS='50'
# RGB_SPEED
# RGB speed
# '0' - '100'
# Default: '50'
RGB_SPEED='50'
# RGB_STYLE
# RGB light modes:
# - solid
# - breathing
# - flow
# - flow_reverse
# - rainbow
# - rainbow_reverse
# - hue_cycle
# Default: 'breathing'
RGB_STYLE='breathing'
#
# --- Temperature
#
# TEMP_UNIT
# Temperature unit
# 'C' (Celsius) / 'F' (Fahrenheit)
# Default: 'C'
TEMP_UNIT='C'
#
# --- FAN
#
# FAN_MODE
# GPIO fan modes:
# - 0: Always On
# - 1: Performance
# - 2: Cool
# - 3: Balanced
# - 4: Quiet
# Default: '0'
FAN_MODE='0'
# FAN_GPIO_PIN
# GPIO fan pin
# Default: '6'
FAN_GPIO_PIN='6'
#
# --- Vibration Switch
#
# VIBRATION_SWITCH_PIN
# Vibration Switch pin
# Default: '26'
VIBRATION_SWITCH_PIN='26'
# VIBRATION_SWITCH_PULL_UP
# Vibration Switch enable
# 'true' / 'false'
# Default: 'true'
VIBRATION_SWITCH_PULL_UP='true'