Reworked app, #11 key bindings, optimisations

This commit is contained in:
Niellune
2026-03-10 00:39:00 +02:00
parent 484c4ce2d5
commit 570695fbcf
14 changed files with 570 additions and 487 deletions
+2 -1
View File
@@ -249,7 +249,7 @@ void Protocol::sendEncryption()
{
if (!_cipher)
{
std::cout << "[Protocol] Can't enable encryption: cypher is not initalised";
std::cout << "[Protocol] Can't enable encryption: cypher is not initalised" << std::endl;
return;
}
uint8_t buf[4];
@@ -259,6 +259,7 @@ void Protocol::sendEncryption()
void Protocol::onStatus(uint8_t status)
{
std::cout << "[Protocol] Status " << (int)status << std::endl;
pushEvent(_evtStatusId, status);
}