| Developer: | Karl's Plugins Like this plugin? Show your appreciation! |
| Category: | Hubs and Protocol Bridges |
| Github: | Github Repo |
| License: | MIT License |
| Assistance: | Get help! Check the online documentation |
| Plugin ID: | com.nathansheldon.indigoplugin.HueLights |
| Latest release: | v2022.32.112 released on July 14, 2026 |
| Release downloaded: | 18 times |
| Requires: | Indigo v2022.1.0 or higher |
| (Check the Releases tab below for older releases that may have different requirements) | |
| Download latest release |
Version: 2022.32.112
Bundle ID: com.nathansheldon.indigoplugin.HueLights
Platform: macOS · Indigo Home Automation 3.0+
Controls Philips Hue lights, groups, sensors, and switches from Indigo. Supports both classic Hue bridges (API v1) and the Hue Pro Bridge (API v2 with Server-Sent Events).
Up to 4 bridges can be configured simultaneously. Each bridge can be individually enabled or disabled in preferences without removing its devices.
hueBulb — Extended colour light; on/off, dim, RGB, colour temphueAmbiance — Colour temperature light; on/off, dim, colour temphueLightStrips — Light strips (extended colour); on/off, dim, RGB, colour temphueLivingColorsBloom — Colour light; on/off, dim, RGBhueLivingWhites — Dimmable light; on/off, dimhueOnOffDevice — On/off plug; on/off onlyhueGroup — Room, Zone, or Entertainment zoneGroup colour/brightness can be calculated in several ways (configurable per group): - calculate — average member light states directly in the plugin - readv1 — fetch group state from bridge via API v1 - compare — run both and log differences (development/debug) - no — no group state tracking
Zones and Rooms that share lights automatically sync colour temperature bidirectionally.
hueMotionSensor — Hue Motion Sensor (motion)hueMotionTemperatureSensor — Hue Motion Sensor (temperature)hueMotionLightSensor — Hue Motion Sensor (light level)hueDimmerSwitch — Hue Dimmer Switch (RWL020/021/022)hueSmartButton — Hue Smart Button (ROM001)hueTapSwitch — Hue Tap SwitchhueRotaryWallSwitches — Hue Tap Dial SwitchhueRotaryWallRing — Hue Tap Dial rotary ringhueWallSwitchModule — Hue Wall Switch ModulehueContactSensor — Hue Secure Contact SensorrunLessWireSwitch — Friends of Hue switchesOne Indigo device is auto-created per bridge, exposing 30+ read-only states: light/sensor/switch counts, software update count, Zigbee channel, firmware version, API version, etc.
onOffState — On / offbrightnessLevel — 0–100 %lumen — Calculated lumen output: int(brightnessLevel × lumenMax / 100 + 0.5); 0 when light is off. For hueGroup devices this is the sum of the lumen state of all ON member lights (off lights contribute 0); group brightnessLevel % is unchanged.colorMode — hs (colour), ct (white), xy (extended colour)colorTemp — Colour temperature in mirek (153–500)whiteTemperature — Same as colorTemphue — Hue 0–360°saturation — Saturation 0–100 %redLevel / greenLevel / blueLevel — RGB 0–100 %online — Reachable via Zigbee (true/false)effect — Active effect nameid_v1 — Internal bridge v1 path (e.g. /lights/3)lumenMax device property — configurable per device in the device edit dialog (default: 600). Set this to the manufacturer-rated lumen output at 100% brightness. The lumen state is then auto-calculated and updated whenever brightness or on/off state changes.
All actions above are also available as one-off Plugins menu items for manual use without creating an action group. Menu items include an execute button at the bottom of the dialog.
Additional menu-only utilities:
EditSetup, SendCommandsToBridge, StateChange, NewDevice, IpChange, TrackedDevice, …Two thresholds control when the V2 Server-Sent-Events listener is restarted (see Event-stream resilience below):
NumberOfSecondsEventRestart. Drives the TCP keepalive (the primary/fast path). A dead connection is detected roughly this many seconds after the last event.NumberOfSecondsEventWoMessage. Backstop for the rare case where the TCP connection stays alive but the bridge goes silent. Keep it above the main value.Both defaults and valid ranges live in kDefaultPluginPrefs / minMaxEventRecovery in the plugin (single source of truth); out-of-range saved values are clamped to the nearest bound on load.
Contents/Server Plugin/plugin.py (~20 000 lines), one Plugin class subclassing indigo.PluginBase.colormath/ module handles RGB↔XY↔colour-temperature conversions; add_rgb_temp_to_rgb.py averages mixed RGB + kelvin lamp lists.allV2Data / allV1Data in-memory dicts and saved to JSON in the Indigo preferences folder on a throttled schedule.The Hue Pro bridge periodically drops/recycles its long-lived SSE connection (commonly about once an hour). The plugin absorbs this transparently with no data loss:
kEventReplayWindowSecs); routine recycles need no re-read.See Contents/VERSION_HISTORY.txt for the full change log.
Current release — 2022.32.112 (2026-07-09):
- Code audit (.85 → .86): ~40 correctness bugs fixed across plugin.py (Save Preset, scene recall, V2 colour-temperature/brightness, RGB scaling, white-slider hue scaling, inverted button state, motion-area device creation, bridge-move state transfer, and more — see VERSION_HISTORY.txt).
- Event-stream resilience (.87 → .112): major rework of the V2 SSE listener — see Event-stream resilience above. Eliminated an 8-minute restart stall, added TCP keepalive, fast reconnect with backoff, Last-Event-ID replay, conditional re-read only on a real outage, a 100-entry reconnect-history table in print-stats, and near-silent routine logging.
- Config thresholds: the SSE restart control was split into two expert-section parameters (main keepalive + fallback watchdog) with configurable ranges; changes now apply live (within ~10 s) without a plugin reload.
- Refactors: config-parameter defaults consolidated into kDefaultPluginPrefs (single source of truth); duplicated pref-reading collapsed into readEventTimerPrefs / applyGeneralPrefs.
Earlier — 2022.32.82 (2026-05-13):
- New lumen device state on all dimmer types and groups; new lumenMax device property (default 600)
- Reformatted plugin XML files for readability (no functional change)
- New actions: dynamic scene speed, power-on behaviour, sunrise timed effect, smart scene recall
| Released on: | July 14, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 18 times |
| Download this release | |
======================================== 2022.32.112 @ 2026-07-09 The "shortBridgeInfo" print (bridge/lights/groups/... summary header + per-bridge lines) is now built into one string (leading \n, each line \n-separated) and written with a single log call, instead of one log entry per line. The rare not-setup/not-paired lines are included in the same block (now level 20).
The full bridge re-read now runs ONLY on a real outage (gap > kEventReplayWindowSecs). Previously it also fired for short gaps where 0 events were replayed (nothing had happened) — unnecessary. Now: gap > window -> level 20 + re-read; replay recovered events (short gap) -> level 10, no re-read; short gap with no events -> level 10, no re-read. So no re-read for the routine hourly recycle.
Shortened the reconnect-table header line: "eventstream reconnects (last N of 100) — M replayed, avg gap Xs". Dropped the long column-explanation parenthetical (the column names are self-explanatory).
Level 20 now fires only when events may actually have been MISSED (not merely recovered). Reasoning: recovered events are counted reliably and are NOT missed; a true miss only happens if the reconnect gap outlasts the bridge's Last-Event-ID replay buffer (then the oldest events age out). So: gap <= the assumed replay window (kEventReplayWindowSecs, default 300s) -> fully recoverable -> level 10; gap > the window -> possible data loss -> level 20 ("gap of Ns EXCEEDED the ~Ws replay window ... MAY HAVE BEEN MISSED"). Honest limitation: from the stream alone a quiet gap and a buffer-overflow gap are indistinguishable, so this is a gap-duration proxy, not a perfect miss detector. For the ~40s hourly recycles it stays at level 10. Also: the re-read is now forced whenever there was no full replay OR the gap exceeded the window.
The "real gap ... recovered N events" line is now level 10 too. The hourly bridge-recycle reconnect is routine and self-healing, so it produces no level-20 output at all now (details remain in the print-stats reconnect table). Still level 20: the first-connect "Successful Connected" (startup) and the generic "Error: ... Reconnecting" for unexpected exceptions.
Reconnect table "last event" column now shows the full YYYY-MM-DD HH:MM:SS timestamp (column widened).
Reconnect table: replaced the raw epoch ev-ids (useless to read) with human-readable columns — "last event" = the bridge time of the last ev-id before the gap (epoch converted to local, dd HH:MM:SS), and "next event" = "+Ns" seconds to the first ev-id after. Dropped the separate ev-gap column (now the "next event" delta).
Reconnect table: dropped the misleading "spurious?" label. recovered==0 only means "no events occurred during the gap", NOT that the restart was unneeded — the connection gap was still real (confirmed by the ev-id epochs jumping tens of seconds). Added an "ev-gap" column = the time hole between the last ev-id before and the first ev-id after (seconds), which shows the real gap even when 0 events were recovered. Summary line now reports total events replayed + average gap, no spurious count.
Quieter reconnect logging. Routine reconnect notices are now level 10 (debug): "Bridge connection closed/unreachable / read timeout ... Reconnecting", "Successful Connected" (on reconnects only — still level 20 on the first connect), "reconnect after Ns gap ... checking replay", and the "no events missed / likely unneeded restart" resolution. Only a REAL gap (events actually recovered) logs at level 20, now as one self-contained line including the gap duration: "bridge X: real gap of Ns — last ev-id ... -> first ev-id ...; N events replayed by bridge". So a spurious reconnect is silent at normal level; a genuine data-gap shows exactly one line.
Single source of truth for config defaults: all plugin-config parameter reads now use kDefaultPluginPrefs["key"] as their fallback instead of hardcoded literals — timeScaleFactor, sendDeviceUpdatesTo, timeScaleFactorAPIV2, showLoginTest (startup + getDebugLevels), the debug* flags, autoCreatedNewDevices, folderNameForNewDevices, and logAnyChanges (now a safe .get). The event thresholds already used kDefaultPluginPrefs + minMaxEventRecovery ranges. (Consistent with removing the default= attributes from PluginConfig.xml — defaults now live only in kDefaultPluginPrefs.) Action / device dialog fields are unchanged; those aren't plugin-config parameters.
Faster reconnect. The eventstream reconnect used a fixed 5-10s sleep, adding ~10s to every gap. Now a drop of a working connection (the common case: the bridge gracefully recycles/close-notifies the SSE connection) reconnects IMMEDIATELY (0s); the delay only escalates (2 -> 5 -> 10s) if the reconnect itself keeps failing (bridge genuinely down). reconnectFailures resets as soon as data flows again. This covers the TLS close-notify case without parsing the alert (requests abstracts it away). Also fixed two bugs introduced in the parameter-driven readEventTimerPrefs edit: a missing ')' on the NumberOfSecondsEventRestart read, and the fallback clamp using 'restart' instead of 'woMsg'. Note: the remaining gap (~25s in the captured case) is the bridge holding the connection open/idle before it closes it — that part is bridge-side and not reducible from here.
Track the last ev-id before a reconnect and the first ev-id received after, to tell a real gap from a spurious restart. Each reconnect log line and the print-stats reconnect table now show both ids, and the table adds a summary ("N real gap, M with NO events missed"). A reconnect that recovers 0 events (recovered==0) means nothing was actually missed — flagged "0 no-gap"; a run of these at a low NumberOfSecondsEventRestart indicates the threshold is too aggressive (spurious restarts, no data lost).
Fix: the v.99 "apply NumberOfSecondsEventRestart immediately" didn't work — validatePrefsConfigUi applies the new value before closedPrefsConfigUi captured the old one, so the change was never detected (it only took effect on a full plugin reload). Now each listener session is stamped with the threshold it was built with ('restartSecs'), and checkIfListenerIsRunning (main loop, every ~10s) restarts the listener when that differs from the current config value. Works regardless of the dialog callback order.
Changing the (main) NumberOfSecondsEventRestart threshold now takes effect immediately. The keepalive is baked into the socket at session creation, so a changed value previously needed a plugin reload (in-thread reconnects reuse the same session). closedPrefsConfigUi now detects a change to that value and restarts the V2 event listeners, so checkIfListenerIsRunning respawns them with a fresh session (new keepalive) within ~10s. The (fallback) NumberOfSecondsEventWoMessage watchdog already applied live.
Cosmetic: getDebugLevels() collapsed its two duplicate branches (loop + showLoginTest read) into one path — "if useMe is None or empty: useMe = self.pluginPrefs", then a single loop. No behaviour change.
Refactor (continued): the general prefs that were applied in startup + validatePrefsConfigUi +
closedPrefsConfigUi (timeScaleFactor, sendDeviceUpdatesTo, searchForStringinFindHueBridge, and the
fixed timeScaleFactorAPIV2) are now read/applied by one method applyGeneralPrefs(prefs), called from
all three. Removes the duplicated apply blocks and the dead if False: timeScaleFactorAPIV2 reads
(the value was already forced to 119). All three sites now apply the same set consistently. No
behaviour change for real values.
Refactor: the read+range-clamp of the two eventstream restart thresholds was duplicated in three places (startup, validatePrefsConfigUi, closedPrefsConfigUi). Consolidated into one method readEventTimerPrefs(prefs) that all three call. No behaviour change.
Split the eventstream restart control into two separate expert-section config dropdowns: - (main) NumberOfSecondsEventRestart: 10..130s, default 90 — drives the TCP keepalive (fast restart, fires "Bridge unreachable. Reconnecting"). This is the primary threshold. - (fallback) NumberOfSecondsEventWoMessage: 60..200s, default 180 — drives the no-message watchdog, the backstop for the rare case where TCP stays alive but the bridge stops sending events. Both defaults are in kDefaultPluginPrefs; both are range-clamped on load (legacy values → default). The stream read timeout now sits above whichever of the two is larger (+60s).
Restart threshold is now a config dropdown (expert section, bottom of plugin config): "Restart api-V2 event listener after no events for:" with fixed values 10..130s, default 90. Reuses the existing NumberOfSecondsEventWoMessage pref and now drives BOTH the TCP keepalive (idle = threshold-20, +2x10s probes) and the no-message watchdog, so the whole range is effective. Legacy/out-of-range saved values (e.g. 180/240) are clamped to the new default 90 on load.
Restart threshold raised to ~90s: eventstream TCP keepalive is now 60s idle + 3x10s probes (was 30s + 3x10s = ~60s). A >=90s silence has <0.01% chance of being normal (observed max gap ~40s), so this never false-triggers and avoids reconnecting into a still-stalled bridge.
Harden the skipped-event count against a bridge event-id going backwards (e.g. a bridge reboot whose clock resets before NTP re-sync). The backfill test now requires resumeEpoch <= evTs < reconnect-time (previously only the upper bound), so a backward id jump reads as "0 / no replay" instead of counting every live event as skipped. Gap duration, forced re-read, and Last-Event-ID resume were already safe.
Print-stats now includes a rolling eventstream-reconnect history. Each reconnect records timestamp, bridge, gap duration (s), and events skipped/recovered; the list is capped to the last 100 (oldest dropped). Shown at the bottom of the "bytes send /received to/from bridge" (and ...WithReset) menu output.
Report skipped-event count on reconnect. The SSE event id is :, so after a gap-reconnect the plugin counts how many replayed events carry an id-epoch earlier than the reconnect moment (= events that were skipped by the live connection and are now being backfilled). Logs either "recovered N events that were skipped during the gap (bridge replayed them)" or, if the bridge sends no backlog, "bridge did not replay any skipped events; states were made current by the forced re-read". The reconnect line now also prints the gap duration in seconds.
Event-stream gap recovery — after an SSE stall/reconnect, missed events no longer leave device states stale: 1. Last-Event-ID resume: the plugin now remembers the last SSE event id per bridge (persists across listener restarts) and sends it as the Last-Event-ID header on reconnect, so a compliant bridge replays events buffered during the gap. (Buffer depth is bridge-dependent/short; confirm from the log by watching for a burst of events right after "reconnect after gap".) 2. Forced full re-read on reconnect: whenever the listener reconnects with a stored event id (i.e. a gap occurred, not the first-ever connect), it zeroes the getHueConfig / 'all' / 'v2' / checkMissing timers so the next main-loop pass re-reads the whole bridge and brings all device states current — the same reconcile the bridge already does on add/delete events. This guarantees persistent state (on/off, brightness, colour, sensor values) is correct after a gap even if the Last-Event-ID replay buffer has rolled over. Transient events (a button press / motion pulse that already cleared during the gap) are only recoverable via #1, not the re-read. Note: the underlying hourly stalls are a bridge-side issue (bridge stalls its own eventstream ~hourly, stays ping-reachable throughout) — see VERSION_HISTORY .87/.88; this change limits the data impact of each stall.
"listener thread did not stop cleanly" warning downgraded to an informational message — with the v.87 stop mechanism an old reader draining in the background is expected and harmless.
Event-listener restart after a stalled stream now takes seconds instead of ~8 minutes:
Code audit: ~40 bug fixes across plugin.py (no new features). Highlights: 1. Save Preset no longer rejects every light device (validation compared the Python builtin "type" against the compatibility list) 2. Recall scene without a group works again (int 0 vs string "0" groupId mismatch); doScene now tolerates int groupIds 3. activateScene picks the API version of the action's own bridge, not the last bridge selected in a config dialog; removed an older dead duplicate of activateScene 4. V2 set-color-temperature now sends the requested brightness and turns the light off at brightness 0 (previously always on:true, brightness discarded) 5. RGB scaling is no longer corrupted after saving plugin prefs (stale "rgbmax" block set rgbIndigoMax to 1.0) 6. White-level slider: hue is converted from degrees to the bridge 0-65535 scale (lights snapped to red before); hueGroup white slider no longer forces saturation to 0 7. Attribute Controller colorGreen toggle-on no longer swaps green into the red channel 8. V1 "off" commands use the noOffRampRate prop instead of noOnRampRate; V2 "off" reads the correctly spelled brightnessLevel state (ramp rate was always forced to 0) 9. Dimmer-switch/button onOffState is no longer inverted (triggers fired backwards) 10. hueOnOffDevice V1 "on": Indigo state updates again (undefined vars aborted the handler after the bridge command) 11. Hue state for bulbs/light strips/LivingColors stored in degrees again (normalizeHue return value was discarded) 12. V2 color/ct-only events no longer reset brightness to 100% (missing "dimming" now keeps the last known level) 13. zgp (Tap / Friends-of-Hue) connectivity events no longer mark connected devices as disconnected (quoting typo) 14. Motion-area device creation fixed (moti905onInfo typo, indigo.devices["name"] literal, getConvenienceAreaMotionInfo returning a bare None); grouped-motion states no longer set to literal key names; contact-sensor tamper state no longer clobbered to None 15. Event stream: health updates no longer leak to the wrong device; per-bridge listener threads no longer share one deviceUpdate dict; listener shutdown race guarded 16. One offline V2 bridge no longer aborts the data refresh for all bridges; child-service exclusion in fillAllDataV2 fixed (stale loop variable) 17. Move-device-to-new-bridge: states are actually transferred now, and the moved device is no longer auto-recreated on the old bridge (ignore list used wrong key and wrong id) 18. Hold-to-brighten/dim worker thread logs errors and keeps running instead of dying silently 19. Expired auto-pairing window stops retrying instead of re-pairing on every poll cycle 20. Many smaller fixes: scene/preset dialog crashes (KeyErrors, Py2 leftover .items()[0], "{}}" format string), color-picker hex builder, sensor status requests skipped when debug logging was on, temperature offset now scaled correctly for Fahrenheit, sensitivityMax gating, duplicate-sensor validation no longer crashes on stale devices, various wrong/misleading log messages
| Released on: | May 20, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 109 times |
| Download this release | |
did not recognize "xxx outdoor XXX " fixed in counting number of device types attached.
| Released on: | April 3, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 51 times |
| Download this release | |
| Released on: | March 21, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 36 times |
| Download this release | |
lots of little format issues, misspelled variables, but used only in rare circumstances used "pycharm" and "claude" to do syntax error checking pycharm is much better though.
| Released on: | March 15, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
fixed bug 1048, in autocreateNewDevicesV1 name = "Hue_{}{}{}_{}".format(self.pluginPrefs.get(prefix,kDefaultPluginPrefs[prefix]), hubNumber, theID, nameOnBridge)
| Released on: | March 13, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 36 times |
| Download this release | |
2022.29.78 @ 2026-03-13 1. fixed bug for hue contact sensor update 2. fixed bug not creating api v2 devices for groups - there was a debug statement not commented
| Released on: | March 12, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
======================================== 2022.29.77 @ 2026-03-12 1. added option to use default for brightness and ramp rate for recall action 2. fixed several rgb / dimmer functions 3. added enable disable for devices for pro bridge 4. added scenes support for pro bridge 5. added config option to set prefixes for devices names types switch/sensor/light/group eg Hue_light_br#_id#_nameOnBridge (replace light with lampa) 6. added different prefix for switches and sensors (was all sensor) 7. combined many sql updates for a device into a single call 8. reduced CPU usage, with > 80 lights, 15+ sensors 40+ switches on pro bridge: 0.1% .. 2% cpu on MAC-M1 (state updates depending on sensor, switch, light event frequency, no update: 0.1% CPU) on my previous setup with 4 old bridges it was 5%-15% and response time to sensor events was 2-3 secs, now < 0.5 secs. 9. added option in config to enabled / disable a bridge. this will only disable communication with the bridge. Useful if you have disconnected a bridge and would like to stop error messages 10. added a device for each bridge. it will contain bridge values in the device states (30+) This device is not editable, the states are just for info. 11. The pro bridge does not supply rgb (xy) color update events for groups (zones, rooms), only brightness level. the issue is likely that a mix of different lamp types makes it difficult to actually calculate the proper color values (rgb + dimm only + color temp lamp types ) work around: Added a http api v1 "get" for all data for the hue group, WHEN a brightness level change event is received. That should cover most situations. 12. fixed indigo device icon. if a device is turned off, but brightness level is not 0 the icon stayed "ON". Now it reflecting state is off/on
======================================== 2022.28.76 @ 2026-02-25 1. added option to use default for brightness and ramp rate for recall action
======================================== 2022.28.75 @ 2026-02-24 1. added support for pro bridge for scene recall (active a scene on the bridge) 2. several smaller performance improvements 3. cleaned up code. 4. reconfigured RGB to XY color schema for pro bridges.
| v2022.27.74 | Requires Indigo v2022.1.0+ | Released Feb. 16, 2026 | bug fixes for new device triggers, move devices to new bridge, security contact device |
| Released on: | Feb. 16, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 30 times |
| Download this release | |
bug fixes for new device triggers, move devices to new bridge, security contact device
| Released on: | Feb. 15, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
2022.27.74 @ 2026-02-15 1. added stats for # of packages send / received 2. cleanup frequency for different http requests. It is now per type and per bridge pro bridge as compared to old bridge type has about 1/5 the packages (incl events) and ~ 1/3 # of bytes. with 2 bridges, one old and one pro and ~ 80 physical devices the average load on a MAC M1 is -0.5-6% averaging ~ 2.5% and response time to devices changes on the pro bridge is < 0.5 seconds 3. added support for security contact. only works with pro bridge looks like phillips is not adding api v1 support for newer models api v1 does not send any info for that device on old bridge as well as new bridge 4. removed unnecessary items from device edit. it is now very simple. Disabled "create new device" for std Hue devices, beside "hue attribute controller" all std devices are automatically created by the plugin. 5. added a print option to show the network traffic used (menu "print hue config .."" at bottom)
| Released on: | Feb. 3, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 32 times |
| Download this release | |
| Released on: | Jan. 27, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 28 times |
| Download this release | |
| Released on: | Jan. 25, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
removed some api v2 debug statements
| Released on: | Jan. 24, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 32 times |
| Download this release | |
| Released on: | Jan. 20, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 38 times |
| Download this release | |
fixed bug introduced in 2022.23.64
| Released on: | Jan. 18, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 33 times |
| Download this release | |
| Released on: | Jan. 14, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
| Released on: | Jan. 14, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 36 times |
| Download this release | |
| v2022.21.63 | Requires Indigo v2022.1.0+ | Released Jan. 11, 2026 | added various functions to support migration to pro bridge |
| Released on: | Jan. 11, 2026 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
| Released on: | June 1, 2025 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 43 times |
| Download this release | |
| Released on: | May 30, 2025 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 40 times |
| Download this release | |
various updates
| Released on: | April 7, 2024 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 40 times |
| Download this release | |
fixed ACTION for preset
| v2022.16.57 | Requires Indigo v2022.1.0+ | Released April 1, 2024 | fixed menu to exclude sensors in scenes and presets, or give warning msg |
| Released on: | April 1, 2024 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 31 times |
| Download this release | |
fixed menue to exclude sensors in scenes and presets, or give warning msg
| Released on: | Nov. 7, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 32 times |
| Download this release | |
| Released on: | Sept. 27, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 39 times |
| Download this release | |
Added option to REPLACE a (eg broken) hue light in indigo - ie keep the indigo ID (and trigger etc) and link it to the new Hue device
In indigo device edit Lights you now have 3 options: 1. normal edit, no change 2. replace the hue device an indigo device is linked to - add new hue device to hue bridge, then edit the old indigo device and select "replace device, select new Hue device" 3. copy other indigo device (eg already created indigo device for new replaced hue device, but you would like to keep triggers etc in place that use THIS indigo device id) - edit old Indigo device and select option: "replace device, copy other Indigo device to this device" after save delete the indigo device that was copied from.
this should make it much easier to replace a broken light as compared to the previos plugin version: 2022.16.52
| Released on: | Sept. 26, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 33 times |
| Download this release | |
2022.16.52 @ 2023-09-27 Added option to REPLACE a ( eg broken) lamp in indigo - ie keep the indigo ID (and trigger etc) and link it to the new Hue device steps: 1. add the new lamp to the hue bridge 2. add the new device to indigo (best is the auto create menue option) 3. disable Comm enabled for both new and old device in indigo (uncheck the check box in the column Comm Enabled) 4. edit the OLD device (w the indigo id you want to keep) 5. check "Replace a device (not the normal option)" in device edit 6. select bridge and confirm 7. select the new Hue lamp in the selection menu. You will see the names of the lamps on the hue bridge not the indigo names 8. save 9. delete the NEW indigo device, otherwise you now have 2 indigo device that point to the same hue device 10. re-enable Comm for the OLD device (click on the check box in the column Comm Enabled)
| v2022.15.52 | Requires Indigo v2022.1.0+ | Released Sept. 25, 2023 | default value of option "auto create new devices": OFF. |
| Released on: | Sept. 25, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
made the default value of option "auto create new devices": OFF. This has no impact on existing installations, only when you (re) install the hue plugin the option will be set to OFF initially you can set it ON/OFF in config at any time. The tool tip / help in config reads: >> with this option checked the plugin will create a new indigo device as soon as a new light/sensor/group is created on a hue bridge. With the option OFF you can manually create new devices (add indigo device ... Or you can use the menu item 'Add New Devices on Hue Bridge to Indigo' That will add all new devices that are on the hue bridge(s) in indigo<<
The change to OFF has been requested by Jay, as it conflicts with indigo standards.
| Released on: | Sept. 11, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 34 times |
| Download this release | |
added state lastBatteryReplaced that states shows the date-time stamp when the battery level went from anything to 100% the first time it runs it checks if the state is empty and when the battery level is 100% hen it takes that date-time. otherwise it stays empty until the battery goes to 100%. that miht take some years depening on the battery life of the switch/ sensor.
| v2022.14.50 | Requires Indigo v2022.1.0+ | Released Aug. 11, 2023 | fixed brightness level when using attribute devices to change eg hue value |
| Released on: | Aug. 11, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 32 times |
| Download this release | |
fixed brightness level when using attribute devices to change eg hue value
| Released on: | Aug. 10, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 28 times |
| Download this release | |
| Released on: | Aug. 2, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 36 times |
| Download this release | |
| Released on: | July 10, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 41 times |
| Download this release | |
======================================== 2022.14.47 @ 2023-07-09
added menu option to help facilitate moving a device to a new bridge now besides light also sensors can be moved made the labels and sequence clearer (new vs old devs)
reduced the number of potential bridges to 5 from 9. One more that can be used in a house for future options this makes the selection menues shorter This is just cosmetics
| v2022.14.46 | Requires Indigo v2022.1.0+ | Released July 9, 2023 | added menu option to help facilitate moving a device to a new bridge now besides light also senso |
| Released on: | July 9, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 34 times |
| Download this release | |
added menu option to help facilitate moving a device to a new bridge now besides light also sensors can be moved
| v2022.14.45 | Requires Indigo v2022.1.0+ | Released July 9, 2023 | added menu option to help facilitate moving a device to a new bridge |
| Released on: | July 9, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 30 times |
| Download this release | |
added menu option to help facilitate moving a device to a new bridge
| v2022.13.45 | Requires Indigo v2022.1.0+ | Released July 8, 2023 | fixed some issues in print hue config data, for special cases |
| Released on: | July 8, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 30 times |
| Download this release | |
fixed some issues in print hue config data, for special cases
| Released on: | June 3, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 30 times |
| Download this release | |
| Released on: | May 10, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 33 times |
| Download this release | |
fixed groups did not get updated
| Released on: | March 16, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 36 times |
| Download this release | |
now NEW Hue lights, sensors, and groups will be automatically created in indigo (once every 3 minutes) That option can be switched off in config.
So from now on: no need to manually ever create a new light/sensor/group. At most 3 minutes after you add a new light bulb etc to your Hue system through your phone that light bulb ... will appear automatically as an indigo device. The name will be like: Hue_type_Bridge#_Id#_name-One-Hue-System eg: Hue_group_0_2_Wintergarten Hue_light_1_11_Library spot 3 Hue_sensor_2_14_Dining wall on off 2
The folder name can be set in config.
| v2022.12.42 | Requires Indigo v2022.1.0+ | Released March 16, 2023 | added various help info for creating new devices. |
| Released on: | March 16, 2023 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 39 times |
| Download this release | |
added help when adding new devices manually. if your selection of avalible light si empty, it will print something like: ++++++ Hue Lights !!! no correntsponding light found, please check your selections !!! your selection was: Bridge# 1, indigo devType:"hueLightStrips"="Light Strips" maps to hue-type:"Extended color light" available on the Bridge#:1 are: name:"Guest leo spot 3", GW#:1, id:30, hue-type:"Color temperature light" equivalent to indigoDev-type:"['hueAmbiance']"
Hue Lights ======================== mapping of devtypes ===================== ------hue dev type------- -----indigo devType------ --------------------indigo dev type Name--------------------- Extended color light hueBulb Color/Ambiance and compatible Extended color light hueLightStrips Light Strips Color light hueLivingColorsBloom Color Lights (Aura, Bloom, StoryLight, LivingColors, etc.) Dimmable light hueLivingWhites LivingWhites (Hue Lux, generic dimmable device, etc.) Color temperature light hueAmbiance Ambiance Lights (color temperature) On/Off hueOnOffDevice On/Off Device (Hue Smart Plug, etc.) ======================= mapping of devtypes END ===================== ++++++ to the logfile.
The device type mappings between indigo and hue bridge are historical, and not simple to remember.
!!! =========================================== !!! I strongly suggest not to add hue devices manually to indigo, but you should use the menu item: "Add New Devices on Hue Bridge to Indigo..."
that will auto add all new devices found on any hue bridge to indigo in the proper form and device type !!! =========================================== !!!
| Released on: | Aug. 27, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 30 times |
| Download this release | |
| v2022.12.40 | Requires Indigo v2022.1.0+ | Released July 27, 2022 | added some more context when connection to hub bridge not is working |
| Released on: | July 27, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
added some more context when connection to hub bridge not is working
| Released on: | July 25, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
| Released on: | July 24, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 35 times |
| Download this release | |
| v2022.12.37 | Requires Indigo v2022.1.0+ | Released July 22, 2022 | fixing error: plugin.py", line 2686, in selHubNumberGWPair |
| Released on: | July 22, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 33 times |
| Download this release | |
| v2022.12.36 | Requires Indigo v2022.1.0+ | Released July 20, 2022 | * fixed continuous logging for some sensors, even when nothing changed. |
| Released on: | July 20, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 32 times |
| Download this release | |
| v2022.12.35 | Requires Indigo v2022.1.0+ | Released July 20, 2022 | * fixed continuous logging for some sensors, even when nothing changed. |
| Released on: | July 20, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 37 times |
| Download this release | |
| Released on: | July 19, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 26 times |
| Download this release | |
2022.12.34 @ 2022-07-29
| v2022.11.33 | Requires Indigo v2022.1.0+ | Released July 16, 2022 | ADDED support for Hue Rotary Wall Switch |
| Released on: | July 16, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 36 times |
| Download this release | |
| v2022.11.32 | Requires Indigo v2022.1.0+ | Released July 8, 2022 | added debug statement for 'hubNumber' error |
| Released on: | July 8, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 30 times |
| Download this release | |
added debug statement for 'hubNumber' error
| Released on: | July 1, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 37 times |
| Download this release | |
fixed * on/off state and bright ness not properly updating for dimmable lamps * fixed on/offstate for all lamps made it consitent * fixed # of decimal point for RGB, White level, Color Temperature in indigo dev status display
| Released on: | June 26, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 32 times |
| Download this release | |
======================================== 2022.11.29 @ 2022-06-22 New functions: * added state "created". It shows date-time stamp of when device was created, or if it is empty put current stamp in, ie for old devices, as we don't know when they were created. this is only useful for new devices created after this release
Improvements: * hue bridge adoption now semi-automatic in background in config after bridgeNumber and ip number confirmed it will try to pair/link to bridge and will show positive result in a popup window you still need to press the philips button on top of the bridge This way the plugin trys to link to the bridge every 5 seconds. It should succeeed as soon as you go to the bridge and press the button there. In case that process fails there is still the execute pair button in the config menu, which starts the paring process after you press the execute pair button
*streamlined device updates: instead of 10+ individual state updates, now it checks if there is a change in state value and then combines updates to a list. That should reduce server load from updates significantly
Fixes: * fixed some issues in print hue config menu
| Released on: | June 19, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 36 times |
| Download this release | |
*extended expiration time for confirming bridge # to 120 secs (from 15 secs) that should deal with message bridge confirm popup error message Also now after successfull delete / change IP# and (re-)pair bridge the config menu goes back to first step: "Select action for the bridge"
| Released on: | June 4, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 32 times |
| Download this release | |
fix bug: is not a dimmer device restructured config menu to make it easier to understand for manaing bridges in config flow is now - select action (add(pair) / modify(IP) / delete) - select select bridge # - then set new Ip# .. - confirm with success / failure popup messages ==> should be easy to understand now
changed error logging to std python error logging added code to check if devices are "orphaned" ie have no bridge or a non existing bridge associated * *** this version requires python3 ie only runs uder indigo 2022.1 and later ***
| Released on: | June 2, 2022 |
| Requires: | Indigo v2022.1.0+ |
| Downloaded: | 31 times |
| Download this release | |
bug fix: auto create hue devices did not set rgb white etc properties correctly bug fix: save preset error minor menu text changes in device light and group edit: - only current device is shown - if not created yet (=new dev) only NOT used hue devices (ie no indigo dev) are shown additions to menu print hue info ie print hue dev but no corresponding indigo dev and visa versa, some more formatted info for other print xxx menu options made MANY more things table driven, not hard coded in plugin, ie supports-xx xx= batterylevel rgb, white, onoff, sensorvalue, is dimmerdevice etc. all is set in file supportedDevices.py *added functionality to scan network for hue bridges. this done in the backgroud every 5 minutes (using /usr/bin/dns-sd functionality ) the list of network scan found bridges is available in config when you want to add a new bridge in config you can ask to have the scan run immediately. if you already know the ipnumber of your bridge this is not needed, but the ip # field is filled out automatically
| v1.10.24 | Requires Indigo v7.0.2 thru v2022.2 | Released May 22, 2022 | several updates, stability and formatting |
| Released on: | May 22, 2022 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 38 times |
| Download this release | |
several bug fixes config menu was rewritten, should make it much easier to setup / modify bridge settings etc reduces error messages if wrong parameters are set etc. logging/debug toggle in menu and detailed logging selection in config some language clarification in menus * *** still runs under indigo 2022.1 and earlier *** * *** if no other MAJOR bugs found, this should be the last version that uns under Python2 ***
| v1.10.21 | Requires Indigo v7.0.2 thru v2022.2 | Released May 13, 2022 | Last release for Indigo using Python 2 |
| Released on: | May 13, 2022 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 87 times |
| Download this release | |
This will be the last release of the plugin for Indigo 2021.2 and earlier. It will also work on Indigo 2022.1, but most likely will not after that. The next version will be using the new 3.0 (Python 3) API introduced in 2022.1.
| v1.8.7 | Requires Indigo v7.0.2 thru v2022.2 | Released Feb. 25, 2022 | Fixed some bugs and added option to switch logging on/off |
| Released on: | Feb. 25, 2022 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 78 times |
| Download this release | |
Special thanks to forum user kw123 for providing code fixing support.
| v1.8.0 | Requires Indigo v7.0.2 thru v2022.2 | Released Feb. 5, 2022 | New Features: Multiple bridge support and no need to manually add support for every light. |
| Released on: | Feb. 5, 2022 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
Special thanks to forum user kw123 for providing the code to support these new features.
| v1.7.65 | Requires Indigo v7.0.2 thru v2022.2 | Released Jan. 27, 2022 | Added support for a number of new lights. |
| Released on: | Jan. 27, 2022 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 79 times |
| Download this release | |
| v1.7.64 | Requires Indigo v7.0.2 thru v2022.2 | Released Jan. 12, 2022 | Added support for a few new lights. |
| Released on: | Jan. 12, 2022 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.7.63 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 27, 2021 | Added support for 2 new Hue outdoor Lily spotlights. |
| Released on: | Dec. 27, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 33 times |
| Download this release | |
| v1.7.62 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 8, 2021 | Added support for a number of new devices |
| Released on: | Dec. 8, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 47 times |
| Download this release | |
| v1.7.61 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 10, 2021 | Fixed syntax error bug in version 1.7.60. |
| Released on: | Nov. 10, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 28 times |
| Download this release | |
| v1.7.60 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 10, 2021 | Added support for more Hue lights and an Innr plug |
| Released on: | Nov. 10, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 30 times |
| Download this release | |
| v1.7.59 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 23, 2021 | Added support for a number of new lights |
| Released on: | Oct. 23, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 34 times |
| Download this release | |
| v1.7.58 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 25, 2021 | Added support for the Lightway/Megos E27 806 lumen bulb. |
| Released on: | Sept. 25, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 38 times |
| Download this release | |
| Released on: | Sept. 13, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.7.56 | Requires Indigo v7.0.2 thru v2022.2 | Released Aug. 1, 2021 | Added support for another Hue light, an IKEA light and an innr light. |
| Released on: | Aug. 1, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 30 times |
| Download this release | |
| v1.7.55 | Requires Indigo v7.0.2 thru v2022.2 | Released June 14, 2021 | Added support for another Hue Ambiance GU10 bulb model. |
| Released on: | June 14, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 35 times |
| Download this release | |
| v1.7.54 | Requires Indigo v7.0.2 thru v2022.2 | Released May 30, 2021 | Fixed another bug that would cause an error if a light strip only supported color temperature. |
| Released on: | May 30, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 34 times |
| Download this release | |
| v1.7.53 | Requires Indigo v7.0.2 thru v2022.2 | Released May 24, 2021 | Added compatibility with another Hue Amarant light. |
| Released on: | May 24, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 30 times |
| Download this release | |
| v1.7.52 | Requires Indigo v7.0.2 thru v2022.2 | Released May 16, 2021 | Fixed a bug that would cause an error if a light strip only supported color temperature. |
| Released on: | May 16, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 43 times |
| Download this release | |
| v1.7.51 | Requires Indigo v7.0.2 thru v2022.2 | Released April 30, 2021 | Added support for the Hue Argenta color spot and an innr A19 color bulb |
| Released on: | April 30, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 42 times |
| Download this release | |
| v1.7.50 | Requires Indigo v7.0.2 thru v2022.2 | Released April 20, 2021 | Fixed a bug that would cause a state key error to appear in the Indigo log with wall switch modules |
| Released on: | April 20, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 28 times |
| Download this release | |
| v1.7.49 | Requires Indigo v7.0.2 thru v2022.2 | Released April 19, 2021 | Added support for new lights, the Hue Wall Switch and no ON/OFF ramp rates. Plus a bug fix. |
| Released on: | April 19, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.7.48 | Requires Indigo v7.0.2 thru v2022.2 | Released April 7, 2021 | Added support for another GLEDOPTO color and color temperature light. |
| Released on: | April 7, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 40 times |
| Download this release | |
| v1.7.47 | Requires Indigo v7.0.2 thru v2022.2 | Released March 24, 2021 | Added support for a number of new lights and a new dimmer switch version |
| Released on: | March 24, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.7.46 | Requires Indigo v7.0.2 thru v2022.2 | Released March 7, 2021 | Fixed a scene recall bug and Preset compatibility with Hue Group devices |
| Released on: | March 7, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 30 times |
| Download this release | |
| v1.7.45 | Requires Indigo v7.0.2 thru v2022.2 | Released March 3, 2021 | Added support for more lights. Fixed bug when recalling Hue scenes in rare cases |
| Released on: | March 3, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.7.44 | Requires Indigo v7.0.2 thru v2022.2 | Released Feb. 6, 2021 | Added support for a few more lights |
| Released on: | Feb. 6, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.7.43 | Requires Indigo v7.0.2 thru v2022.2 | Released Jan. 12, 2021 | Added support for multiple new devices |
| Released on: | Jan. 12, 2021 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 70 times |
| Download this release | |
| v1.7.42 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 10, 2020 | Added support for multiple new devices |
| Released on: | Dec. 10, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 32 times |
| Download this release | |
| v1.7.41 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 23, 2020 | Fixed support for a Hue white and color GU10 bulb. |
| Released on: | Nov. 23, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 43 times |
| Download this release | |
| v1.7.40 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 22, 2020 | Added support for a new Hue white and color GU10 bulb. |
| Released on: | Nov. 22, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 38 times |
| Download this release | |
| v1.7.39 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 13, 2020 | Added support for new lights and fixed a white slider bug |
| Released on: | Nov. 13, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| Released on: | Oct. 29, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 41 times |
| Download this release | |
| v1.7.37 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 7, 2020 | Fixed a scene selection bug and added support for another Hue white light |
| Released on: | Oct. 7, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.7.36 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 19, 2020 | Fixed a bug that caused a plugin error when recalling a Hue scene. |
| Released on: | Sept. 19, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 29 times |
| Download this release | |
| v1.7.35 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 12, 2020 | Added support for 3 new lighting devices and 1 new on/off plug device. |
| Released on: | Sept. 12, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 32 times |
| Download this release | |
| v1.7.34 | Requires Indigo v7.0.2 thru v2022.2 | Released Aug. 23, 2020 | Set RGBW Levels and LightStrip bug fixes |
| Released on: | Aug. 23, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 33 times |
| Download this release | |
| v1.7.33 | Requires Indigo v7.0.2 thru v2022.2 | Released June 14, 2020 | Fixed Hue Adore compatibility and added support for another ambiance bulb |
| Released on: | June 14, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.7.32 | Requires Indigo v7.0.2 thru v2022.2 | Released June 5, 2020 | Added support for a few new Hue lights. Improved scripted RGB behavior |
| Released on: | June 5, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 38 times |
| Download this release | |
| v1.7.31 | Requires Indigo v7.0.2 thru v2022.2 | Released May 16, 2020 | Fixed but that caused an error in the Save and Recall Preset plugin menu |
| Released on: | May 16, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.7.30 | Requires Indigo v7.0.2 thru v2022.2 | Released May 11, 2020 | Added support for more Hue light models |
| Released on: | May 11, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 40 times |
| Download this release | |
| v1.7.29 | Requires Indigo v7.0.2 thru v2022.2 | Released April 19, 2020 | Added support for another Hue dimmable light. Bug fixes |
| Released on: | April 19, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.7.28 | Requires Indigo v7.0.2 thru v2022.2 | Released April 15, 2020 | Fixed a few bugs and added support for Innr Flex Color RGBW LED strips |
| Released on: | April 15, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 33 times |
| Download this release | |
| v1.7.27 | Requires Indigo v7.0.2 thru v2022.2 | Released March 15, 2020 | Fixed a bug that would cause the plugin to crash updating non-color light strips |
| Released on: | March 15, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 34 times |
| Download this release | |
| v1.7.26 | Requires Indigo v7.0.2 thru v2022.2 | Released March 12, 2020 | Added support for a number of new lights and the Niko switch. Bug fixes. |
| Released on: | March 12, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 37 times |
| Download this release | |
| Released on: | Feb. 7, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 32 times |
| Download this release | |
| v1.7.24 | Requires Indigo v7.0.2 thru v2022.2 | Released Jan. 2, 2020 | Added support for the Hue Smart Button and added a new stop brighten/dim action |
| Released on: | Jan. 2, 2020 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 35 times |
| Download this release | |
| v1.7.23 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 26, 2019 | Fixed a bug that could cause the plugin to crash with certain characters in Hue device names. |
| Released on: | Dec. 26, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 34 times |
| Download this release | |
| v1.7.22 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 24, 2019 | Added support for a new Hue white ambiance bulb and another IKEA color temperature bulb |
| Released on: | Dec. 24, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 29 times |
| Download this release | |
| v1.7.21 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 11, 2019 | Added support for 2 new IKEA lights a new Hue Smart Plug version and a new Hue BR30 light |
| Released on: | Dec. 11, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 38 times |
| Download this release | |
| v1.7.20 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 5, 2019 | Added support for 2 new Hue lights. |
| Released on: | Dec. 5, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 29 times |
| Download this release | |
| Released on: | Dec. 1, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 33 times |
| Download this release | |
| v1.7.18 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 20, 2019 | Added support for a few more IKEA lights. |
| Released on: | Nov. 20, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 43 times |
| Download this release | |
| v1.7.17 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 15, 2019 | Added support for a new Philips A19 dimmable light. |
| Released on: | Nov. 15, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 29 times |
| Download this release | |
| v1.7.16 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 12, 2019 | Added support for a new filament bulb and OSRAM plug. Fixed log size issue. Fixed Innr plug issue. |
| Released on: | Nov. 12, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 52 times |
| Download this release | |
| v1.7.15 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 8, 2019 | Added support for a new Hue Ambiance E26 and LED filament G93 bulb and the UK version of Smart Plug |
| Released on: | Nov. 8, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 50 times |
| Download this release | |
| v1.7.14 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 1, 2019 | Added support for 2 new Hue dimming only filament decorative LED bulbs |
| Released on: | Nov. 1, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.7.13 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 31, 2019 | Added support for 2 new Hue dimming only GU10 lights |
| Released on: | Oct. 31, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 28 times |
| Download this release | |
| v1.7.12 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 28, 2019 | Added support for an Ikea E27 and 400 lumen E14 light |
| Released on: | Oct. 28, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 40 times |
| Download this release | |
| v1.7.11 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 25, 2019 | Added support for a 3 new lights. |
| Released on: | Oct. 25, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 75 times |
| Download this release | |
| v1.7.10 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 22, 2019 | * Fixed a bug with the Hue Smart Plug and with toggling of Hue dimmable devices. New bulb support. |
| Released on: | Sept. 22, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 37 times |
| Download this release | |
| v1.7.9 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 18, 2019 | Fixed a bug with Hue Group devices that prevented the Set Brightness from working |
| Released on: | Sept. 18, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.7.8 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 18, 2019 | Fixed a bug that would cause the Hue Smart Plug device states to never update. |
| Released on: | Sept. 18, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 33 times |
| Download this release | |
| v1.7.7 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 17, 2019 | Added support for Hue Outdoor Lucca and Hue Smart Plug. |
| Released on: | Sept. 17, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 32 times |
| Download this release | |
| v1.7.6 | Requires Indigo v7.0.2 thru v2022.2 | Released July 12, 2019 | Bug fix for motion sensors that are turned off on the Hue bridge |
| Released on: | July 12, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 52 times |
| Download this release | |
| v1.7.5 | Requires Indigo v7.0.2 thru v2022.2 | Released May 29, 2019 | Added support for the Hue White PAR-38 flood light. |
| Released on: | May 29, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 35 times |
| Download this release | |
Added support for the Hue White PAR-38 flood light.
| v1.7.4 | Requires Indigo v7.0.2 thru v2022.2 | Released May 12, 2019 | More frequent sensor and light readings. Support for Innr RS-228T GU10 light. |
| Released on: | May 12, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 40 times |
| Download this release | |
| v1.7.3 | Requires Indigo v7.0.2 thru v2022.2 | Released March 31, 2019 | Added Hue Signe Floor light support. Run Less Wire switch support changes. |
| Released on: | March 31, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 41 times |
| Download this release | |
| v1.7.2 | Requires Indigo v7.0.2 thru v2022.2 | Released March 27, 2019 | Fixed various Run Less Wire switch support bugs |
| Released on: | March 27, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 30 times |
| Download this release | |
| v1.7.1 | Requires Indigo v7.0.2 thru v2022.2 | Released March 26, 2019 | Added support for the Run Less Wire Switch |
| Released on: | March 26, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.7.0 | Requires Indigo v7.0.2 thru v2022.2 | Released March 25, 2019 | Added Hue Tap and Hue Dimmer Switch support |
| Released on: | March 25, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 32 times |
| Download this release | |
| v1.6.29 | Requires Indigo v7.0.2 thru v2022.2 | Released March 15, 2019 | Added support for Hue Outdoor Motion Sensor and another GLEDOPTO light |
| Released on: | March 15, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 32 times |
| Download this release | |
| v1.6.28 | Requires Indigo v7.0.2 thru v2022.2 | Released Jan. 28, 2019 | Added support for another Innr light and fixed a Hue Motion temperature sensor update bug |
| Released on: | Jan. 28, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 41 times |
| Download this release | |
| v1.6.27 | Requires Indigo v7.0.2 thru v2022.2 | Released Jan. 19, 2019 | Added support for a GLEDOPTO dimmable LED controller. |
| Released on: | Jan. 19, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 35 times |
| Download this release | |
| v1.6.26 | Requires Indigo v7.0.2 thru v2022.2 | Released Jan. 5, 2019 | Added support for another Hue Ambiance Ceiling light variant. |
| Released on: | Jan. 5, 2019 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 37 times |
| Download this release | |
| v1.6.25 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 16, 2018 | Added support for the IKEA dimmable 980 lumen E27 color temperature bulb. |
| Released on: | Dec. 16, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 39 times |
| Download this release | |
| v1.6.24 | Requires Indigo v7.0.2 thru v2022.2 | Released Dec. 10, 2018 | Added support for the Feibit Inc. LED strip controller. |
| Released on: | Dec. 10, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.6.23 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 2, 2018 | Added support for another GLEDOPTO light strip and Hue Play |
| Released on: | Nov. 2, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 32 times |
| Download this release | |
| v1.6.22 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 25, 2018 | Added support for new light and fixed a potential UI bug |
| Released on: | Oct. 25, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 38 times |
| Download this release | |
| v1.6.21 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 15, 2018 | Added support for the Dredesn Elektronik FLS-CT lp LED and generic ZigBee light strip |
| Released on: | Oct. 15, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 64 times |
| Download this release | |
| v1.6.20 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 5, 2018 | Added support for the ShenZhen Homa white and color LED light strip controller. |
| Released on: | Oct. 5, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.6.19 | Requires Indigo v7.0.2 thru v2022.2 | Released Oct. 1, 2018 | Added support for 2 new Osram devices and a second Hue LightStrip |
| Released on: | Oct. 1, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 36 times |
| Download this release | |
| v1.6.18 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 29, 2018 | Added Hue LightStrips Outdoor Support |
| Released on: | Sept. 29, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.6.17 | Requires Indigo v7.0.2 thru v2022.2 | Released Sept. 11, 2018 | Fixed a bug in the sensor device update function. |
| Released on: | Sept. 11, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 40 times |
| Download this release | |
Fixed a bug in the sensor device update function that could cause errors when updating motion sensor status in some situations.
| v1.6.16 | Requires Indigo v7.0.2 thru v2022.2 | Released Aug. 30, 2018 | Added support for the Hue outdoor lily spotlight and Hue outdoor pedestal light. |
| Released on: | Aug. 30, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 30 times |
| Download this release | |
Added support for the Hue outdoor lily spotlight and Hue outdoor pedestal light.
| v1.6.15 | Requires Indigo v7.0.2 thru v2022.2 | Released Aug. 9, 2018 | Added support for the Hue calla pathway bollard light. |
| Released on: | Aug. 9, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 28 times |
| Download this release | |
Added support for the Hue calla pathway bollard light.
| v1.6.14 | Requires Indigo v7.0.2 thru v2022.2 | Released July 13, 2018 | Added support for the Osram Gardenpole Mini RGBW |
| Released on: | July 13, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.6.13 | Requires Indigo v7.0.2 thru v2022.2 | Released June 18, 2018 | Added support for 2 new 3rd party lights. |
| Released on: | June 18, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 31 times |
| Download this release | |
| v1.6.12 | Requires Indigo v7.0.2 thru v2022.2 | Released May 7, 2018 | Support for the IKEA 30 Watt dimmable LED transformer |
| Released on: | May 7, 2018 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 28 times |
| Download this release | |
| v1.6.10 | Requires Indigo v7.0.2 thru v2022.2 | Released Nov. 20, 2017 | Hue Lights - Free Philips Hue Plugin |
| Released on: | Nov. 20, 2017 |
| Requires: | Indigo v7.0.2 thru v2022.2 |
| Downloaded: | 32 times |
| Download this release | |
Requires Indigo 7.0 or later.