-
-
Notifications
You must be signed in to change notification settings - Fork 39.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
define new keyboard "thedogkeyboard" #7401
Conversation
@@ -0,0 +1,19 @@ | |||
/* Copyright 2019 kakunpc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file can be deleted.
@@ -0,0 +1,19 @@ | |||
/* Copyright 2019 kakunpc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file can be deleted.
void matrix_init_user(void) { | ||
} | ||
|
||
void matrix_scan_user(void) { | ||
|
||
} | ||
|
||
void led_set_user(uint8_t usb_led) { | ||
|
||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These functions can be removed.
// Optional override functions below. | ||
// You can leave any or all of these undefined. | ||
// These are only required if you want to perform custom actions. | ||
|
||
/* | ||
|
||
void matrix_init_kb(void) { | ||
// put your keyboard start-up code here | ||
// runs once when the firmware starts up | ||
|
||
matrix_init_user(); | ||
} | ||
|
||
void matrix_scan_kb(void) { | ||
// put your looping keyboard code here | ||
// runs every cycle (a lot) | ||
|
||
matrix_scan_user(); | ||
} | ||
|
||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
// put your per-action keyboard code here | ||
// runs for every action, just before processing by the firmware | ||
|
||
return process_record_user(keycode, record); | ||
} | ||
|
||
void led_set_kb(uint8_t usb_led) { | ||
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
|
||
led_set_user(usb_led); | ||
} | ||
|
||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of this can be deleted.
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
Thank you for the code review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
* add the dog keyboard * set rgbled * fix info.json and readme.md * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * update thedogkeyboard
* add the dog keyboard * set rgbled * fix info.json and readme.md * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * update thedogkeyboard
* add the dog keyboard * set rgbled * fix info.json and readme.md * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/thedogkeyboard/readme.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com> * update thedogkeyboard
Description
Types of Changes
Issues Fixed or Closed by This PR
Checklist