16 lines
299 B
C
16 lines
299 B
C
#pragma once
|
|
|
|
#include <WiFiClientSecure.h>
|
|
|
|
#include "Display.h"
|
|
#include "Storage.h"
|
|
|
|
extern WiFiClient* client;
|
|
extern unsigned long joinChannelTime;
|
|
extern bool readyToJoinChannel;
|
|
|
|
void action(String target, String message);
|
|
bool connectToIRC();
|
|
void handleIRC();
|
|
void sendIRC(String command);
|