Welcome to the EyeBot  Version 7 - RPi1
A Controller For Various Hardware IO
psd_sensors.h
Go to the documentation of this file.
1 
7 #ifndef PSD_SENSORS_H_
8 #define PSD_SENSORS_H_
9 
10 #include "serial.h"
11 #include "types.h"
12 
13 HDT_PSD *PSDFirst;
14 
15 int PSDInitialised;
16 
17 int PSDInit();
18 int PSDGetRaw(int psd);
19 int PSDGet(int psd);
20 
21 #endif /* PSD_SENSORS_H_ */
Defines types used for the EyeBot 7.
int PSDInit()
Initialises the IO board and sets up tables from hdt.txt.
Definition: psd_sensors.c:14
Structure defining a HDT psd.
Definition: types.h:373
Defines all the functions to connect to a serial USB/serial connection.
int PSDGet(int psd)
Delivers actual timestamp or distance measured by the selected PSD.
Definition: psd_sensors.c:80
int PSDGetRaw(int psd)
Delivers raw-data measured by the selected PSD.
Definition: psd_sensors.c:40