This commit is contained in:
cfif 2026-03-30 16:03:37 +03:00
commit 24f073a925
3 changed files with 37 additions and 0 deletions

5
Sensor.c Normal file
View File

@ -0,0 +1,5 @@
//
// Created by cfif on 03.06.2024.
//
#include "Sensor.h"

22
Sensor.h Normal file
View File

@ -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

10
modular.json Normal file
View File

@ -0,0 +1,10 @@
{
"cmake": {
"inc_dirs": [
"./"
],
"srcs": [
"./**.c"
]
}
}