Add changing fan position for ac #97 #108

This commit is contained in:
Andre Basche 2023-10-03 01:49:24 +02:00
parent 0e3d917ed1
commit 08fb9cb5b9
24 changed files with 498 additions and 2 deletions

View file

@ -264,3 +264,21 @@ STAIN_TYPES: dict[int, str] = {
25: "chili_sauce",
26: "fruit",
}
AC_POSITION_HORIZONTAL = {
0: "position_1",
3: "position_2",
4: "position_3",
5: "position_4",
6: "position_5",
7: "swing",
}
AC_POSITION_VERTICAL = {
2: "position_1",
4: "position_2",
5: "position_3",
6: "position_4",
7: "position_5",
8: "swing",
}