Add swkbd applet

This commit is contained in:
wheremyfoodat 2023-08-23 01:16:27 +03:00
parent 0bd3729417
commit f099cc12fa
8 changed files with 55 additions and 4 deletions

View file

@ -0,0 +1,11 @@
#include "applets/software_keyboard.hpp"
using namespace Applets;
void SoftwareKeyboardApplet::reset() {}
Result::HorizonResult SoftwareKeyboardApplet::start() { return Result::Success; }
Result::HorizonResult SoftwareKeyboardApplet::receiveParameter() {
Helpers::panic("Software keyboard received parameter");
return Result::Success;
}