@@ -30,7 +30,7 @@ pyvesync is a library to manage VeSync compatible [smart home devices](#supporte
3030 - [ JSON Output for Air Purifier] ( #json-output-for-air-purifier )
3131 - [ JSON Output for 300S Humidifier] ( #json-output-for-300s-humidifier )
3232 - [ JSON Output for Core200S Purifier] ( #json-output-for-core200s-purifier )
33- - [ JSON Output for Core400S Purifier] ( #json-output-for-core400s -purifier )
33+ - [ JSON Output for 400S Purifier] ( #json-output-for-400s -purifier )
3434- [ Notes] ( #notes )
3535- [ Feature Requests] ( #feature-requests )
3636
@@ -52,7 +52,7 @@ pip install pyvesync
52526 . Etekcity Smart WiFi Light Switch (model ESWL01)
53537 . Levoit Smart Wifi Air Purifier (LV-PUR131S)
54548 . Levoit Smart True HEPA Air Purifier (Core200S)
55- 9 . Levoit Air Purifier for Home Large Room (Core400S)
55+ 9 . Levoit Air Purifier for Home Large Room (Core300S/ Core400S)
565610 . Etekcity Soft White Dimmable Smart Bulb (ESL100)
575711 . Etekcity Cool to Soft White Tunable Dimmable Bulb (ESL100CW)
585812 . Etekcity Wifi Dimmer Switch (ESD16)
@@ -229,7 +229,7 @@ The rectangular smart switch model supports some additional functionality on top
229229The details dictionary contains all device status details
230230
231231``` python
232- VeSyncHumid300S .details = {
232+ VeSyncHumid200S300S .details = {
233233 ' humidity' : 80 , # percent humidity in room
234234 ' mist_virtual_level' : 0 , # Level of mist output 1 - 9
235235 ' mist_level' : 0 ,
@@ -246,28 +246,28 @@ VeSyncHumid300S.details = {
246246The configuration dictionary shows current settings
247247
248248``` python
249- VeSyncHumid300S .config = {
249+ VeSyncHumid200S300S .config = {
250250 ' auto_target_humidity' : 80 , # percent humidity in room
251251 ' display' : True , # Display on/off
252252 ' automatic_stop' : False
253253 }
254254```
255255
256- ` VeSyncHumid300S .automatic_stop_on()` Set humidifier to stop at set humidity
256+ ` VeSyncHumid200S300S .automatic_stop_on()` Set humidifier to stop at set humidity
257257
258- ` VeSyncHumid300S .automatic_stop_off` Set humidifier to run continuously
258+ ` VeSyncHumid200S300S .automatic_stop_off` Set humidifier to run continuously
259259
260- ` VeSyncHumid300S .turn_on_display()` Turn display on
260+ ` VeSyncHumid200S300S .turn_on_display()` Turn display on
261261
262- ` VeSyncHumid300S .turn_off_display()` Turn display off
262+ ` VeSyncHumid200S300S .turn_off_display()` Turn display off
263263
264- ` VeSyncHumid300S .set_humidity(30)` Set humidity between 30 and 80 percent
264+ ` VeSyncHumid200S300S .set_humidity(30)` Set humidity between 30 and 80 percent
265265
266- ` VeSyncHumid300S .set_night_light_brightness(50)` Set nightlight brightness between 1 and 100
266+ ` VeSyncHumid200S300S .set_night_light_brightness(50)` Set nightlight brightness between 1 and 100
267267
268- ` VeSyncHumid300S .set_humidity_mode('sleep')` Set humidity mode - sleep/auto
268+ ` VeSyncHumid200S300S .set_humidity_mode('sleep')` Set humidity mode - sleep/auto
269269
270- ` VeSyncHumid300S .set_mist_level(4)` Set mist output 1 - 9
270+ ` VeSyncHumid200S300S .set_mist_level(4)` Set mist output 1 - 9
271271
272272### Levoit Purifier Core200S Methods and Properties
273273
@@ -299,6 +299,8 @@ VeSyncHumid300S.config = {
299299
300300### Levoit Purifier Core300S/400S Methods and Properties
301301
302+ The core400S has a nightlight, while the Core300S does not.
303+
302304` VeSyncAir300S400S.change_fan_speed(2) ` 1|2|3|4 or call without argument to increment by one
303305
304306` VeSyncAir300S400S.child_lock_on() ` Enable child lock
@@ -327,7 +329,7 @@ VeSyncHumid300S.config = {
327329
328330` VeSyncAir300S400S.child_lock() ` - Return the state of the child lock (True=On/False=off)
329331
330- ` VeSyncAir300S400S.night_light() ` - Return the state of the night light (on/dim/off)
332+ ` VeSyncAir300S400S.night_light() ` - Return the state of the night light (on/dim/off). The 300S does not have a nightlight.
331333
332334### JSON Output API
333335
0 commit comments