Init
This commit is contained in:
commit
24f073a925
|
|
@ -0,0 +1,5 @@
|
|||
//
|
||||
// Created by cfif on 03.06.2024.
|
||||
//
|
||||
#include "Sensor.h"
|
||||
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// Created by cfif on 03.06.2024.
|
||||
//
|
||||
|
||||
#ifndef SMART_COMPONENTS_SENSOR_H
|
||||
#define SMART_COMPONENTS_SENSOR_H
|
||||
|
||||
#include "GpioPin.h"
|
||||
|
||||
typedef struct {
|
||||
tGpioPin A;
|
||||
tGpioPin B;
|
||||
tGpioPin C;
|
||||
} tConABC;
|
||||
|
||||
typedef struct {
|
||||
tConABC Con;
|
||||
tGpioPin En1;
|
||||
tGpioPin En2;
|
||||
} tConn;
|
||||
|
||||
#endif //SMART_COMPONENTS_SENSOR_H
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"cmake": {
|
||||
"inc_dirs": [
|
||||
"./"
|
||||
],
|
||||
"srcs": [
|
||||
"./**.c"
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue