basic wifi connection on arduino

This commit is contained in:
Florian Hoss 2022-04-10 14:38:03 +02:00
parent a5e0f81930
commit eb3dbcaffc
5 changed files with 104 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#include <Arduino.h>
#include "theWifi.h"
void setup()
{
connectWifi();
}
void loop()
{
// put your main code here, to run repeatedly:
}