huedel

The huedel function removes Philips HUE devices from a HUE bridge using their device serial number. This is necessary if you want to connect the device to another bridge.

Note: All hue function use curl commands to communicate with the HUE bridge. Please make sure it is installed. Curl is available for all major operating systems.

See also: huenew, huecon, huelamps, hueset, huesearch, huename, hueadd

Usage:

r = huedel(serial,bridgenr,mode)

Where:

ParameterDescription
rIs the response struct.
serialSpecifies the device’s serial number(s) to be added:
– string or char for single devices
– cell array with string or char for multiple devices
bridgenr
(optional)
Defines to which bridge the device will be added, default: 1.
mode'secure' (default) or 'allow-insecure' if a secure connection is not possible.

Examples

Remove device with ID number 4:

r = huedel(4)

Remove devices with numbers 4 and 7 from bridge number 2:

r = huedel([4 7],2)

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.