mirror of
https://github.com/kakopappa/how-to-make-a-precompiled-arduino-library-for-esp8266-esp32.git
synced 2025-07-26 05:21:04 +03:00
initial commit
This commit is contained in:
15
example/example.ino
Normal file
15
example/example.ino
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user