Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/device-tree/Bindings/iio/light/apds9300.txt
48406 views
1
* Avago APDS9300 ambient light sensor
2
3
https://www.avagotech.com/docs/AV02-1077EN
4
5
Required properties:
6
7
- compatible : should be "avago,apds9300"
8
- reg : the I2C address of the sensor
9
10
Optional properties:
11
12
- interrupts : interrupt mapping for GPIO IRQ
13
14
Example:
15
16
apds9300@39 {
17
compatible = "avago,apds9300";
18
reg = <0x39>;
19
interrupt-parent = <&gpio2>;
20
interrupts = <29 8>;
21
};
22
23