keybrd library is an open source library for creating custom-keyboard firmware.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

1234567891011
  1. #include "LED_Port.h"
  2. void LED_Port::on()
  3. {
  4. refPort.writeHigh(pin);
  5. }
  6. void LED_Port::off()
  7. {
  8. refPort.writeLow(pin);
  9. }