23 lines
324 B
C
23 lines
324 B
C
//
|
|
// 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
|