22 lines
377 B
C
22 lines
377 B
C
/*
|
|
* measure.h
|
|
*
|
|
* Created on: Mar 24, 2023
|
|
* Author: Keith.Lloyd
|
|
*/
|
|
|
|
#ifndef MEASURE_H_
|
|
#define MEASURE_H_
|
|
|
|
void Measure_Volts(void);
|
|
void Measure_Current(void);
|
|
|
|
void Calculate_Volts(void);
|
|
void Calculate_Current(void);
|
|
float Calc_Max_current(void);
|
|
|
|
#define HI_VOLTS 7 //ADC CHannel 7
|
|
#define EXCEDED 500 // High voltage value at port
|
|
|
|
#endif /* MEASURE_H_ */
|