Skip to content

Commit

Permalink
Fixed unprocessable characters in json
Browse files Browse the repository at this point in the history
  • Loading branch information
gskjold committed Dec 5, 2024
1 parent 43e2b24 commit 0947d33
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion lib/HomeAssistantMqttHandler/json/ha1.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"P" : %d
"P" : %lu
}
8 changes: 4 additions & 4 deletions lib/HomeAssistantMqttHandler/json/ha3.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"lv" : "%s",
"id" : "%s",
"type" : "%s",
"P" : %d,
"Q" : %d,
"PO" : %d,
"QO" : %d,
"P" : %lu,
"Q" : %lu,
"PO" : %lu,
"QO" : %lu,
"I1" : %.2f,
"I2" : %.2f,
"I3" : %.2f,
Expand Down
20 changes: 10 additions & 10 deletions lib/HomeAssistantMqttHandler/json/ha4.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"lv" : "%s",
"id" : "%s",
"type" : "%s",
"P" : %d,
"P1" : %d,
"P2" : %d,
"P3" : %d,
"Q" : %d,
"PO" : %d,
"PO1" : %d,
"PO2" : %d,
"PO3" : %d,
"QO" : %d,
"P" : %lu,
"P1" : %lu,
"P2" : %lu,
"P3" : %lu,
"Q" : %lu,
"PO" : %lu,
"PO1" : %lu,
"PO2" : %lu,
"PO3" : %lu,
"QO" : %lu,
"I1" : %.2f,
"I2" : %.2f,
"I3" : %.2f,
Expand Down

0 comments on commit 0947d33

Please sign in to comment.