// Copyright 2025 The Fuchsia Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
@available(added=HEAD) | |
library fuchsia.hardware.lightsensor; | |
using zx; | |
@serializable | |
type Metadata = table { | |
1: gain uint8; | |
2: integration_time zx.Duration; | |
/// 0 means no polling. | |
3: polling_time zx.Duration; | |
}; |