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.

16 lines
722 B

[Keyboard] adding keyboard: neuron (#7980) * neuron * Update keyboards/walletburner/neuron/neuron.h Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/neuron.h Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/config.h Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/config.h Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/config.h Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/rules.mk Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/rules.mk Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/rules.mk Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/rules.mk Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/rules.mk Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * Update keyboards/walletburner/neuron/readme.md Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update keyboards/walletburner/neuron/readme.md Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update keyboards/walletburner/neuron/readme.md Co-Authored-By: Drashna Jaelre <drashna@live.com> * Committed review suggestions * Corrected bootloader to use atmel-dfu * One last tweak to correct MANUFACTURER Co-authored-by: ridingqwerty <george.g.koenig@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
4 years ago
  1. #pragma once
  2. #include "quantum.h"
  3. #define LAYOUT( \
  4. K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, \
  5. K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K111, \
  6. K200, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, \
  7. K301, K302, K303, K306, K308, K310, K311 \
  8. ) { \
  9. { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011 }, \
  10. { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, KC_NO, K111 }, \
  11. { K200, KC_NO, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211 }, \
  12. { KC_NO, K301, K302, K303, KC_NO, KC_NO, K306, KC_NO, K308, KC_NO, K310, K311 } \
  13. }