ir-controller/src/main.cpp
2024-11-22 10:34:56 +01:00

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;
}