acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

IRC.h (299B)

      1 #pragma once
      2 
      3 #include <WiFiClientSecure.h>
      4 
      5 #include "Display.h"
      6 #include "Storage.h"
      7 
      8 extern WiFiClient* client;
      9 extern unsigned long joinChannelTime;
     10 extern bool readyToJoinChannel;
     11 
     12 void action(String target, String message);
     13 bool connectToIRC();
     14 void handleIRC();
     15 void sendIRC(String command);