used the arduino standard astyle invocation

pull/18/head
Jesse Vincent 11 years ago
parent 48a21e3492
commit 21d337fd05

@ -16,8 +16,8 @@ void setup();
//add your function definitions for the project KeyboardIO here //add your function definitions for the project KeyboardIO here
typedef struct { typedef struct {
byte flags; byte flags;
byte rawKey; byte rawKey;
} Key; } Key;
@ -26,60 +26,60 @@ typedef struct {
boolean key_was_pressed (byte keyState) boolean key_was_pressed (byte keyState)
{ {
if ( byte((keyState >> 4)) ^ B00001111 ) { if ( byte((keyState >> 4)) ^ B00001111 ) {
return false; return false;
} else { } else {
return true; return true;
} }
} }
boolean key_was_not_pressed (byte keyState) boolean key_was_not_pressed (byte keyState)
{ {
if ( byte((keyState >> 4)) ^ B00000000 ) { if ( byte((keyState >> 4)) ^ B00000000 ) {
return false; return false;
} else { } else {
return true; return true;
} }
} }
boolean key_is_pressed (byte keyState) boolean key_is_pressed (byte keyState)
{ {
if ( byte((keyState << 4)) ^ B11110000 ) { if ( byte((keyState << 4)) ^ B11110000 ) {
return false; return false;
} else { } else {
return true; return true;
} }
} }
boolean key_is_not_pressed (byte keyState) boolean key_is_not_pressed (byte keyState)
{ {
if ( byte((keyState << 4)) ^ B00000000 ) { if ( byte((keyState << 4)) ^ B00000000 ) {
return false; return false;
} else { } else {
return true; return true;
} }
} }
boolean key_toggled_on(byte keyState) boolean key_toggled_on(byte keyState)
{ {
if (key_is_pressed(keyState) && key_was_not_pressed(keyState)) { if (key_is_pressed(keyState) && key_was_not_pressed(keyState)) {
return true; return true;
} else { } else {
return false; return false;
} }
} }
boolean key_toggled_off(byte keyState) boolean key_toggled_off(byte keyState)
{ {
if (key_was_pressed(keyState) && key_is_not_pressed(keyState)) { if (key_was_pressed(keyState) && key_is_not_pressed(keyState)) {
return true; return true;
} else { } else {
return false; return false;
} }
} }

@ -46,237 +46,237 @@ byte current_layer = 0;
void release_keys_not_being_pressed() void release_keys_not_being_pressed()
{ {
// we use charsReportedLastTime to figure out what we might not be holding anymore and can now release. this is destructive to charsReportedLastTime // we use charsReportedLastTime to figure out what we might not be holding anymore and can now release. this is destructive to charsReportedLastTime
for (byte i=0; i<KEYS_HELD_BUFFER; i++) { for (byte i = 0; i < KEYS_HELD_BUFFER; i++) {
// for each key we were holding as of the end of the last cycle // for each key we were holding as of the end of the last cycle
// see if we're still holding it // see if we're still holding it
// if we're not, call an explicit Release // if we're not, call an explicit Release
if (charsReportedLastTime[i] != 0x00) { if (charsReportedLastTime[i] != 0x00) {
// if there _was_ a character in this slot, go check the // if there _was_ a character in this slot, go check the
// currently held characters // currently held characters
for (byte j=0; j<KEYS_HELD_BUFFER; j++) { for (byte j = 0; j < KEYS_HELD_BUFFER; j++) {
if (charsReportedLastTime[i] == charsBeingReported[j]) { if (charsReportedLastTime[i] == charsBeingReported[j]) {
// if's still held, we don't need to do anything. // if's still held, we don't need to do anything.
charsReportedLastTime[i] = 0x00; charsReportedLastTime[i] = 0x00;
break; break;
}
}
} }
}
} }
for (byte i=0; i<KEYS_HELD_BUFFER; i++) { }
if (charsReportedLastTime[i] != 0x00) { for (byte i = 0; i < KEYS_HELD_BUFFER; i++) {
Keyboard.release(charsReportedLastTime[i]); if (charsReportedLastTime[i] != 0x00) {
} Keyboard.release(charsReportedLastTime[i]);
} }
}
} }
void record_key_being_pressed(byte character) void record_key_being_pressed(byte character)
{ {
for (byte i=0; i<KEYS_HELD_BUFFER; i++) { for (byte i = 0; i < KEYS_HELD_BUFFER; i++) {
// todo - deal with overflowing the 12 key buffer here // todo - deal with overflowing the 12 key buffer here
if (charsBeingReported[i] == 0x00) { if (charsBeingReported[i] == 0x00) {
charsBeingReported[i] = character; charsBeingReported[i] = character;
break; break;
}
} }
}
} }
void reset_matrix() void reset_matrix()
{ {
for (byte col = 0; col < COLS; col++) { for (byte col = 0; col < COLS; col++) {
for (byte row = 0; row < ROWS; row++) { for (byte row = 0; row < ROWS; row++) {
matrixState[row][col] <<= 1; matrixState[row][col] <<= 1;
}
}
for (byte i=0; i<KEYS_HELD_BUFFER; i++) {
charsReportedLastTime[i] = charsBeingReported[i];
charsBeingReported[i] = 0x00;
} }
}
for (byte i = 0; i < KEYS_HELD_BUFFER; i++) {
charsReportedLastTime[i] = charsBeingReported[i];
charsBeingReported[i] = 0x00;
}
} }
void handle_synthetic_key_press(byte switchState,Key mappedKey) { void handle_synthetic_key_press(byte switchState, Key mappedKey) {
if(mappedKey.flags & IS_CONSUMER) { if (mappedKey.flags & IS_CONSUMER) {
if (key_toggled_on (switchState)) { if (key_toggled_on (switchState)) {
Keyboard.consumerControl(mappedKey.rawKey); Keyboard.consumerControl(mappedKey.rawKey);
} }
} }
else if(mappedKey.flags & IS_SYSCTL) { else if (mappedKey.flags & IS_SYSCTL) {
if (key_toggled_on (switchState)) { if (key_toggled_on (switchState)) {
Keyboard.systemControl(mappedKey.rawKey); Keyboard.systemControl(mappedKey.rawKey);
} }
} }
else if(mappedKey.flags & IS_MACRO) { else if (mappedKey.flags & IS_MACRO) {
if (key_toggled_on (switchState)) { if (key_toggled_on (switchState)) {
if (mappedKey.rawKey == 1) { if (mappedKey.rawKey == 1) {
Keyboard.print("Keyboard.IO keyboard driver v0.00"); Keyboard.print("Keyboard.IO keyboard driver v0.00");
} }
} }
} else if (mappedKey.rawKey == KEY_MOUSE_BTN_L } else if (mappedKey.rawKey == KEY_MOUSE_BTN_L
|| mappedKey.rawKey == KEY_MOUSE_BTN_M || mappedKey.rawKey == KEY_MOUSE_BTN_M
|| mappedKey.rawKey == KEY_MOUSE_BTN_R) { || mappedKey.rawKey == KEY_MOUSE_BTN_R) {
if (key_toggled_on (switchState)) { if (key_toggled_on (switchState)) {
Mouse.press(mappedKey.rawKey); Mouse.press(mappedKey.rawKey);
} else if (key_is_pressed(switchState)) { } else if (key_is_pressed(switchState)) {
} else if (Mouse.isPressed(mappedKey.rawKey) ) { } else if (Mouse.isPressed(mappedKey.rawKey) ) {
Mouse.release(mappedKey.rawKey); Mouse.release(mappedKey.rawKey);
} }
} }
} }
void handle_mouse_key_press(byte switchState, Key mappedKey, char &x, char &y) { void handle_mouse_key_press(byte switchState, Key mappedKey, char &x, char &y) {
if (key_is_pressed(switchState)) { if (key_is_pressed(switchState)) {
if (mappedKey.rawKey & MOUSE_UP) { if (mappedKey.rawKey & MOUSE_UP) {
y-=1; y -= 1;
} }
if (mappedKey.rawKey & MOUSE_DN) { if (mappedKey.rawKey & MOUSE_DN) {
y+= 1; y += 1;
} }
if (mappedKey.rawKey & MOUSE_L) { if (mappedKey.rawKey & MOUSE_L) {
x-= 1; x -= 1;
} }
if (mappedKey.rawKey & MOUSE_R) { if (mappedKey.rawKey & MOUSE_R) {
x+= 1 ; x += 1 ;
} }
} }
} }
void send_key_events(byte layer) void send_key_events(byte layer)
{ {
//for every newly pressed button, figure out what logical key it is and send a key down event //for every newly pressed button, figure out what logical key it is and send a key down event
// for every newly released button, figure out what logical key it is and send a key up event // for every newly released button, figure out what logical key it is and send a key up event
// TODO:switch to sending raw HID packets // TODO:switch to sending raw HID packets
// really, these are signed small ints // really, these are signed small ints
char x = 0; char x = 0;
char y = 0; char y = 0;
for (byte row = 0; row < ROWS; row++) { for (byte row = 0; row < ROWS; row++) {
for (byte col = 0; col < COLS; col++) { for (byte col = 0; col < COLS; col++) {
byte switchState = matrixState[row][col]; byte switchState = matrixState[row][col];
Key mappedKey = keymaps[layer][row][col]; Key mappedKey = keymaps[layer][row][col];
if (mappedKey.flags & MOUSE_KEY ) { if (mappedKey.flags & MOUSE_KEY ) {
handle_mouse_key_press(matrixState[row][col], keymaps[layer][row][col],x,y); handle_mouse_key_press(matrixState[row][col], keymaps[layer][row][col], x, y);
} else if (mappedKey.flags & SYNTHETIC_KEY) { } else if (mappedKey.flags & SYNTHETIC_KEY) {
handle_synthetic_key_press(matrixState[row][col], keymaps[layer][row][col]); handle_synthetic_key_press(matrixState[row][col], keymaps[layer][row][col]);
} }
else { else {
if (key_is_pressed(switchState)) { if (key_is_pressed(switchState)) {
record_key_being_pressed(mappedKey.rawKey); record_key_being_pressed(mappedKey.rawKey);
if (key_toggled_on (switchState)) { if (key_toggled_on (switchState)) {
Keyboard.press(mappedKey.rawKey); Keyboard.press(mappedKey.rawKey);
} }
} else if (key_toggled_off (switchState)) { } else if (key_toggled_off (switchState)) {
Keyboard.release(mappedKey.rawKey); Keyboard.release(mappedKey.rawKey);
}
}
} }
}
} }
handle_mouse_movement(x,y); }
release_keys_not_being_pressed(); handle_mouse_movement(x, y);
release_keys_not_being_pressed();
} }
void setup_matrix() void setup_matrix()
{ {
//set up the row pins as outputs //set up the row pins as outputs
for (byte row = 0; row < ROWS; row++) {
pinMode(rowPins[row], OUTPUT);
digitalWrite(rowPins[row], HIGH);
}
for (byte col = 0; col < COLS; col++) {
pinMode(colPins[col], INPUT);
digitalWrite(colPins[col], HIGH);
//drive em high by default s it seems to be more reliable than driving em low
}
//blank out the matrix.
for (byte col = 0; col < COLS; col++) {
for (byte row = 0; row < ROWS; row++) { for (byte row = 0; row < ROWS; row++) {
pinMode(rowPins[row], OUTPUT); matrixState[row][col] = 0;
digitalWrite(rowPins[row], HIGH);
}
for (byte col = 0; col < COLS; col++) {
pinMode(colPins[col], INPUT);
digitalWrite(colPins[col], HIGH);
//drive em high by default s it seems to be more reliable than driving em low
}
//blank out the matrix.
for (byte col = 0; col < COLS; col++) {
for (byte row = 0; row < ROWS; row++) {
matrixState[row][col] = 0;
}
} }
}
} }
void scan_matrix() void scan_matrix()
{ {
byte active_layer = current_layer; byte active_layer = current_layer;
//scan the Keyboard matrix looking for connections
for (byte row = 0; row < ROWS; row++) {
digitalWrite(rowPins[row], LOW);
for (byte col = 0; col < COLS; col++) {
//If we see an electrical connection on I->J,
if (digitalRead(colPins[col])) {
matrixState[row][col] |= 0; // noop. just here for clarity
} else {
matrixState[row][col] |= 1; // noop. just here for clarity
}
// while we're inspecting the electrical matrix, we look
// to see if the Key being held is a firmware level
// metakey, so we can act on it, lest we only discover
// that we should be looking at a seconary Keymap halfway through the matrix scan
//scan the Keyboard matrix looking for connections
for (byte row = 0; row < ROWS; row++) {
digitalWrite(rowPins[row], LOW);
for (byte col = 0; col < COLS; col++) {
//If we see an electrical connection on I->J,
if (digitalRead(colPins[col])) {
matrixState[row][col] |= 0; // noop. just here for clarity
} else {
matrixState[row][col] |= 1; // noop. just here for clarity
}
// while we're inspecting the electrical matrix, we look
// to see if the Key being held is a firmware level
// metakey, so we can act on it, lest we only discover
// that we should be looking at a seconary Keymap halfway through the matrix scan
// this logic sucks. there is a better way TODO this
if (! (keymaps[active_layer][row][col].flags ^ ( MOMENTARY | SWITCH_TO_LAYER))) {
if (key_is_pressed(matrixState[row][col])) {
if ( keymaps[current_layer][row][col].rawKey == LAYER_NEXT) {
active_layer++;
} else if ( keymaps[current_layer][row][col].rawKey == LAYER_PREVIOUS) {
active_layer--;
} else {
active_layer = keymaps[current_layer][row][col].rawKey;
}
}
} else if (! (keymaps[active_layer][row][col].flags ^ ( SWITCH_TO_LAYER))) {
// switch layer and stay there
if (key_toggled_on(matrixState[row][col])) {
current_layer = active_layer = keymaps[current_layer][row][col].rawKey;
save_current_layer(current_layer);
}
}
// this logic sucks. there is a better way TODO this
if (! (keymaps[active_layer][row][col].flags ^ ( MOMENTARY | SWITCH_TO_LAYER))) {
if (key_is_pressed(matrixState[row][col])) {
if ( keymaps[current_layer][row][col].rawKey == LAYER_NEXT) {
active_layer++;
} else if ( keymaps[current_layer][row][col].rawKey == LAYER_PREVIOUS) {
active_layer--;
} else {
active_layer = keymaps[current_layer][row][col].rawKey;
}
} }
digitalWrite(rowPins[row], HIGH); } else if (! (keymaps[active_layer][row][col].flags ^ ( SWITCH_TO_LAYER))) {
// switch layer and stay there
if (key_toggled_on(matrixState[row][col])) {
current_layer = active_layer = keymaps[current_layer][row][col].rawKey;
save_current_layer(current_layer);
}
}
} }
send_key_events(active_layer); digitalWrite(rowPins[row], HIGH);
}
send_key_events(active_layer);
} }
void setup() void setup()
{ {
//usbMaxPower = 100; //usbMaxPower = 100;
Serial.begin(115200); Serial.begin(115200);
Keyboard.begin(); Keyboard.begin();
Mouse.begin(); Mouse.begin();
//#ifdef DEBUG_SERIAL //#ifdef DEBUG_SERIAL
//#endif //#endif
setup_matrix(); setup_matrix();
Serial.println("loaded the matrix"); Serial.println("loaded the matrix");
current_layer = load_current_layer(); current_layer = load_current_layer();
} }
void loop() void loop()
{ {
scan_matrix(); scan_matrix();
// report_matrix(); // report_matrix();
reset_matrix(); reset_matrix();
} }

@ -3,30 +3,30 @@
void report_matrix() void report_matrix()
{ {
#ifdef DEBUG_SERIAL #ifdef DEBUG_SERIAL
if (reporting_counter++ %100 == 0 ) { if (reporting_counter++ % 100 == 0 ) {
for (byte row = 0; row < ROWS; row++) { for (byte row = 0; row < ROWS; row++) {
for (byte col = 0; col < COLS; col++) { for (byte col = 0; col < COLS; col++) {
Serial.print(matrixState[row][col],HEX); Serial.print(matrixState[row][col], HEX);
Serial.print(", "); Serial.print(", ");
} }
Serial.println(""); Serial.println("");
}
Serial.println("");
} }
Serial.println("");
}
#endif #endif
} }
void report(byte row, byte col, boolean value) void report(byte row, byte col, boolean value)
{ {
#ifdef DEBUG_SERIAL #ifdef DEBUG_SERIAL
Serial.print("Detected a change on "); Serial.print("Detected a change on ");
Serial.print(col); Serial.print(col);
Serial.print(" "); Serial.print(" ");
Serial.print(row); Serial.print(row);
Serial.print(" to "); Serial.print(" to ");
Serial.print(value); Serial.print(value);
Serial.println("."); Serial.println(".");
#endif #endif
} }

@ -3,16 +3,16 @@
void save_current_layer(byte layer) void save_current_layer(byte layer)
{ {
EEPROM.write(EEPROM_LAYER_LOCATION, layer); EEPROM.write(EEPROM_LAYER_LOCATION, layer);
} }
byte load_current_layer() byte load_current_layer()
{ {
byte layer = EEPROM.read(EEPROM_LAYER_LOCATION); byte layer = EEPROM.read(EEPROM_LAYER_LOCATION);
if (layer >= LAYERS ) { if (layer >= LAYERS ) {
return 0; // undefined positions get saved as 255 return 0; // undefined positions get saved as 255
} }
return layer; return layer;
} }

@ -1,59 +1,59 @@
double mouseActiveForCycles = 0; double mouseActiveForCycles = 0;
float carriedOverX =0; float carriedOverX = 0;
float carriedOverY =0; float carriedOverY = 0;
double mouse_accel (double cycles) double mouse_accel (double cycles)
{ {
double accel = atan((cycles/50)-5); double accel = atan((cycles / 50) - 5);
accel += 1.5707963267944; // we want the whole s curve, not just the bit that's usually above the x and y axes; accel += 1.5707963267944; // we want the whole s curve, not just the bit that's usually above the x and y axes;
accel = accel *0.85; accel = accel * 0.85;
if (accel<0.25) { if (accel < 0.25) {
accel =0.25; accel = 0.25;
} }
return accel; return accel;
} }
void handle_mouse_movement( char x, char y) void handle_mouse_movement( char x, char y)
{ {
if (x!=0 || y!=0) { if (x != 0 || y != 0) {
mouseActiveForCycles++; mouseActiveForCycles++;
double accel = (double) mouse_accel(mouseActiveForCycles); double accel = (double) mouse_accel(mouseActiveForCycles);
float moveX=0; float moveX = 0;
float moveY=0; float moveY = 0;
if (x>0) { if (x > 0) {
moveX = (x*accel) + carriedOverX; moveX = (x * accel) + carriedOverX;
carriedOverX = moveX - floor(moveX); carriedOverX = moveX - floor(moveX);
} else if(x<0) { } else if (x < 0) {
moveX = (x*accel) - carriedOverX; moveX = (x * accel) - carriedOverX;
carriedOverX = ceil(moveX) - moveX; carriedOverX = ceil(moveX) - moveX;
} }
if (y >0) { if (y > 0) {
moveY = (y*accel) + carriedOverY; moveY = (y * accel) + carriedOverY;
carriedOverY = moveY - floor(moveY); carriedOverY = moveY - floor(moveY);
} else if (y<0) { } else if (y < 0) {
moveY = (y*accel) - carriedOverY; moveY = (y * accel) - carriedOverY;
carriedOverY = ceil(moveY) - moveY; carriedOverY = ceil(moveY) - moveY;
} }
#ifdef DEBUG_SERIAL #ifdef DEBUG_SERIAL
Serial.println(); Serial.println();
Serial.print("cycles: "); Serial.print("cycles: ");
Serial.println(mouseActiveForCycles); Serial.println(mouseActiveForCycles);
Serial.print("Accel: "); Serial.print("Accel: ");
Serial.print(accel); Serial.print(accel);
Serial.print(" moveX is "); Serial.print(" moveX is ");
Serial.print(moveX); Serial.print(moveX);
Serial.print(" moveY is "); Serial.print(" moveY is ");
Serial.print(moveY); Serial.print(moveY);
Serial.print(" carriedoverx is "); Serial.print(" carriedoverx is ");
Serial.print(carriedOverX); Serial.print(carriedOverX);
Serial.print(" carriedOverY is "); Serial.print(" carriedOverY is ");
Serial.println(carriedOverY); Serial.println(carriedOverY);
#endif #endif
Mouse.move(moveX,moveY, 0); Mouse.move(moveX, moveY, 0);
} else { } else {
mouseActiveForCycles=0; mouseActiveForCycles = 0;
} }
} }

Loading…
Cancel
Save