Browse Source

x68k_usb: Add toggle LED sample

master
tmk 8 years ago
parent
commit
3c109203c3
1 changed files with 14 additions and 1 deletions
  1. 14
    1
      converter/x68k_usb/keymap.c

+ 14
- 1
converter/x68k_usb/keymap.c View File

#include "keycode.h" #include "keycode.h"
#include "action.h" #include "action.h"
#include "util.h" #include "util.h"
#include "serial.h"
#include "keymap.h" #include "keymap.h"








static const uint16_t fn_actions[] PROGMEM = { static const uint16_t fn_actions[] PROGMEM = {
[0] = ACTION_FUNCTION(0), // toggle all LEDs
}; };


void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
{ {
static bool led = false;
switch (id) {
case 0:
if (record->event.pressed) {
if ((led = !led))
serial_send(0x80); // all on
else
serial_send(0xff); // all off
}
break;
}
} }




*/ */
/* ANSI */ /* ANSI */
KEYMAP( KEYMAP(
F16, F17, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, PSCR,SLCK,PAUS, CAPS,F11, F12, F13,
FN0, F17, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, PSCR,SLCK,PAUS, CAPS,F11, F12, F13,
ESC, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, BSLS,BSPC, HOME,INS, DEL, NLCK,PSLS,PAST,PMNS, ESC, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, BSLS,BSPC, HOME,INS, DEL, NLCK,PSLS,PAST,PMNS,
TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC, ENT, PGDN,PGUP,END, P7, P8, P9, PPLS, TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC, ENT, PGDN,PGUP,END, P7, P8, P9, PPLS,
LCTL,A, S, D, F, G, H, J, K, L, SCLN,QUOT,F18, UP, P4, P5, P6, PEQL, LCTL,A, S, D, F, G, H, J, K, L, SCLN,QUOT,F18, UP, P4, P5, P6, PEQL,