This commit is contained in:
Skylar Grant 2024-12-25 13:37:18 -05:00
parent 904eca0561
commit 7a1727417a

View File

@ -1,7 +1,7 @@
import { Communicator, State } from './HestiaClasses.js'; import { Communicator, State } from './HestiaClasses.js';
const config = { const config = {
"mqtt": { "mqtt": {
"address": "ws://192.168.0.12", "address": "ws://10.0.0.248",
"username": "hestia", "username": "hestia",
"password": "hestia", "password": "hestia",
"port": 9001, "port": 9001,
@ -27,11 +27,18 @@ const config = {
"medium-high": 875, "medium-high": 875,
"high": 1000, "high": 1000,
"reverse": { "reverse": {
"500": "Low", "500": "Low", // 0.25
"625": "Medium-Low", "625": "Medium-Low", // 0.3125
"750": "Medium", "750": "Medium", // 0.375
"875": "Medium-High", "875": "Medium-High", // 0.4375
"1000": "High", "1000": "High", // 0.5
},
"percentages": {
"low": 0.25,
"medium-low": 0.3125,
"medium": 0.375,
"medium-high": 0.4375,
"high": 0.5,
} }
} }
}; };