apds9960.txt 477 B

123456789101112131415161718192021
  1. * Avago APDS9960 gesture/RGB/ALS/proximity sensor
  2. http://www.avagotech.com/docs/AV02-4191EN
  3. Required properties:
  4. - compatible: must be "avago,apds9960"
  5. - reg: the I2c address of the sensor
  6. - interrupts : the sole interrupt generated by the device
  7. Refer to interrupt-controller/interrupts.txt for generic interrupt client
  8. node bindings.
  9. Example:
  10. apds9960@39 {
  11. compatible = "avago,apds9960";
  12. reg = <0x39>;
  13. interrupt-parent = <&gpio1>;
  14. interrupts = <16 1>;
  15. };