17 lines
200 B
C++
17 lines
200 B
C++
#include <Arduino.h>
|
|
// put function declarations here:
|
|
int myFunction(int, int);
|
|
|
|
void setup()
|
|
{
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
}
|
|
|
|
// put function definitions here:
|
|
int myFunction(int x, int y)
|
|
{
|
|
return x + y;
|
|
} |