#include #include "./nSpireLTE/nSpireLTE.hpp" int main(int argc, char **argv) { KeyManager::Initialize(); bool done = false; while (!done) { KeyManager::Logic(); if (KeyManager::kbCTRL() && KeyManager::kbESC()) { done = true; } if (KeyManager::kb8_Press_Event()) { printf( " La touche [8] a ete pressee.\n" ); } if (KeyManager::kb8_Release_Event()) { printf( " La touche [8] a ete relachee.\n" ); } if (KeyManager::kbDOT_Press_Event()) { printf( " La touche [.] a ete pressee.\n" ); } if (KeyManager::kbDOT_Release_Event()) { printf( " La touche [.] a ete relachee.\n" ); } } KeyManager::Close(); return 0; }