apds9300.txt 460 B

12345678910111213141516171819202122
  1. * Avago APDS9300 ambient light sensor
  2. http://www.avagotech.com/docs/AV02-1077EN
  3. Required properties:
  4. - compatible : should be "avago,apds9300"
  5. - reg : the I2C address of the sensor
  6. Optional properties:
  7. - interrupt-parent : should be the phandle for the interrupt controller
  8. - interrupts : interrupt mapping for GPIO IRQ
  9. Example:
  10. apds9300@39 {
  11. compatible = "avago,apds9300";
  12. reg = <0x39>;
  13. interrupt-parent = <&gpio2>;
  14. interrupts = <29 8>;
  15. };