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.

LED_uC.cpp 200B

12345678910111213141516
  1. #include "LED_uC.h"
  2. LED_uC::LED_uC(const uint8_t pin) : pin(pin)
  3. {
  4. pinMode(pin, OUTPUT);
  5. }
  6. void LED_uC::on()
  7. {
  8. digitalWrite(pin, HIGH);
  9. }
  10. void LED_uC::off()
  11. {
  12. digitalWrite(pin, LOW);
  13. }