FabGL
ESP32 Display Controller and Graphics Library
Others/KeyboardScanCodes/KeyboardScanCodes.ino

PS/2 keyboard scan codes

/*
Created by Fabrizio Di Vittorio (fdivitto2013@gmail.com) - <http://www.fabgl.com>
Copyright (c) 2019-2022 Fabrizio Di Vittorio.
All rights reserved.
* Please contact fdivitto2013@gmail.com if you need a commercial license.
* This library and related software is available under GPL v3.
FabGL is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
FabGL is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FabGL. If not, see <http://www.gnu.org/licenses/>.
*/
#include "fabgl.h"
fabgl::VGATextController DisplayController;
fabgl::Terminal Terminal;
fabgl::PS2Controller PS2Controller;
void xprintf(const char * format, ...)
{
va_list ap;
va_start(ap, format);
int size = vsnprintf(nullptr, 0, format, ap) + 1;
if (size > 0) {
va_end(ap);
va_start(ap, format);
char buf[size + 1];
vsnprintf(buf, size, format, ap);
Serial.write(buf);
Terminal.write(buf);
}
va_end(ap);
}
void printHelp()
{
xprintf("\e[93m\n\nPS/2 Keyboard Scancodes\r\n");
xprintf("Chip Revision: %d Chip Frequency: %d MHz\r\n", ESP.getChipRevision(), ESP.getCpuFreqMHz());
printInfo();
xprintf("Commands:\r\n");
xprintf(" q = Scancode set 1 w = Scancode set 2\r\n");
xprintf(" l = Test LEDs r = Reset keyboard\r\n");
xprintf("Various:\r\n");
xprintf(" h = Print This help\r\n\n");
xprintf("Use Serial Monitor to issue commands\r\n\n");
}
void printInfo()
{
auto keyboard = PS2Controller.keyboard();
if (keyboard->isKeyboardAvailable()) {
xprintf("Device Id = ");
switch (keyboard->identify()) {
case PS2DeviceType::OldATKeyboard:
xprintf("\"Old AT Keyboard\"");
break;
case PS2DeviceType::MouseStandard:
xprintf("\"Standard Mouse\"");
break;
case PS2DeviceType::MouseWithScrollWheel:
xprintf("\"Mouse with scroll wheel\"");
break;
case PS2DeviceType::Mouse5Buttons:
xprintf("\"5 Buttons Mouse\"");
break;
case PS2DeviceType::MF2KeyboardWithTranslation:
xprintf("\"MF2 Keyboard with translation\"");
break;
case PS2DeviceType::M2Keyboard:
xprintf("\"MF2 keyboard\"");
break;
default:
xprintf("\"Unknown\"");
break;
}
xprintf("\r\n", keyboard->getLayout()->name);
} else
xprintf("Keyboard Error!\r\n");
}
void setup()
{
Serial.begin(115200);
delay(500); // avoid garbage into the UART
Serial.write("\r\n\nReset\r\n");
DisplayController.begin();
DisplayController.setResolution();
Terminal.begin(&DisplayController);
Terminal.enableCursor(true);
PS2Controller.begin(PS2Preset::KeyboardPort0, KbdMode::NoVirtualKeys);
printHelp();
}
void loop()
{
static int clen = 1;
auto keyboard = PS2Controller.keyboard();
if (Serial.available() > 0) {
char c = Serial.read();
switch (c) {
case 'h':
printHelp();
break;
case 'r':
keyboard->reset();
printInfo();
break;
case 'l':
for (int i = 0; i < 8; ++i) {
keyboard->setLEDs(i & 1, i & 2, i & 4);
delay(1000);
}
delay(2000);
if (keyboard->setLEDs(0, 0, 0))
xprintf("OK\r\n");
break;
case 'q':
keyboard->setScancodeSet(1);
xprintf("Scancode Set = %d\r\n", keyboard->scancodeSet());
break;
case 'w':
keyboard->setScancodeSet(2);
xprintf("Scancode Set = %d\r\n", keyboard->scancodeSet());
break;
}
}
if (keyboard->scancodeAvailable()) {
int scode = keyboard->getNextScancode();
xprintf("%02X ", scode);
if (scode == 0xF0 || scode == 0xE0) ++clen;
--clen;
if (clen == 0) {
clen = 1;
xprintf("\r\n");
}
}
}
static Keyboard * keyboard()
Returns the instance of Keyboard object automatically created by PS2Controller.
static void begin(gpio_num_t port0_clkGPIO, gpio_num_t port0_datGPIO, gpio_num_t port1_clkGPIO=GPIO_UNUSED, gpio_num_t port1_datGPIO=GPIO_UNUSED)
Initializes PS2 device controller.
The PS2 device controller class.
Definition: ps2controller.h:82
size_t write(const uint8_t *buffer, size_t size)
Sends specified number of codes to the display.
Definition: terminal.cpp:1958
void enableCursor(bool value)
Enables or disables cursor.
Definition: terminal.cpp:1115
bool begin(BaseDisplayController *displayController, int maxColumns=-1, int maxRows=-1, Keyboard *keyboard=nullptr)
Initializes the terminal.
Definition: terminal.cpp:323
An ANSI-VT100 compatible display terminal.
Definition: terminal.h:953
void begin(gpio_num_t redGPIO, gpio_num_t greenGPIO, gpio_num_t blueGPIO, gpio_num_t HSyncGPIO, gpio_num_t VSyncGPIO)
This is the 8 colors (5 GPIOs) initializer.
void setResolution(char const *modeline=nullptr, int viewPortWidth=-1, int viewPortHeight=-1, bool doubleBuffered=false)
Sets fixed resolution.
Represents the VGA text-only controller.
This file is the all in one include file. Application can just include this file to use FabGL library...