ht16k33.h 777 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2019 Henrik Brix Andersen <henrik@brixandersen.dk>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_LED_HT16K33_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_LED_HT16K33_H_
  8. #include <drivers/kscan.h>
  9. /**
  10. * Register a HT16K33 keyscan device to be notified of relevant
  11. * keyscan events by the keyscan interrupt thread in the HT16K33
  12. * parent driver.
  13. *
  14. * @param parent HT16K33 parent device.
  15. * @param child HT16K33 child device.
  16. * @param callback Keyscan callback function.
  17. * @return 0 if successful, negative errno code on failure.
  18. */
  19. int ht16k33_register_keyscan_callback(const struct device *parent,
  20. const struct device *child,
  21. kscan_callback_t callback);
  22. #endif /* ZEPHYR_INCLUDE_DRIVERS_LED_HT16K33_H_ */