[vesync] Core 300S Updates (#17842)

* [vesync] Core 300S Updates

Signed-off-by: David Goodyear <david.goodyear@gmail.com>
Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
This commit is contained in:
David Goodyear 2024-12-05 19:19:36 +00:00 committed by Ciprian Pascu
parent 744b13cd86
commit 7260b0ca31
2 changed files with 3 additions and 4 deletions

View File

@ -71,8 +71,8 @@ Channel names in **bold** are read/write, everything else is read-only
| **enabled** | Switch | Whether the hardware device is enabled (Switched on) | 131S, 600S, 400S, 300S, Vital 100S, Vital 200S | [ON, OFF] | |
| **childLock** | Switch | Whether the child lock (display lock is enabled) | 600S, 400S, 300S, Vital 100S, Vital 200S | [ON, OFF] | |
| **display** | Switch | Whether the display is enabled (display is shown) | 131S, 600S, 400S, 300S, Vital 100S, Vital 200S | [ON, OFF] | |
| **fanMode** | String | The operation mode of the fan | 131S, 600S, 400S, Vital 100S | [auto, manual, sleep] | |
| **fanMode** | String | The operation mode of the fan | 200S, 300S, | [manual, sleep] | |
| **fanMode** | String | The operation mode of the fan | 131S, 600S, 400S, 300S, Vital 100S | [auto, manual, sleep] | |
| **fanMode** | String | The operation mode of the fan | 200S, | [manual, sleep] | |
| **fanMode** | String | The operation mode of the fan | Vital 200S | [auto, manual, sleep, pet] | |
| **manualFanSpeed** | Number:Dimensionless | The speed of the fan when in manual mode | 600S, 400S | [1...4] | |
| **manualFanSpeed** | Number:Dimensionless | The speed of the fan when in manual mode | 131S, 300S | [1...3] | |

View File

@ -97,8 +97,7 @@ public class VeSyncDeviceAirPurifierHandler extends VeSyncBaseDeviceHandler {
NIGHT_LIGHTS);
public static final VeSyncDevicePurifierMetadata CORE300S = new VeSyncDevicePurifierMetadata(1,
DEV_FAMILY_CORE_300S, List.of("C301S", "C302S"), List.of("Core300S"), FAN_MODES_MAN_SLEEP, 1, 3,
NIGHT_LIGHTS);
DEV_FAMILY_CORE_300S, List.of("C301S", "C302S"), List.of("Core300S"), FAN_MODES_NO_PET, 1, 3, NIGHT_LIGHTS);
public static final VeSyncDevicePurifierMetadata CORE400S = new VeSyncDevicePurifierMetadata(1,
DEV_FAMILY_CORE_400S, List.of("C401S"), List.of("Core400S"), FAN_MODES_NO_PET, 1, 4, NO_NIGHT_LIGHTS);