1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2025-01-20 12:52:15 +01:00
rpi-vk-driver/test/inputTest/inputTest.cpp

20 lines
243 B
C++
Raw Normal View History

2020-05-11 19:45:46 +01:00
#include <iostream>
#include <vector>
#include <algorithm>
#include <string.h>
2020-05-20 22:39:29 +01:00
#include "../inputHandler/inputHandler.h"
2020-05-11 19:45:46 +01:00
int main(void) {
2020-05-20 22:39:29 +01:00
initInputHandler();
2020-05-11 19:45:46 +01:00
2020-05-20 22:39:29 +01:00
while(true)
2020-05-11 19:45:46 +01:00
{
2020-05-20 22:39:29 +01:00
handleInput();
2020-05-11 19:45:46 +01:00
}
2020-05-20 22:39:29 +01:00
uninitInputHandler();
2020-05-11 19:45:46 +01:00
return 0;
}