You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
4.3 KiB
136 lines
4.3 KiB
/* -*- mode: c++ -*-
|
|
* kaleidoscope::device::dygma::Raise -- Kaleidoscope device plugin for Dygma Raise
|
|
* Copyright (C) 2017-2019 Keyboard.io, Inc
|
|
* Copyright (C) 2017-2019 Dygma Lab S.L.
|
|
*
|
|
* This program 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, version 3.
|
|
*
|
|
* This program 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
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifdef ARDUINO_SAMD_RAISE
|
|
|
|
#include "kaleidoscope/Runtime.h"
|
|
#include <Kaleidoscope-FocusSerial.h>
|
|
#include "kaleidoscope/device/dygma/raise/Focus.h"
|
|
|
|
namespace kaleidoscope {
|
|
namespace device {
|
|
namespace dygma {
|
|
namespace raise {
|
|
|
|
#ifndef RAISE_FIRMWARE_VERSION
|
|
#define RAISE_FIRMWARE_VERSION "<unknown>"
|
|
#endif
|
|
|
|
EventHandlerResult Focus::onFocusEvent(const char *command) {
|
|
if (::Focus.handleHelp(command, PSTR("hardware.version\nhardware.side_power\nhardware.side_ver\nhardware.sled_ver\nhardware.sled_current\nhardware.layout\nhardware.joint\nhardware.keyscan\nhardware.crc_errors\nhardware.firmware")))
|
|
return EventHandlerResult::OK;
|
|
|
|
if (strncmp_P(command, PSTR("hardware."), 9) != 0)
|
|
return EventHandlerResult::OK;
|
|
|
|
if (strcmp_P(command + 9, PSTR("version")) == 0) {
|
|
::Focus.send("Dygma Raise");
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("firmware")) == 0) {
|
|
::Focus.send(RAISE_FIRMWARE_VERSION);
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("side_power")) == 0) {
|
|
if (::Focus.isEOL()) {
|
|
::Focus.send(Runtime.device().side.getPower());
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
} else {
|
|
uint8_t power;
|
|
::Focus.read(power);
|
|
Runtime.device().side.setPower(power);
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("side_ver")) == 0) {
|
|
::Focus.send("left:");
|
|
::Focus.send(Runtime.device().side.leftVersion());
|
|
::Focus.send("\nright:");
|
|
::Focus.send(Runtime.device().side.rightVersion());
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("crc_errors")) == 0) {
|
|
::Focus.send("left:");
|
|
::Focus.send(Runtime.device().side.leftCRCErrors());
|
|
::Focus.send("\nright:");
|
|
::Focus.send(Runtime.device().side.rightCRCErrors());
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("sled_ver")) == 0) {
|
|
::Focus.send("left:");
|
|
::Focus.send(Runtime.device().side.leftSLEDVersion());
|
|
::Focus.send("\nright:");
|
|
::Focus.send(Runtime.device().side.rightSLEDVersion());
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("sled_current")) == 0) {
|
|
if (::Focus.isEOL()) {
|
|
::Focus.send("left:");
|
|
::Focus.send(Runtime.device().side.leftSLEDCurrent());
|
|
::Focus.send("\nright:");
|
|
::Focus.send(Runtime.device().side.rightSLEDCurrent());
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
} else {
|
|
uint8_t current;
|
|
::Focus.read(current);
|
|
Runtime.device().side.setSLEDCurrent(current);
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("layout")) == 0) {
|
|
static const auto ANSI = Runtime.device().settings.Layout::ANSI;
|
|
::Focus.send(Runtime.device().settings.layout() == ANSI ? "ANSI" : "ISO");
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("joint")) == 0) {
|
|
::Focus.send(Runtime.device().settings.joint());
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
|
|
if (strcmp_P(command + 9, PSTR("keyscan")) == 0) {
|
|
if (::Focus.isEOL()) {
|
|
::Focus.send(Runtime.device().settings.keyscanInterval());
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
} else {
|
|
uint8_t keyscan;
|
|
::Focus.read(keyscan);
|
|
Runtime.device().settings.keyscanInterval(keyscan);
|
|
return EventHandlerResult::EVENT_CONSUMED;
|
|
}
|
|
}
|
|
|
|
return EventHandlerResult::OK;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
kaleidoscope::device::dygma::raise::Focus RaiseFocus;
|
|
|
|
#endif
|