diff --git a/bricksrc/command.py b/bricksrc/command.py index d210d5ad..279e9d13 100644 --- a/bricksrc/command.py +++ b/bricksrc/command.py @@ -17,6 +17,9 @@ }, "Relay_Command": {"tags": [TAG.Point, TAG.Relay, TAG.Command]}, "Light_Command": {"tags": [TAG.Point, TAG.Light, TAG.Command]}, + "Level_Command": { + "tags": [TAG.Level, TAG.Command, TAG.Point], + }, "Speed_Command": {"tags": [TAG.Point, TAG.Speed, TAG.Command]}, "Cooling_Command": {"tags": [TAG.Point, TAG.Cool, TAG.Command]}, "Heating_Command": {"tags": [TAG.Point, TAG.Heat, TAG.Command]}, diff --git a/bricksrc/definitions.csv b/bricksrc/definitions.csv index 2e8b9b91..5d3a532d 100644 --- a/bricksrc/definitions.csv +++ b/bricksrc/definitions.csv @@ -645,6 +645,8 @@ https://brickschema.org/schema/Brick#Leaving_Water_Temperature_Proportional_Band https://brickschema.org/schema/Brick#Leaving_Water_Temperature_Sensor,Measures the temperature of water leaving a piece of equipment or system, https://brickschema.org/schema/Brick#Leaving_Water_Temperature_Setpoint,Sets temperature of leaving water, https://brickschema.org/schema/Brick#Level,, +https://brickschema.org/schema/Brick#Level_Command,"Adjusts the operational state to a specific level within a predefined range.", +https://brickschema.org/schema/Brick#Level_Status,"The current operational state of a specific level within a predefined range.", https://brickschema.org/schema/Brick#Library,"A place for the storage and/or consumption of physical media, e.g. books, periodicals, and DVDs/CDs", https://brickschema.org/schema/Brick#Light_Command,Controls the amount of the light provided by the device, https://brickschema.org/schema/Brick#Lighting,, diff --git a/bricksrc/status.py b/bricksrc/status.py index c5128b8f..e3e92c71 100644 --- a/bricksrc/status.py +++ b/bricksrc/status.py @@ -482,6 +482,9 @@ "tags": [TAG.Point, TAG.Pressure, TAG.Status], }, "Lead_Lag_Status": {"tags": [TAG.Point, TAG.Lead, TAG.Lag, TAG.Status]}, + "Level_Status": { + "tags": [TAG.Level, TAG.Status, TAG.Point], + }, "Stages_Status": {"tags": [TAG.Point, TAG.Stages, TAG.Status]}, "System_Shutdown_Status": { "tags": [TAG.Point, TAG.System, TAG.Shutdown, TAG.Status],