mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-08-08 05:07:07 +00:00
Update main.cpp
This commit is contained in:
@@ -7,15 +7,12 @@
|
|||||||
int myFunction(int, int);
|
int myFunction(int, int);
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
// put your setup code here, to run once:
|
|
||||||
int result = myFunction(2, 3);
|
Serial.begin(115200);
|
||||||
|
Serial.println();
|
||||||
|
Serial.println("Running setup ...");
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
// put your main code here, to run repeatedly:
|
// put your main code here, to run repeatedly:
|
||||||
}
|
|
||||||
|
|
||||||
// put function definitions here:
|
|
||||||
int myFunction(int x, int y) {
|
|
||||||
return x + y;
|
|
||||||
}
|
}
|
Reference in New Issue
Block a user