Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/tutorials/keybrd_3d_sublayerNestedKeys/keybrd_3d_sublayerNestedKeys.ino

122 lines
3.3 KiB
Arduino
Raw Normal View History

2016-09-20 01:46:03 +00:00
/* keybrd_3d_sublayerNested.ino
2016-05-09 14:05:08 +00:00
This sketch:
is firmware for layout with 2 layers plus 1 sublayer.
runs on the first three columns of a breadboard keyboard
2016-05-09 14:05:08 +00:00
2016-09-20 01:46:03 +00:00
| Layout | **0** | **1** | **2** |
|:------:|:-----:|:-----:|:-----:|
| **0** | a - 1 | b = | c Num |
| **1** |Normal | Sym | Enter |
2016-05-09 14:05:08 +00:00
*/
// ################## GLOBAL ###################
// ================= INCLUDES ==================
2016-07-18 02:03:03 +00:00
//Keys
2016-05-09 14:05:08 +00:00
#include <Code_Sc.h>
2016-05-28 21:16:32 +00:00
#include <LayerState.h>
2016-09-20 01:46:03 +00:00
#include <Code_LayerLock.h>
2016-05-09 14:05:08 +00:00
#include <Code_LayerHold.h>
#include <Key_LayeredKeys.h>
2016-09-20 03:59:05 +00:00
#include <Key_LayeredKeys1.h>
2016-05-09 14:05:08 +00:00
//Matrix
#include <Row.h>
#include <Scanner_uC.h>
2016-07-18 02:03:03 +00:00
#include <ScanDelay.h>
2016-05-09 14:05:08 +00:00
2016-07-18 02:03:03 +00:00
// ============ SPEED CONFIGURATION ============
ScanDelay scanDelay(9000);
2016-05-09 14:05:08 +00:00
// ================== SCANNER ==================
2016-09-20 01:46:03 +00:00
uint8_t readPins[] = {14, 15, 16};
uint8_t readPinCount = sizeof(readPins)/sizeof(*readPins);
Scanner_uC scanner(LOW, readPins, readPinCount);
2016-05-09 14:05:08 +00:00
// =================== CODES ===================
// ----------------- LAYER CODE ----------------
2016-09-20 01:46:03 +00:00
enum layers { NORMAL, SYM };
2016-07-18 02:03:03 +00:00
2016-05-28 21:16:32 +00:00
LayerState layerState;
2016-07-18 02:03:03 +00:00
2016-09-20 01:46:03 +00:00
Code_LayerLock l_normal(NORMAL, layerState);
Code_LayerLock l_sym(SYM, layerState);
/*
Key_LayeredKeys are associated with layerState.
*/
LayerStateInterface& Key_LayeredKeys::refLayerState = layerState;
/* ---------------- SUBLAYER CODE --------------
Sublayers are implemented just like main layers.
Here the Num sublayer is given it's own proper LayerState.
*/
2016-09-20 01:46:03 +00:00
enum subLayers { SUBSYM, SUBNUM };
LayerState sublayerState;
Code_LayerHold l_num(SUBNUM, sublayerState);
/*
Key_LayeredKeys1 are associated with sublayerState.
Key_LayeredKeys (in layer) and Key_LayeredKeys1 (in sublayer) classes are nearly identical,
only the static refLayerState are different.
*/
2016-09-20 03:59:05 +00:00
LayerStateInterface& Key_LayeredKeys1::refLayerState = sublayerState;
2016-05-09 14:05:08 +00:00
// ---------------- SCAN CODES -----------------
Code_Sc s_a(KEY_A);
Code_Sc s_b(KEY_B);
2016-09-20 01:46:03 +00:00
Code_Sc s_c(KEY_C);
Code_Sc s_minus(KEY_MINUS);
Code_Sc s_equal(KEY_EQUAL);
Code_Sc s_enter(KEY_ENTER);
2016-05-09 14:05:08 +00:00
Code_Sc s_1(KEY_1);
2016-07-18 02:03:03 +00:00
/* =================== KEYS ====================
The key k_sub00 contains codes for layerIds SUBSYM and SUBNUM.
(The Num sublayer only has one key because small example. Usually sublayers have multiple keys.)
2016-05-09 14:05:08 +00:00
*/
2016-09-20 03:59:05 +00:00
Key* const ptrsCodes_sub00[] = { &s_minus, &s_1 };
Key_LayeredKeys1 k_sub00(ptrsCodes_sub00);
/*
k_sub00 is nested in k_00.
The key k_00 contains code and key for layerIds NORMAL and SYS.
Notice that k_sub00 is of type Key_LayeredKeys1, while k_00 is of type Key_LayeredKeys.
k_sub00 and k_00 are associated with distinct LayerStates.
*/
2016-09-20 03:59:05 +00:00
Key* const ptrsCodes_00[] = { &s_a, &k_sub00 };
2016-09-20 01:46:03 +00:00
Key_LayeredKeys k_00(ptrsCodes_00);
2016-07-18 02:03:03 +00:00
2016-09-20 01:46:03 +00:00
Key* const ptrsCodes_01[] = { &s_b, &s_equal };
Key_LayeredKeys k_01(ptrsCodes_01);
Key* const ptrsCodes_02[] = { &s_c, &l_num };
Key_LayeredKeys k_02(ptrsCodes_02);
2016-05-09 14:05:08 +00:00
// =================== ROWS ====================
2016-09-20 01:46:03 +00:00
Key* const ptrsKeys_0[] = { &k_00, &k_01, &k_02 };
uint8_t keyCount_0 = sizeof(ptrsKeys_0)/sizeof(*ptrsKeys_0);
Row row_0(scanner, 0, ptrsKeys_0, keyCount_0);
2016-05-09 14:05:08 +00:00
2016-09-20 01:46:03 +00:00
Key* const ptrsKeys_1[] = { &l_normal, &l_sym, &s_enter };
uint8_t keyCount_1 = sizeof(ptrsKeys_1)/sizeof(*ptrsKeys_1);
Row row_1(scanner, 1, ptrsKeys_1, keyCount_1);
2016-05-09 14:05:08 +00:00
// ################### MAIN ####################
void setup()
{
Keyboard.begin();
}
void loop()
{
2016-07-18 02:03:03 +00:00
row_0.process();
row_1.process();
scanDelay.delay();
2016-05-09 14:05:08 +00:00
}