3D printed Arduino Airsoft Chronograph
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

adc.h 252B

123456789101112131415
  1. /*
  2. * adc.cpp
  3. *
  4. * OpenChrono BB speed measurement device.
  5. *
  6. * https://provideyourown.com/2012/secret-arduino-voltmeter-measure-battery-voltage/
  7. */
  8. #ifndef __ADC_H__
  9. #define __ADC_H__
  10. // Vcc in millivolts
  11. long readVcc(void);
  12. #endif // __ADC_H__