-
Notifications
You must be signed in to change notification settings - Fork 0
/
hardwareInterface.h
33 lines (28 loc) · 1.41 KB
/
hardwareInterface.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/******************************************************************************
* *
* Program : FileLogger *
* *
* FILE : hardwareInterfac.cpp *
* *
* Date : 28 / 05 / 2021 *
* *
* Programmers : Team Software "TORQ" *
* *
******************************************************************************/
#pragma once
#include "driveshaft.h"
#include "sensorPanel.h"
class HardwareInterface
{
public:
HardwareInterface(
byte h_LUS_epin, byte h_LUS_tpin, // Sensor Panel init args
byte h_RUS_epin, byte h_RUS_tpin,
byte h_LIF_pin, byte h_LIF_lpin,
byte h_RIF_pin, byte h_RIF_lpin,
byte h_FIF_pin, byte h_FIF_lpin,
byte h_m_epin, byte h_m_inapin, // Driveshaft init args
byte h_m_inbpin, byte h_m_s_pin);
SensorPanel sensorPanel;
DriveShaft driveShaft;
};