16 lines
281 B
C++
16 lines
281 B
C++
#pragma once
|
|
|
|
#include "globals.hpp"
|
|
#include <WiFi.h>
|
|
#include <PubSubClient.h>
|
|
|
|
#define SSID "iPhone de Jose"
|
|
#define WIFI_PASSWORD "bombardeenlaus"
|
|
|
|
#define PIN_R 12
|
|
#define PIN_G 13
|
|
#define PIN_B 14
|
|
|
|
void WiFi_Init();
|
|
void WiFi_Handle();
|
|
bool WiFi_IsConnected(); |