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.
|
#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 |