Why did Adaptive Lighting disappear when I added lights over Matter?
Adaptive Lighting is an Apple Home feature rather than a Matter feature, and appears only when the accessory meets Apple's published requirements. Apple's Adaptive Lighting over Matter accessory requirements, Release R1, specify Matter 1.1 or later and the Color Control cluster exposing ColorTemperatureMireds and ColorMode, plus support for the MoveColorTemperature command. A Matter light lacking continuous colour-temperature control will not offer the feature.
Last checked: against Apple Developer, Adaptive Lighting over Matter — Accessory Requirements, Release R1
The requirements, as Apple publishes them
Apple's Adaptive Lighting over Matter — Accessory Requirements, Release R1, sets a floor of Matter 1.1 or later and names three clusters the accessory must implement:
| Cluster | ID | Required elements |
|---|---|---|
| Color Control | 0x0300 | ColorTemperatureMireds (0x0007), ColorMode (0x0008), MoveColorTemperature command |
| Level Control | 0x0008 | CurrentLevel (0x0000) |
| On/Off | 0x0006 | OnOff (0x0000) |
The load-bearing item is MoveColorTemperature. Adaptive Lighting shifts colour temperature continuously across the day, so the accessory must accept a move command rather than only discrete temperature settings. A light that exposes fixed presets satisfies Color Control in a general sense and still fails this requirement.
Why a "Matter certified" light can fail the test
Nothing in Matter certification requires an accessory to implement the optional parts of Color Control. Certification attests that what the device claims to implement, it implements correctly. Adaptive Lighting sits on top: Apple defines the feature, Apple publishes what an accessory must expose, and Apple Home shows the toggle only when those conditions are met.
This is the same pattern as "Works with Apple Home" not being the same as Matter certified — the platform layers its own requirements above the standard, and the standard's badge does not carry them.
Why the feature can vanish on an unchanged bulb
The common report is that Adaptive Lighting worked and then stopped after the light was moved onto Matter. Two documented mechanisms explain that without anything having broken:
- The route changed, and with it the capability set. A light previously paired over HomeKit Accessory Protocol presented HomeKit's capability model. Re-paired over Matter it presents Matter clusters, and if its Matter implementation omits MoveColorTemperature the requirement above is no longer met. Same bulb, different interface, different answer.
- The bridge is now the accessory. A light reached through a Matter bridge is represented by whatever the bridge exposes. The bridge's Matter implementation, not the bulb's native capability, determines what Apple Home sees. Apple lists bridges as a supported Matter accessory type, with no guarantee that a bridged endpoint carries every attribute the native device had.
Checking before you buy
Manufacturers rarely publish cluster-level detail, so the reliable public signals are indirect:
- Does the maker state Adaptive Lighting support for the Matter version of the product specifically? Wording that refers to HomeKit rather than Matter is a warning sign, since the two paths differ exactly here.
- Does the product state a Matter version of 1.1 or later? Below that, Apple's floor is not met.
- Is it reached through a bridge? If so, the bridge's capabilities govern.
The wider pattern
Colour temperature is one attribute among many that survives or does not survive the trip from device to platform. Google's supported-clusters table lists Color Control mapping to its ColorSetting trait, so the cluster itself travels widely; the platform-specific feature built from it does not. For the general case of features that stay behind, see whether the manufacturer's app is still needed.
Related questions
Exactly what must the accessory implement?
Apple's Release R1 document requires the Color Control cluster (0x0300) with the ColorTemperatureMireds attribute (0x0007) and the ColorMode attribute (0x0008) and support for the MoveColorTemperature command; the Level Control cluster (0x0008) with CurrentLevel (0x0000); and the On/Off cluster (0x0006) with OnOff (0x0000).
Is Adaptive Lighting part of the Matter standard?
No. It is an Apple Home behaviour built on top of standard Matter clusters. Apple publishes accessory requirements for it separately from the Matter specification, which is why a Matter-certified light can be fully compliant and still not offer it.
Can the feature be recovered without repairing the light?
Not by a setting. If the accessory does not meet the requirements above, Apple Home has nothing to drive. Some lights expose an equivalent circadian mode in the manufacturer's own app, which is a separate feature with separate behaviour.