keybrd library is an open source library for creating custom-keyboard firmware.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

Code_Null.h 290B

1234567891011121314
  1. #ifndef CODE_NULL_H
  2. #define CODE_NULL_H
  3. #include <Arduino.h>
  4. #include <Code.h>
  5. /* Class Code_Null doesn't do anything. It is usefull for blank codes.
  6. */
  7. class Code_Null: public Code
  8. {
  9. public:
  10. virtual void press() {};
  11. virtual void release() {};
  12. };
  13. #endif