get data from Kernel driver

1st version of the json file with the header
This commit is contained in:
2024-06-24 20:34:18 +02:00
parent 454ae2f46e
commit 68a4f6bcbe
14 changed files with 833 additions and 111 deletions

View File

@@ -0,0 +1,25 @@
/*
*/
#include <VibSensorDesc.h>
#include <string>
#include <list>
VibSensorDesc::VibSensorDesc(){
}
int VibSensorDesc::GetDescription(){
return 0;
}
bool VibSensorDesc::Add2Json(json& j){
j["VibSen1"] = "1";
return true;
}