LightLevelReport

@Serializable
data class LightLevelReport(val changed: Instant, val lightLevel: Illuminance)

Report containing light level sensor data.

Constructors

Link copied to clipboard
constructor(changed: Instant, lightLevel: Illuminance)

Properties

Link copied to clipboard

Last time the value of this property was changed.

Link copied to clipboard
@SerialName(value = "light_level")
@Serializable(with = ScaledLuxSerializer::class)
val lightLevel: Illuminance

Light level measured by sensor.