initial commit

This commit is contained in:
Aruna Tennakoon
2022-07-27 08:44:06 +07:00
commit f30d70cdaf
7 changed files with 98 additions and 0 deletions

15
example/example.ino Normal file
View File

@ -0,0 +1,15 @@
#include <hello.h>
#define BAUD_RATE 9600
void setup() {
Serial.begin(BAUD_RATE);
}
void loop() {
// put your main code here, to run repeatedly:
int result = add(1, 1);
Serial.println(result);
delay(1000);
}