diff options
author | keyhive <42986966+keyhive@users.noreply.github.com> | 2019-05-05 23:01:43 -0600 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-05-05 22:01:43 -0700 |
commit | fbc40032e73ee80db961c3930a2b5d84ffd51a6f (patch) | |
tree | 931a62cb78ec30a6218007c2937030e17273e4b8 /keyboards/ut472/ut472.c | |
parent | e96d196dc985072a30cdc5a520c37e9533894cbf (diff) | |
download | qmk_firmware-fbc40032e73ee80db961c3930a2b5d84ffd51a6f.tar.gz |
[Keyboard] add ut47.2 (#5788)
* adding ut47.2
adding ut47.2
* Update keyboards/ut472/ut472.c
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/rules.mk
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/ut472.c
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/rules.mk
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* changed shift enter special keys to KC_SFTENT
changed shift enter special keys to KC_SFTENT
* Update keyboards/ut472/ut472.h
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/ut472.h
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/ut472.h
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/readme.md
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* Update keyboards/ut472/readme.md
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* updated for sourcing
updated for sourcing
* Update keyboards/ut472/readme.md
Co-Authored-By: keyhive <42986966+keyhive@users.noreply.github.com>
* changed flash to make
changed flash to make
Diffstat (limited to 'keyboards/ut472/ut472.c')
-rw-r--r-- | keyboards/ut472/ut472.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/keyboards/ut472/ut472.c b/keyboards/ut472/ut472.c new file mode 100644 index 000000000..c0686d661 --- /dev/null +++ b/keyboards/ut472/ut472.c @@ -0,0 +1,13 @@ +#include "ut472.h" + +void matrix_init_kb(void) { + // Keyboard start-up code goes here + // Runs once when the firmware starts up + matrix_init_user(); +}; + +void matrix_scan_kb(void) { + // Looping keyboard code goes here + // This runs every cycle (a lot) + matrix_scan_user(); +}; |