3D printed Arduino Airsoft Chronograph
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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__