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

Utilities.h (321B)

      1 #pragma once
      2 
      3 #include "Arduino.h"
      4 #include "WiFi.h"
      5 #include "Wire.h"
      6 #include <Pangodream_18650_CL.h> // Power management
      7 
      8 #include "pins.h"
      9 
     10 extern Pangodream_18650_CL BL;
     11 
     12 String formatBytes(size_t bytes);
     13 char getKeyboardInput();
     14 void printDeviceInfo();
     15 void setBrightness(uint8_t value);
     16 void updateTimeFromNTP();
     17