aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/percent/canoe/readme.md
blob: d8a496f26c810853f38bf2cb9bb039c0e6d7d872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Canoe

A 65% keyboard with some RGB

* Keyboard Maintainer: QMK Community
* Hardware Supported: Canoe
* Hardware Availability: <https://geekhack.org/index.php?topic=92418.0>

Make example for this keyboard (after setting up your build environment):

    make percent/canoe:default

Flashing example for this keyboard ([after setting up the bootloadHID flashing environment](https://docs.qmk.fm/#/flashing_bootloadhid))

    make percent/canoe:default:flash

See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "canoe.h" void keyboard_pre_init_kb(void) { led_init_ports(); keyboard_pre_init_user(); } void led_init_ports(void) { setPinOutput(D1); } bool led_update_kb(led_t led_state) { if (led_update_user(led_state)) { writePin(D1, led_state.caps_lock); } return true; }