12 lines
142 B
C++
12 lines
142 B
C++
|
#include <Arduino.h>
|
||
|
#include "theWifi.h"
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
connectWifi();
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
// put your main code here, to run repeatedly:
|
||
|
}
|