You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
IFB_dev/libraries/Scitech/Sc_AnalogIn.h

12 lines
228 B
C

#ifndef Sc_AnalogIn_h
#define Sc_AnalogIn_h
void AnalogIn(int arr[], int size);
int AnalogTest(int i);
#endif
#ifdef __AVR__
#include <avr/interrupt.h>
#elif defined(__arm__) && defined(TEENSYDUINO)
#include <Arduino.h>
#endif