Drivers & Devices
In Homey Apps the Device classes represent the physical devices paired with Homey.
Last updated
In Homey Apps the Device classes represent the physical devices paired with Homey.
Last updated
For every device paired with Homey, a Device
class will be created and a device tile will be shown in the interface. Every Device
class is associated with a Driver
class. All Driver
classes of your app will be instantiated when your app is started, even if there are no devices of that type paired with Homey. This allows the driver to be responsible for pairing new devices and defining Flow cards.
You can use the Homey CLI to interactively create a driver, this will create a basic driver manifest and all the required files for your driver:
This command will ask a number of questions about the driver you want to create, and will then create a new folder in your drivers/
directory which will look like this:
The /drivers/<driver_id>/driver.js
file contains the Driver
class. This class is responsible for pairing devices and describes the functionality for the devices belonging to the driver such as Flow cards.
The shown onPairListDevices
is a heavily simplified example. Learn more about pairing in the Pairing documentation.
The /drivers/<driver_id>/device.js
file contains the Device
class. This class implements the device's functionality such as its capabilities and Flows.
The /drivers/<driver_id>/driver.compose.json
file is the driver manifest, when building your app all the driver.compose.json
files will be bundled into your App Manifest. A basic driver manifest looks like this:
The driver icon location cannot be specified in the driver manifest, instead the driver's icon is always expected to be located at /drivers/<driver_id>/assets/icon.svg
. Read the app store guidelines for more information about the driver icon.
"platforms": ["local", "cloud"]
An array containing the driver's supported platforms. Read the Homey Cloud guide for more information.
"class": "light"
The device class tells Homey what type of device your driver adds support for. Examples of device classes are socket
, light
, lock
etc. When a specific device is not supported by Homey, you can use the class other
.
Device classes play a crucial role in enhancing the user experience within the Homey platform. By properly configuring classes for your devices, you ensure seamless integration with various features and services.
For instance, if a user utilizes a Zone Flow card to turn off all lights in a specific zone, your device will be automatically included if it has both the onoff
capability and the light
class. This ensures that the device is correctly recognized and controlled as a light.
Additionally, when a user has linked their Homey setup to Google Assistant, commands like "Turn off all lights" will function as expected. This is because you've assigned the appropriate class to your device, allowing it to be correctly identified and managed by voice assistants.
By carefully setting device classes, you help create a smooth and intuitive experience for users, both within the Homey ecosystem and with integrated third-party services like Google Assistant.
Find your device's class in the Device Class Reference.
"capabilities": ["onoff", "dim"]
The capabilities of a device describe the states and actions a device supports. For example, a light may have the capability onoff
which allows users to toggle the light on or off. It can also support the dim
capability which would allow the user to change the lights brightness.
Capabilities all have a data type, for example the onoff
capability has the type boolean
and can thus be either true
or false
. The capability dim
is of type number
and can be any number between 0 - 1
, as defined in the capability's definition.
Homey ships with many system capabilities. For other cases, app-specific capabilities can be defined in the App Manifest.
Homey has built-in Flow cards for every system capability.
Read more about Capabilities.
"energy": {...}
A device can use or generate power. To keep track of the data related to power usage and generation a device can have an energy object. This object contains power usage approximation data and flags to indicate a device generates power or should be omitted from automatic shutdown.
Read more about Energy.
"settings": [ ... ]
A device can have user-configurable settings, such as the orientation of a curtain or a poll-interval. Settings are shown to the user in the front-end, or can be changed programmatically (see Device#setSettings
).
Read more about Settings.
"pair": [ ... ]
A device can be added to Homey through pairing. Pairing is started when the user selects the device they want to add from the Homey app. The pair
property of the device manifest describes the steps necessary to add the device to Homey.
For most devices a few simple pair steps are enough. For more advanced devices, where more user-steps are required, custom pairing views can be provided.
Read more about Pairing.
"deprecated": true
Sometimes a Driver that has been available in the past should be removed. To not break compatibility for users that were using it, add "deprecated": true
to your driver in your App Manifest. It will still work, but won't show up anymore in the 'Add Device' list.
"connectivity": [ ... ]
Specify how the Driver connects to your device in the real world. You can specify multiple values, for example [ "infrared", "lan" ]
for a TV that is turned on by Infrared, and then controlled over Wi-Fi LAN.
During pairing, you must provide a data
property. This property contains a unique identifier for the device. This object cannot be changed after pairing. This data
property is an object containing any properties of the types String, Number or Object. Homey uses this object to identify your device, together with the driver's ID. Read more in the Device pairing documentation.
Only put the essential properties needed to identify a device in the data object. For example, a MAC address is a good property, an IP address is not, because it can change over time.
Any properties that could change over time should be kept in-memory or saved in the device's store.
A device can be marked as unavailable using Device#setUnavailable()
. This shows to the user that they cannot interacting with the device for example because the device is offline.
When a device is marked as unavailable, all capabilities and Flow actions will be prevented. When a device is available again, use Device#setAvailable()
to mark the device as available.
Your drivers /assets/
folder contains the icon and images for that driver. These images should be clean marketing pictures of the device that this driver implements, these are shown in the Homey App Store.
Read more about driver images and icons in the Homey App Store guidelines.
In some cases you may want to store some information about the device that persists across reboots. For example you may need to store the device's IP address. The device's store is a persistent storage to save device properties. This store can be set during pairing and programmatically read and updated after the device is paired with Homey.
Using the store is pretty rare, usually there are other solutions. For example if you want users to be able to update these values easily you should use device settings instead. See the device settings documentation for more information. And instead of storing the devices IP address in the device store you could use the local network device discovery functionality that is built into Homey.
Value
Description
lan
Local (Wi-Fi/Ethernet)
cloud
Cloud-connected (Wi-Fi/Ethernet)
ble
Bluetooth Low Energy
zwave
Z-Wave
zigbee
Zigbee
infrared
Infrared
rf433
433 MHz
rf868
868 MHz
matter
Matter (Only available on Homey Pro (Early 2023))