Prvni ulozeni z chegewara githubu
This commit is contained in:
12
tests/hello_world/hello_world.ino
Normal file
12
tests/hello_world/hello_world.ino
Normal file
@ -0,0 +1,12 @@
|
||||
void setup(){
|
||||
// Open serial communications and wait for port to open:
|
||||
Serial.begin(115200);
|
||||
while (!Serial) {
|
||||
;
|
||||
}
|
||||
|
||||
Serial.println("Hello Arduino!");
|
||||
}
|
||||
|
||||
void loop(){
|
||||
}
|
2
tests/hello_world/test_hello_world.py
Normal file
2
tests/hello_world/test_hello_world.py
Normal file
@ -0,0 +1,2 @@
|
||||
def test_hello_world(dut):
|
||||
dut.expect('Hello Arduino!')
|
Reference in New Issue
Block a user