Update 'code.c.ino'
This commit is contained in:
parent
dee279a789
commit
a1933c04df
79
code.c.ino
79
code.c.ino
|
@ -1,15 +1,19 @@
|
||||||
#include <PS2KeyAdvanced.h>
|
#include <PS2KeyAdvanced.h>
|
||||||
|
#include <Wire.h>
|
||||||
|
#include <LiquidCrystal_I2C.h>
|
||||||
#include "enigma_types.h"
|
#include "enigma_types.h"
|
||||||
|
#include "HCuOLED.h"
|
||||||
#define DATAPIN 2
|
#include "SPI.h"
|
||||||
|
#define DATAPIN 4
|
||||||
#define IRQPIN 3
|
#define IRQPIN 3
|
||||||
|
#define CS_DI 10
|
||||||
|
#define DC_DI 9
|
||||||
|
#define RST_DI 8
|
||||||
PS2KeyAdvanced keyboard;
|
PS2KeyAdvanced keyboard;
|
||||||
|
HCuOLED HCuOLED(SH1106, CS_DI, DC_DI, RST_DI); // For SH1106 displays (HCMODU0058 & HCMODU0059)
|
||||||
|
// Set the LCD address to 0x27 for a 16 chars and 2 line display
|
||||||
|
LiquidCrystal_I2C lcd(0x27, 16, 2);
|
||||||
|
|
||||||
// Сконвертировать HEX значение клавиши
|
|
||||||
// в её алфавитный индекс;
|
|
||||||
//
|
|
||||||
// возвращает индекс буквы
|
|
||||||
size_t toKeyIndex(const String& input_hex)
|
size_t toKeyIndex(const String& input_hex)
|
||||||
{
|
{
|
||||||
size_t index = -1;
|
size_t index = -1;
|
||||||
|
@ -25,11 +29,6 @@ size_t toKeyIndex(const String& input_hex)
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Взять текущий сдвиг в алфавите.
|
|
||||||
// Считается суммарно по всем дискам в положении
|
|
||||||
// на момент вызова;
|
|
||||||
//
|
|
||||||
// возвращает текущий индекс с применением сдвига
|
|
||||||
size_t shift(size_t index)
|
size_t shift(size_t index)
|
||||||
{
|
{
|
||||||
for (size_t i = 0; i < WHEELS_AMOUNT; ++i)
|
for (size_t i = 0; i < WHEELS_AMOUNT; ++i)
|
||||||
|
@ -40,12 +39,44 @@ size_t shift(size_t index)
|
||||||
return index % ALPHABET_SIZE;
|
return index % ALPHABET_SIZE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////////////////////////////////////////////
|
void rotate()
|
||||||
|
{
|
||||||
|
++key_shifts[0];
|
||||||
|
if (key_shifts[0] == 26)
|
||||||
|
{
|
||||||
|
key_shifts[0] = 1;
|
||||||
|
++key_shifts[1];
|
||||||
|
if (key_shifts[1] == 26)
|
||||||
|
{
|
||||||
|
key_shifts[1] = 1;
|
||||||
|
++key_shifts[2];
|
||||||
|
if (key_shifts[2] == 26)
|
||||||
|
{
|
||||||
|
key_shifts[2] = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Serial.print(key_shifts[0]);
|
||||||
|
Serial.print(" ");
|
||||||
|
Serial.print(key_shifts[1]);
|
||||||
|
Serial.print(" ");
|
||||||
|
Serial.print(key_shifts[2]);
|
||||||
|
Serial.println(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
String lcd_output;
|
||||||
|
|
||||||
void setup()
|
void setup()
|
||||||
{
|
{
|
||||||
|
HCuOLED.Reset();
|
||||||
keyboard.begin(DATAPIN, IRQPIN);
|
keyboard.begin(DATAPIN, IRQPIN);
|
||||||
Serial.begin(115200);
|
Serial.begin(115200);
|
||||||
|
// initialize the LCD
|
||||||
|
lcd.begin();
|
||||||
|
|
||||||
|
// Turn on the blacklight and print a message.
|
||||||
|
lcd.backlight();
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop()
|
void loop()
|
||||||
|
@ -62,6 +93,26 @@ void loop()
|
||||||
if (index == -1)
|
if (index == -1)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
rotate();
|
||||||
|
|
||||||
const String encoded_letter = key_values[shift(index)].view;
|
const String encoded_letter = key_values[shift(index)].view;
|
||||||
// отправить encoded_letter на экран
|
size_t y = 0;
|
||||||
|
for (size_t i = 0; i < WHEELS_AMOUNT; ++i)
|
||||||
|
{
|
||||||
|
HCuOLED.Cursor(4,y);
|
||||||
|
HCuOLED.SetFont(MedProp_11pt);
|
||||||
|
HCuOLED.Print(key_shifts[i]);
|
||||||
|
y += 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lcd_output.length() == 16)
|
||||||
|
{
|
||||||
|
lcd.setCursor(0, 0);
|
||||||
|
lcd_output = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
lcd_output = (lcd_output + encoded_letter);
|
||||||
|
|
||||||
|
lcd.clear();
|
||||||
|
lcd.print(lcd_output);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue