Skip to content

Commit

Permalink
Kettle & coffee
Browse files Browse the repository at this point in the history
  • Loading branch information
Pshatsillo committed Aug 22, 2023
1 parent 1d5b3ad commit 9a496e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ org.openhab.io.yandexalice.iml
/src/main/java/org/openhab/io/yandexalice/internal/YandexAliceCredits.java
/.idea/
/licenses/
/.PVS-Studio/
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ public class YandexDevice {
public static final String DEV_SENSOR_SMOKE = "devices.types.sensor.smoke";
public static final String DEV_PET_DRINKING_FOUNTAIN = "devices.types.pet_drinking_fountain";
public static final String DEV_PET_FEEDER = "devices.types.pet_feeder";
public static final String DEV_KETTLE = "devices.types.cooking.kettle";
public static final String DEV_COFFEE_MAKER = "devices.types.cooking.coffee_maker";
public static final String DEV_OTHER = "devices.types.other";
public static final String FLOAT_AMPERAGE = "amperage";
public static final String FLOAT_BATTERY_LEVEL = "battery_level";
Expand Down Expand Up @@ -174,7 +176,8 @@ public class YandexDevice {
DEV_OPENABLE, DEV_SENSOR_OPEN, DEV_CURTAIN, DEV_THERMOSTAT, DEV_MEDIA_DEVICE, DEV_TV, DEV_TV_BOX,
DEV_RECEIVER, DEV_HUMIDIFIER, DEV_PURIFIER, DEV_VACUUM_CLEANER, DEV_WASHING_MACHINE, DEV_DISHWASHER,
DEV_IRON, DEV_SENSOR_VIBRATION, DEV_SENSOR_ILLUMINATION, DEV_SENSOR_CLIMATE, DEV_SENSOR_WATER_LEAK,
DEV_SENSOR_BUTTON, DEV_SENSOR_GAS, DEV_SENSOR_SMOKE, DEV_PET_DRINKING_FOUNTAIN, DEV_PET_FEEDER, DEV_OTHER);
DEV_SENSOR_BUTTON, DEV_SENSOR_GAS, DEV_SENSOR_SMOKE, DEV_PET_DRINKING_FOUNTAIN, DEV_PET_FEEDER, DEV_KETTLE,
DEV_COFFEE_MAKER, DEV_OTHER);
public static final Collection<String> RANGE_LIST = List.of(RANGE_BRIGHTNESS, RANGE_CHANNEL, RANGE_HUMIDITY,
RANGE_OPEN, RANGE_TEMPERATURE, RANGE_VOLUME);
public static final Collection<String> OPER_LIST = List.of(OPER_AUTO, OPER_MAX, OPER_MIN, OPER_NORMAL, OPER_TURBO,
Expand Down

0 comments on commit 9a496e2

Please sign in to comment.