basic wifi connection on arduino
This commit is contained in:
parent
a5e0f81930
commit
eb3dbcaffc
5 changed files with 104 additions and 0 deletions
12
SourceCode/arduino/src/main.cpp
Normal file
12
SourceCode/arduino/src/main.cpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include <Arduino.h>
|
||||
#include "theWifi.h"
|
||||
|
||||
void setup()
|
||||
{
|
||||
connectWifi();
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
// put your main code here, to run repeatedly:
|
||||
}
|
Reference in a new issue