Skip to main content

Floor

The floor registry reflects Home Assistant floors. These act as a grouping utility for areas

Service Interactions

public propertydescription
createCreates a new floor in home assitant
currentCurrent array of known floors
deleteRemove an floor from home assistant
listRequest a fresh list of floors from home assistant
updateModify an existing floor

Type Defintions

import { TServiceParams } from "@digital-alchemy/core";
import { TFloorId } from "@digital-alchemy/hass";

export function MyService() {
return {
pickAFloor(floor_id: TFloorId) {
//
},
};
}