18 lines
296 B
C
18 lines
296 B
C
|
/**
|
||
|
* @brief Module for handling the ADC input from the load pins.
|
||
|
* @details This file holds the functions for reading the ADC values.
|
||
|
* @author Jake G
|
||
|
* @date 2024
|
||
|
* @copyright None
|
||
|
* @file load.h
|
||
|
*/
|
||
|
|
||
|
#ifndef LOAD_H
|
||
|
#define LOAD_H
|
||
|
|
||
|
void Load_HandlePinLoads(void);
|
||
|
|
||
|
|
||
|
#endif /* LOAD_H */
|
||
|
|