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';
const config = {
"mqtt": {
"address": "ws://192.168.0.12",
"address": "ws://10.0.0.248",
"username": "hestia",
"password": "hestia",
"port": 9001,
@ -27,11 +27,18 @@ const config = {
"medium-high": 875,
"high": 1000,
"reverse": {
"500": "Low",
"625": "Medium-Low",
"750": "Medium",
"875": "Medium-High",
"1000": "High",
"500": "Low", // 0.25
"625": "Medium-Low", // 0.3125
"750": "Medium", // 0.375
"875": "Medium-High", // 0.4375
"1000": "High", // 0.5
},
"percentages": {
"low": 0.25,
"medium-low": 0.3125,
"medium": 0.375,
"medium-high": 0.4375,
"high": 0.5,
}
}
};