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_3b_multi-layerLock/keybrd_3b_multi-layerLock.ino

92 lines
2.4 KiB
Arduino
Raw Normal View History

2016-09-20 03:59:05 +00:00
/* keybrd_3b_multi-layerLock.ino
2016-05-09 14:05:08 +00:00
This sketch:
2016-07-18 02:03:03 +00:00
is firmware for a simple 2-layer keyboard
2016-05-09 14:05:08 +00:00
runs on the first two rows and columns of a breadboard keyboard
| Layout | **0** | **1** |
2016-09-20 01:46:03 +00:00
|:------:|:-----:|:-----:|
| **0** | a - | b = |
| **1** |Normal | Sym |
Pressing the "Normal" layer key locks the Normal layer.
Letters 'a' 'b' are on the Normal layer.
Pressing the "Sym" layer key locks the Sym layer.
Symbols '-' '=' are on the Sym layer.
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>
#include <Key_LayeredKeys.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-07-18 02:03:03 +00:00
uint8_t readPins[] = {14, 15};
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-05-09 14:05:08 +00:00
/*
The Code_LayerLock constructor has two parameters:
1) the layerId that becomes the active layer when the key is pressed
2) a LayerState that will keep track of the active layer
When l_normal is pressed, NORMAL becomes the active layer.
When l_sym is pressed, SYM becomes the active layer.
2016-05-09 14:05:08 +00:00
*/
2016-09-20 01:46:03 +00:00
Code_LayerLock l_normal(NORMAL, layerState);
Code_LayerLock l_sym(SYM, layerState);
2016-05-09 14:05:08 +00:00
// ---------------- SCAN CODES -----------------
Code_Sc s_a(KEY_A);
Code_Sc s_b(KEY_B);
Code_Sc s_minus(KEY_MINUS);
Code_Sc s_equal(KEY_EQUAL);
2016-09-20 01:46:03 +00:00
// =================== KEYS ====================
Key* const ptrsCodes_00[] = { &s_a, &s_minus };
2016-09-20 01:46:03 +00:00
Key_LayeredKeys k_00(ptrsCodes_00);
2016-05-09 14:05:08 +00:00
Key* const ptrsCodes_01[] = { &s_b, &s_equal };
2016-09-20 01:46:03 +00:00
Key_LayeredKeys k_01(ptrsCodes_01);
2016-07-18 02:03:03 +00:00
LayerStateInterface& Key_LayeredKeys::refLayerState = layerState;
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 };
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 };
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
}