repo_full_name stringlengths 6 93 | repo_url stringlengths 25 112 | repo_api_url stringclasses 28
values | owner stringclasses 28
values | repo_name stringclasses 28
values | description stringclasses 28
values | stars int64 617 98.8k | forks int64 31 355 ⌀ | watchers int64 990 999 ⌀ | license stringclasses 2
values | default_branch stringclasses 2
values | repo_created_at timestamp[s]date 2012-07-24 23:12:50 2025-06-16 08:07:28 ⌀ | repo_updated_at timestamp[s]date 2026-02-23 15:23:15 2026-05-03 18:52:12 ⌀ | repo_topics listlengths 0 13 ⌀ | repo_languages unknown | is_fork bool 1
class | open_issues int64 3 104 ⌀ | file_path stringlengths 3 208 | file_name stringclasses 509
values | file_extension stringclasses 1
value | file_size_bytes int64 101 84k ⌀ | file_url stringclasses 627
values | file_raw_url stringclasses 627
values | file_sha stringclasses 624
values | language stringclasses 8
values | parsed_at stringdate 2026-05-04 01:12:36 2026-05-04 19:41:55 | text stringlengths 100 102k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | src/zip.h | null | null | null | null | null | null | C | 2026-05-04T18:22:25.333668 | /*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACT... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/minunit.h | null | null | null | null | null | null | C | 2026-05-04T18:22:25.383459 | /*
* Copyright (c) 2012 David Siñuela Pastor, siu.4coders@gmail.com
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to u... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | src/zip.c | null | null | null | null | null | null | C | 2026-05-04T18:22:25.432672 | /*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACT... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | cmd/unzipcli.c | null | null | null | null | null | null | C | 2026-05-04T18:22:25.436275 | /*
* unzipcli - extract zip archives from the command line
*
* Usage:
* unzipcli [-d dir] [-p password] [-l] [-o] [--] archive.zip [entry ...]
*
* Options:
* -d DIR extract into DIR (default: current directory)
* -p PASS decrypt with password
* -l list entries instead of extracting
* ... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_open.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.055249 | #include <stdio.h>
#include <stdlib.h>
#include <zip.h>
#include "minunit.h"
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#define MKTEMP _mktemp
#else
#define MKTEMP mkstemp
#endif
static char ZIPNAME[L_tmpnam + 1] = {0};
void test_setup(void) {
strncpy(ZIPNAME, "z-XXXXXX\0", L_tmpnam);
MKTEMP(ZIPNA... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_extract.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.056332 | #include <stdio.h>
#include <stdlib.h>
#include <zip.h>
#include "minunit.h"
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#define MKTEMP _mktemp
#define UNLINK _unlink
#else
#define MKTEMP mkstemp
#define UNLINK unlink
#endif
static char ZIPNAME[L_tmpnam + 1] = {0};
#define TESTDATA1 "Some test data 1..... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_password.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.056821 | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <zip.h>
#include "minunit.h"
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#define MKTEMP _mktemp
#define UNLINK _unlink
#else
#define MKTEMP mkstemp
#define UNLINK unlink
#endif
static char ZIPNAME[L_tmpnam + 1] = {0};
static char WFILE[... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_permissions.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.122314 | #include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <zip.h>
#include "minunit.h"
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#define MKTEMP _mktemp
#define UNLINK _unlink
#else
#define MKTEMP mkstemp
#define UNLINK unlink
#endif
static char ZIPNAME[L_tmpnam + 1] = {0};
static char XFIL... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_offset.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.123178 | #include <stdio.h>
#include <stdlib.h>
#include <zip.h>
#include "minunit.h"
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#define MKTEMP _mktemp
#define UNLINK _unlink
#else
#define MKTEMP mkstemp
#define UNLINK unlink
#endif
static char ZIPNAME[L_tmpnam + 1] = {0};
#define HEADERDATA1 "this precedes th... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_static.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.123671 | #include "minunit.h"
#ifndef ISSLASH
#define ISSLASH(C) ((C) == '/' || (C) == '\\')
#endif
static inline int zip_strchr_match(const char *const str, size_t len, char c) {
size_t i;
for (i = 0; i < len; ++i) {
if (str[i] != c) {
return 0;
}
}
return 1;
}
static char *zip_name_normalize(char *na... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_xattr.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.309802 | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <zip.h>
#include "minunit.h"
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#define MKTEMP _mktemp
#define UNLINK _unlink
#else
#define MKTEMP mkstemp
#define UNLINK unlink
#endif
#if defined(_MSC_VER) || defined(__MIN... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_write.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.344199 | #include <stdio.h>
#include <stdlib.h>
#include <zip.h>
#include "minunit.h"
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#define MKTEMP _mktemp
#define UNLINK _unlink
#else
#define MKTEMP mkstemp
#define UNLINK unlink
#endif
static char ZIPNAME[L_tmpnam + 1] = {0};
static char WFILE[L_tmpnam + 1] = {0};... |
kuba--/zip | https://github.com/kuba--/zip | null | null | null | null | 1,580 | null | null | mit | null | null | null | null | null | null | null | test/test_read.c | null | null | null | null | null | null | C | 2026-05-04T18:22:26.524737 | #include <stdio.h>
#include <stdlib.h>
#include <zip.h>
#include "minunit.h"
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#define MKTEMP _mktemp
#else
#define MKTEMP mkstemp
#endif
static char ZIPNAME[L_tmpnam + 1] = {0};
#define CRC32DATA1 2220805626
#define TESTDATA1 "Some test data 1...\0"
#define T... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/MenuFunctions.h | null | null | null | null | null | null | C | 2026-05-04T18:22:31.360468 | #pragma once
#ifndef MenuFunctions_h
#define MenuFunctions_h
#include "configs.h"
#ifdef HAS_SCREEN
#define BATTERY_ANALOG_ON 0
#include "WiFiScan.h"
#include "BatteryInterface.h"
#include "SDInterface.h"
#include "settings.h"
#ifdef HAS_BUTTONS
#include "Switches.h"
extern Switches u_btn;
extern Switches d... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/LedInterface.h | null | null | null | null | null | null | C | 2026-05-04T18:22:31.371392 | #pragma once
#ifndef LedInterface_h
#define LedInterface_h
#include "configs.h"
#include "settings.h"
#include <Arduino.h>
#include <Adafruit_NeoPixel.h>
#define Pixels 1
#define MODE_OFF 0
#define MODE_RAINBOW 1
#define MODE_ATTACK 2
#define MODE_SNIFF 3
#define MODE_CUSTOM 4
extern Settings settings_obj;
extern ... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/CommandLine.h | null | null | null | null | null | null | C | 2026-05-04T18:22:31.372622 | #pragma once
#ifndef CommandLine_h
#define CommandLine_h
#include "configs.h"
#ifdef HAS_SCREEN
#include "MenuFunctions.h"
#include "Display.h"
#endif
#include "WiFiScan.h"
//#include "Web.h"
#ifdef HAS_SD
#include "SDInterface.h"
#endif
#include "settings.h"
#include "LedInterface.h"
#ifdef HAS_SCREEN
ex... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/GpsInterface.h | null | null | null | null | null | null | C | 2026-05-04T18:22:31.387130 | #pragma once
#ifndef GpsInterface_h
#define GpsInterface_h
#include <MicroNMEA.h>
#include <SoftwareSerial.h>
#include <LinkedList.h>
#include "configs.h"
//#define GPS_TEXT_MAXLINES 5 //default:5 lines in the buffer maximum
//#define GPS_TEXT_MAXCYCLES 1 //default:1
//#define GPS_NMEA_SCRNLINES TEXT_HEIGHT //defa... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/Buffer.h | null | null | null | null | null | null | C | 2026-05-04T18:22:31.388339 | #pragma once
#ifndef Buffer_h
#define Buffer_h
#include "Arduino.h"
#include "FS.h"
#include "settings.h"
#include "esp_wifi_types.h"
#include "configs.h"
//#define BUF_SIZE 3 * 1024 // Had to reduce buffer size to save RAM. GG @spacehuhn
//#define SNAP_LEN 2324 // max len of each recieved packet
//extern bool useS... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/EvilPortal.h | null | null | null | null | null | null | C | 2026-05-04T18:22:31.412141 | #pragma once
#ifndef EvilPortal_h
#define EvilPortal_h
#include "ESPAsyncWebServer.h"
#include <AsyncTCP.h>
#include <DNSServer.h>
#include "configs.h"
#include "settings.h"
#ifdef HAS_SCREEN
#include "Display.h"
#include <LinkedList.h>
#endif
#include "SDInterface.h"
#include "Buffer.h"
#include "lang_var.h"
e... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/Display.h | null | null | null | null | null | null | C | 2026-05-04T18:22:31.413728 | #pragma once
#ifndef Display_h
#define Display_h
#include "configs.h"
#ifdef HAS_SCREEN
#include <FS.h>
#include <functional>
#include <JPEGDecoder.h>
#include <LinkedList.h>
#include <SPI.h>
#include <lvgl.h>
#include <Ticker.h>
#include "SPIFFS.h"
#include "Assets.h"
#include <TFT_eSPI.h>
// WiFi stuff
#define ... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/SDInterface.h | null | null | null | null | null | null | C | 2026-05-04T18:22:31.463124 | #pragma once
#ifndef SDInterface_h
#define SDInterface_h
#include "configs.h"
#include "settings.h"
#include "SD.h"
#include "Buffer.h"
#ifdef HAS_SCREEN
#include "Display.h"
#endif
#include <Update.h>
extern Buffer buffer_obj;
extern Settings settings_obj;
#ifdef HAS_SCREEN
extern Display display_obj;
#endif
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/configs.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.129045 | #pragma once
#ifndef configs_h
#define configs_h
#define POLISH_POTATO
//// BOARD TARGETS
#define MARAUDER_M5STICKC
//#define MARAUDER_M5STICKCP2
//#define MARAUDER_MINI
//#define MARAUDER_V4
//#define MARAUDER_V6
//#define MARAUDER_V6_1
//#define MARAUDER_V7
//#define MARAUDER_KIT
//#define... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/stickcLED.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.156210 | #pragma once
#ifndef stickcLED_H
#define stickcLED_H
#include "configs.h"
#include "settings.h"
#include <Arduino.h>
extern Settings settings_obj;
class stickcLED {
public:
void RunSetup();
void main();
void attackLED();
void sniffLED();
void offLED();
};
#endif /* s... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/Switches.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.163265 | #ifndef Switches_h
#define Switches_h
#include <Arduino.h>
class Switches {
private:
int pin;
uint32_t hold_lim;
uint32_t cur_hold;
uint32_t hold_init = millis();
bool isheld;
bool pullup;
bool pressed;
bool getButtonState();
public:
Switches();
Switches(int pin, uint32_t ho... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/flipperLED.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.192004 | #pragma once
#ifndef flipperLED_h
#define flipperLED_h
#include "configs.h"
#include "settings.h"
#include <Arduino.h>
#define B_PIN 4
#define G_PIN 5
#define R_PIN 6
extern Settings settings_obj;
class flipperLED {
public:
void RunSetup();
void main();
void attackLED();
void sniffLED();
vo... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/lang_var.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.193492 | #pragma once
#ifndef lang_var_h
#define lang_var_h
#include "configs.h"
//Starting window texts
PROGMEM const char text0_0[] = "Giving room for HardwareSerial...";
PROGMEM const char text0_1[] = "Started Serial";
PROGMEM const char text0_2[] = "Checked RAM";
PROGMEM const char text0_3[] = "Initialized SD Card";
PRO... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/settings.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.217729 | #pragma once
#ifndef Settings_h
#define Settings_h
#include "configs.h"
#include "SPIFFS.h"
#include <FS.h>
#include <ArduinoJson.h>
#define FORMAT_SPIFFS_IF_FAILED true
#ifdef HAS_SCREEN
#include "Display.h"
extern Display display_obj;
#endif
class Settings {
private:
String json_settings_string;
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/WiFiScan.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.218761 | #pragma once
#ifndef WiFiScan_h
#define WiFiScan_h
#include "configs.h"
#include "utils.h"
#include <ArduinoJson.h>
#include <algorithm>
#include <vector>
#ifdef HAS_BT
#include <NimBLEDevice.h>
#endif
#include <WiFi.h>
#include "EvilPortal.h"
#include <math.h>
#include "esp_wifi.h"
#include "esp_wifi_types.h"
#... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/utils.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.325766 | #pragma once
#ifndef utils_h
#define utils_h
#include <Arduino.h>
#include <vector>
struct mac_addr {
unsigned char bytes[6];
};
struct Station {
uint8_t mac[6];
bool selected;
uint16_t packets;
};
const char apple_ouis[][9] PROGMEM = {
"00:17:F2", "00:1E:C2", "00:26:08", "F8:1E:DF", "BC:92:6B",
"28:E... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/xiaoLED.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.753246 | #pragma once
#ifndef xiaoLED_H
#define xiaoLED_H
#include "configs.h"
#include "settings.h"
#include <Arduino.h>
#define XIAO_LED_PIN 21
extern Settings settings_obj;
class xiaoLED {
public:
void RunSetup();
void main();
void attackLED();
void sniffLED();
void offLED()... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_BusIO/Adafruit_GenericDevice.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.770747 | #ifndef ADAFRUIT_GENERICDEVICE_H
#define ADAFRUIT_GENERICDEVICE_H
#include <Arduino.h>
typedef bool (*busio_genericdevice_read_t)(void *obj, uint8_t *buffer,
size_t len);
typedef bool (*busio_genericdevice_write_t)(void *obj, const uint8_t *buffer,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_BusIO/Adafruit_BusIO_Register.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.795295 | #ifndef Adafruit_BusIO_Register_h
#define Adafruit_BusIO_Register_h
#include <Arduino.h>
#if !defined(SPI_INTERFACES_COUNT) || \
(defined(SPI_INTERFACES_COUNT) && (SPI_INTERFACES_COUNT > 0))
#include <Adafruit_GenericDevice.h>
#include <Adafruit_I2CDevice.h>
#include <Ada... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_BusIO/Adafruit_I2CDevice.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.844044 | #ifndef Adafruit_I2CDevice_h
#define Adafruit_I2CDevice_h
#include <Arduino.h>
#include <Wire.h>
///< The class which defines how we will talk to this device over I2C
class Adafruit_I2CDevice {
public:
Adafruit_I2CDevice(uint8_t addr, TwoWire *theWire = &Wire);
uint8_t address(void);
bool begin(bool addr_detect... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_BusIO/Adafruit_SPIDevice.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.866060 | #ifndef Adafruit_SPIDevice_h
#define Adafruit_SPIDevice_h
#include <Arduino.h>
#if !defined(SPI_INTERFACES_COUNT) || \
(defined(SPI_INTERFACES_COUNT) && (SPI_INTERFACES_COUNT > 0))
// HW SPI available
#include <SPI.h>
#define BUSIO_HAS_HW_SPI
#else
// SW SPI ONLY
enum { SP... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_CPFS/Adafruit_CPFS.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.908436 | // SPDX-FileCopyrightText: 2023 P Burgess for Adafruit Industries
//
// SPDX-License-Identifier: MIT
/*!
* @file Adafruit_CPFS.h
*
* This is a barebones library to:
*
* - Make a CircuitPython-capable board's flash filesystem accessible to
* Arduino code.
* - Make this same drive accessible to a host computer ... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Adafruit_GFX.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.941408 | #ifndef _ADAFRUIT_GFX_H
#define _ADAFRUIT_GFX_H
#if ARDUINO >= 100
#include "Arduino.h"
#include "Print.h"
#else
#include "WProgram.h"
#endif
#include "gfxfont.h"
#include <Adafruit_I2CDevice.h>
#include <Adafruit_SPIDevice.h>
/// A generic graphics superclass that can handle all sorts of drawing. At a
/// minimum y... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_BusIO/Adafruit_I2CRegister.h | null | null | null | null | null | null | C | 2026-05-04T18:22:32.988634 | #ifndef _ADAFRUIT_I2C_REGISTER_H_
#define _ADAFRUIT_I2C_REGISTER_H_
#include <Adafruit_BusIO_Register.h>
#include <Arduino.h>
typedef Adafruit_BusIO_Register Adafruit_I2CRegister;
typedef Adafruit_BusIO_RegisterBits Adafruit_I2CRegisterBits;
#endif
|
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Adafruit_GrayOLED.h | null | null | null | null | null | null | C | 2026-05-04T18:22:33.377265 | /*!
* @file Adafruit_GrayOLED.h
*
* This is part of for Adafruit's GFX library, supplying generic support
* for grayscale OLED displays: http://www.adafruit.com/category/63_98
*
* These displays use I2C or SPI to communicate. I2C requires 2 pins
* (SCL+SDA) and optionally a RESET pin. SPI requires 4 pins (MOSI, ... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Adafruit_SPITFT.h | null | null | null | null | null | null | C | 2026-05-04T18:22:33.379148 | /*!
* @file Adafruit_SPITFT.h
*
* Part of Adafruit's GFX graphics library. Originally this class was
* written to handle a range of color TFT displays connected via SPI,
* but over time this library and some display-specific subclasses have
* mutated to include some color OLEDs as well as parallel-interfaced
* d... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMono12pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:33.479630 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMono12pt7bBitmaps[] PROGMEM = {
0x49, 0x24, 0x92, 0x48, 0x01, 0xF8, 0xE7, 0xE7, 0x67, 0x42, 0x42, 0x42,
0x42, 0x09, 0x02, 0x41, 0x10, 0x44, 0x11, 0x1F, 0xF1, 0x10, 0x4C, 0x12,
0x3F, 0xE1, 0x20, 0x48, 0x12, 0x04, 0x81, 0x20, 0x48, 0x04, 0x07, 0xA2,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Adafruit_SPITFT_Macros.h | null | null | null | null | null | null | C | 2026-05-04T18:22:33.491275 | // THIS FILE INTENTIONALLY LEFT BLANK.
// Macros previously #defined here have been made into (mostly) inline
// functions in the Adafruit_SPITFT class. Other libraries might still
// contain code trying to #include this header file, so until everything's
// updated this file still exists (but doing nothing) to avoid ... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMono18pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:33.555795 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMono18pt7bBitmaps[] PROGMEM = {
0x27, 0x77, 0x77, 0x77, 0x77, 0x22, 0x22, 0x20, 0x00, 0x6F, 0xF6, 0xF1,
0xFE, 0x3F, 0xC7, 0xF8, 0xFF, 0x1E, 0xC3, 0x98, 0x33, 0x06, 0x60, 0xCC,
0x18, 0x04, 0x20, 0x10, 0x80, 0x42, 0x01, 0x08, 0x04, 0x20, 0x10, 0x80,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMono24pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:33.557187 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMono24pt7bBitmaps[] PROGMEM = {
0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0x10, 0x84, 0x21, 0x08,
0x00, 0x00, 0x00, 0x03, 0xBF, 0xFF, 0xB8, 0xFE, 0x7F, 0x7C, 0x3E, 0x7C,
0x3E, 0x7C, 0x3E, 0x7C, 0x3E, 0x7C, 0x3E, 0x7C, 0x3E, 0x7C, 0x3E, 0x3C,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMono9pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:33.594317 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMono9pt7bBitmaps[] PROGMEM = {
0xAA, 0xA8, 0x0C, 0xED, 0x24, 0x92, 0x48, 0x24, 0x48, 0x91, 0x2F, 0xE4,
0x89, 0x7F, 0x28, 0x51, 0x22, 0x40, 0x08, 0x3E, 0x62, 0x40, 0x30, 0x0E,
0x01, 0x81, 0xC3, 0xBE, 0x08, 0x08, 0x71, 0x12, 0x23, 0x80, 0x23, 0xB8,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoBold12pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:33.864322 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoBold12pt7bBitmaps[] PROGMEM = {
0xFF, 0xFF, 0xFF, 0xF6, 0x66, 0x60, 0x6F, 0x60, 0xE7, 0xE7, 0x62, 0x42,
0x42, 0x42, 0x42, 0x11, 0x87, 0x30, 0xC6, 0x18, 0xC3, 0x31, 0xFF, 0xFF,
0xF9, 0x98, 0x33, 0x06, 0x60, 0xCC, 0x7F, 0xEF, 0xFC, 0x66, 0x0C, 0xC3... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoBold24pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.016401 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoBold24pt7bBitmaps[] PROGMEM = {
0x38, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xF3, 0xE7, 0xCF,
0x9F, 0x3E, 0x7C, 0xF9, 0xF3, 0xE3, 0x82, 0x00, 0x00, 0x00, 0x71, 0xF7,
0xFF, 0xEF, 0x9E, 0x00, 0xFC, 0x7E, 0xF8, 0x7D, 0xF0, 0xFB, 0xE1, 0xF7... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoBold9pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.184045 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoBold9pt7bBitmaps[] PROGMEM = {
0xFF, 0xFF, 0xD2, 0x1F, 0x80, 0xEC, 0x89, 0x12, 0x24, 0x40, 0x36, 0x36,
0x36, 0x7F, 0x7F, 0x36, 0xFF, 0xFF, 0x3C, 0x3C, 0x3C, 0x00, 0x18, 0xFF,
0xFE, 0x3C, 0x1F, 0x1F, 0x83, 0x46, 0x8D, 0xF0, 0xC1, 0x83, 0x00, 0x61,... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoBold18pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.185462 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoBold18pt7bBitmaps[] PROGMEM = {
0x77, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0x9C, 0xE7, 0x39, 0xC4, 0x03, 0xBF,
0xFF, 0xB8, 0xF1, 0xFE, 0x3F, 0xC7, 0xF8, 0xFF, 0x1E, 0xC1, 0x98, 0x33,
0x06, 0x60, 0xCC, 0x18, 0x0E, 0x1C, 0x0F, 0x3C, 0x1F, 0x3C, 0x1E, 0x3C... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoBoldOblique24pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.200711 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoBoldOblique24pt7bBitmaps[] PROGMEM = {
0x01, 0xE0, 0x3F, 0x07, 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x0F, 0xE0, 0xFE,
0x0F, 0xE0, 0xFE, 0x0F, 0xC0, 0xFC, 0x1F, 0xC1, 0xF8, 0x1F, 0x81, 0xF8,
0x1F, 0x81, 0xF0, 0x1F, 0x01, 0xF0, 0x1E, 0x00, 0x80, 0x00, 0x0... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoBoldOblique18pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.257176 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoBoldOblique18pt7bBitmaps[] PROGMEM = {
0x0F, 0x07, 0xC7, 0xE3, 0xF1, 0xF0, 0xF8, 0xFC, 0x7C, 0x3E, 0x1F, 0x0F,
0x07, 0x87, 0xC3, 0xC1, 0xE0, 0x60, 0x00, 0x38, 0x3E, 0x1F, 0x0F, 0x83,
0x80, 0xF8, 0xFF, 0x0E, 0xF1, 0xEF, 0x1E, 0xE1, 0xCE, 0x1C, 0xC... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoBoldOblique9pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.263120 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoBoldOblique9pt7bBitmaps[] PROGMEM = {
0x39, 0xCC, 0x67, 0x31, 0x8C, 0x07, 0x38, 0x6C, 0xD9, 0x36, 0x48, 0x80,
0x09, 0x0D, 0x86, 0xCF, 0xF7, 0xF9, 0xB3, 0xFD, 0xFE, 0x6C, 0x36, 0x1B,
0x00, 0x00, 0x06, 0x07, 0x07, 0xE6, 0x33, 0x01, 0xE0, 0x7C, 0x06... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoBoldOblique12pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.302976 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoBoldOblique12pt7bBitmaps[] PROGMEM = {
0x1C, 0xF3, 0xCE, 0x38, 0xE7, 0x1C, 0x61, 0x86, 0x00, 0x63, 0x8C, 0x00,
0xE7, 0xE7, 0xE6, 0xC6, 0xC6, 0xC4, 0x84, 0x03, 0x30, 0x19, 0x81, 0xDC,
0x0C, 0xE0, 0x66, 0x1F, 0xFC, 0xFF, 0xE1, 0x98, 0x0C, 0xC0, 0xE... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoOblique12pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.544155 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoOblique12pt7bBitmaps[] PROGMEM = {
0x11, 0x11, 0x12, 0x22, 0x22, 0x00, 0x0E, 0xE0, 0xE7, 0xE7, 0xC6, 0xC6,
0xC6, 0x84, 0x84, 0x02, 0x40, 0x88, 0x12, 0x02, 0x40, 0x48, 0x7F, 0xC2,
0x40, 0x48, 0x11, 0x1F, 0xF8, 0x48, 0x09, 0x02, 0x40, 0x48, 0x09, 0... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoOblique18pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.653002 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoOblique18pt7bBitmaps[] PROGMEM = {
0x00, 0x1C, 0x38, 0x70, 0xC1, 0x83, 0x06, 0x18, 0x30, 0x60, 0xC1, 0x02,
0x04, 0x00, 0x00, 0x01, 0xC7, 0x8F, 0x1C, 0x00, 0x78, 0x7B, 0xC3, 0xFC,
0x3D, 0xE1, 0xEF, 0x0F, 0x70, 0x73, 0x83, 0x98, 0x18, 0xC0, 0xC6, 0... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoOblique24pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.807043 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoOblique24pt7bBitmaps[] PROGMEM = {
0x01, 0xC0, 0xF0, 0x3C, 0x0E, 0x03, 0x81, 0xE0, 0x78, 0x1C, 0x07, 0x01,
0xC0, 0xE0, 0x38, 0x0E, 0x03, 0x00, 0xC0, 0x70, 0x1C, 0x06, 0x01, 0x80,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x0F, 0x83, 0xE0, 0... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeMonoOblique9pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.865096 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeMonoOblique9pt7bBitmaps[] PROGMEM = {
0x11, 0x22, 0x24, 0x40, 0x00, 0xC0, 0xDE, 0xE5, 0x29, 0x00, 0x09, 0x05,
0x02, 0x82, 0x47, 0xF8, 0xA0, 0x51, 0xFE, 0x28, 0x14, 0x0A, 0x09, 0x00,
0x08, 0x1D, 0x23, 0x40, 0x70, 0x1C, 0x02, 0x82, 0x84, 0x78, 0x20, 0x... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeSans24pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.899753 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeSans24pt7bBitmaps[] PROGMEM = {
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x76, 0x66,
0x66, 0x00, 0x0F, 0xFF, 0xFF, 0xF1, 0xFE, 0x3F, 0xC7, 0xF8, 0xFF, 0x1F,
0xE3, 0xFC, 0x7F, 0x8F, 0xF1, 0xEC, 0x19, 0x83, 0x30, 0x60, 0x00, 0x70,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeSans12pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.914385 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeSans12pt7bBitmaps[] PROGMEM = {
0xFF, 0xFF, 0xFF, 0xF0, 0xF0, 0xCF, 0x3C, 0xF3, 0x8A, 0x20, 0x06, 0x30,
0x31, 0x03, 0x18, 0x18, 0xC7, 0xFF, 0xBF, 0xFC, 0x31, 0x03, 0x18, 0x18,
0xC7, 0xFF, 0xBF, 0xFC, 0x31, 0x01, 0x18, 0x18, 0xC0, 0xC6, 0x06, 0x30,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeSans18pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:34.956761 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeSans18pt7bBitmaps[] PROGMEM = {
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE9, 0x20, 0x3F, 0xFC, 0xE3, 0xF1,
0xF8, 0xFC, 0x7E, 0x3F, 0x1F, 0x8E, 0x82, 0x41, 0x00, 0x01, 0xC3, 0x80,
0x38, 0x70, 0x06, 0x0E, 0x00, 0xC1, 0x80, 0x38, 0x70, 0x07, 0x0E, 0x0F,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeSans9pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:35.070349 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeSans9pt7bBitmaps[] PROGMEM = {
0xFF, 0xFF, 0xF8, 0xC0, 0xDE, 0xF7, 0x20, 0x09, 0x86, 0x41, 0x91, 0xFF,
0x13, 0x04, 0xC3, 0x20, 0xC8, 0xFF, 0x89, 0x82, 0x61, 0x90, 0x10, 0x1F,
0x14, 0xDA, 0x3D, 0x1E, 0x83, 0x40, 0x78, 0x17, 0x08, 0xF4, 0x7A, 0x35,
... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/libraries/Adafruit_GFX_Library/Fonts/FreeSansBold12pt7b.h | null | null | null | null | null | null | C | 2026-05-04T18:22:35.211839 | #pragma once
#include <Adafruit_GFX.h>
const uint8_t FreeSansBold12pt7bBitmaps[] PROGMEM = {
0xFF, 0xFF, 0xFF, 0xFF, 0x76, 0x66, 0x60, 0xFF, 0xF0, 0xF3, 0xFC, 0xFF,
0x3F, 0xCF, 0x61, 0x98, 0x60, 0x0E, 0x70, 0x73, 0x83, 0x18, 0xFF, 0xF7,
0xFF, 0xBF, 0xFC, 0x73, 0x83, 0x18, 0x18, 0xC7, 0xFF, 0xBF, 0xFD, 0xFF... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/AXP192.h | null | null | null | null | null | null | C | 2026-05-04T18:22:35.849468 | #pragma once
#ifndef __AXP192_H__
#define __AXP192_H__
#include <Arduino.h>
#include <Wire.h>
#define SLEEP_MSEC(us) (((uint64_t)us) * 1000L)
#define SLEEP_SEC(us) (((uint64_t)us) * 1000000L)
#define SLEEP_MIN(us) (((uint64_t)us) * 60L * 1000000L)
#define SLEEP_HR(us) (((uint64_t)us) * 60L * 60L * 1000000L)
cla... |
Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | https://github.com/Fr4nkFletcher/ESP32-Marauder-Cheap-Yellow-Display | null | null | null | null | 1,575 | null | null | mit | null | null | null | null | null | null | null | ESP32-1732S019/esp32_marauder/BatteryInterface.h | null | null | null | null | null | null | C | 2026-05-04T18:22:36.001117 | #pragma once
#ifndef BatteryInterface_h
#define BatteryInterface_h
#include <Arduino.h>
#include "configs.h"
#include "Adafruit_MAX1704X.h"
#include <Wire.h>
#define IP5306_ADDR 0x75
#define MAX17048_ADDR 0x36
class BatteryInterface {
private:
uint32_t initTime = 0;
Adafruit_MAX17048 maxlipo;
public:... |
pramsey/pgsql-http | https://github.com/pramsey/pgsql-http | null | null | null | null | 1,574 | null | null | mit | null | null | null | null | null | null | null | http.c | null | null | null | null | null | null | C | 2026-05-04T18:22:38.459602 | /***********************************************************************
*
* Project: PgSQL HTTP
* Purpose: Main file.
*
***********************************************************************
* Copyright 2025 Paul Ramsey <pramsey@cleverelephant.ca>
*
* Permission is hereby granted, free of charge, to any per... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/unix/ftconfig.h | null | null | null | null | null | null | C | 2026-05-04T18:22:41.443169 | /* ftconfig.h. Generated from ftconfig.in by configure. */
/***************************************************************************/
/* */
/* ftconfig.in */
/* ... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/amiga/src/base/ftdebug.c | null | null | null | null | null | null | C | 2026-05-04T18:22:41.453752 | /***************************************************************************/
/* */
/* ftdebug.c */
/* */
/* De... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/LeapSDK/include/LeapMath.h | null | null | null | null | null | null | C | 2026-05-04T18:22:41.455390 | /******************************************************************************\
* Copyright (C) 2012-2013 Leap Motion, Inc. All rights reserved. *
* Leap Motion proprietary and confidential. Not for distribution. *
* Use subject to the terms of the Leap Motion SDK Agreement available at ... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/compilers/VisualStudio 2019/resource.h | null | null | null | null | null | null | C | 2026-05-04T18:22:41.471151 | //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by Torque 2D.rc
//
#define IDI_TORQUE2D 107
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 108
#define _APS_NEXT_COMMAND_VALUE ... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/compilers/VisualStudio 2022/resource.h | null | null | null | null | null | null | C | 2026-05-04T18:22:41.475617 | //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by Torque 2D.rc
//
#define IDI_TORQUE2D 107
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 108
#define _APS_NEXT_COMMAND_VALUE ... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/amiga/include/freetype/config/ftconfig.h | null | null | null | null | null | null | C | 2026-05-04T18:22:41.481442 | /***************************************************************************/
/* */
/* ftconfig.h */
/* */
/* Am... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/amiga/include/freetype/config/ftmodule.h | null | null | null | null | null | null | C | 2026-05-04T18:22:41.484715 | /***************************************************************************/
/* */
/* ftmodule.h */
/* */
/* Am... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/unix/ft2unix.h | null | null | null | null | null | null | C | 2026-05-04T18:22:41.486619 | /***************************************************************************/
/* */
/* ft2build.h */
/* */
/* Bu... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/mac/ftmac.c | null | null | null | null | null | null | C | 2026-05-04T18:22:41.521093 | /***************************************************************************/
/* */
/* ftmac.c */
/* */
/* Ma... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/amiga/src/base/ftsystem.c | null | null | null | null | null | null | C | 2026-05-04T18:22:41.578971 | /***************************************************************************/
/* */
/* ftsystem.c */
/* */
/* Am... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/wince/ftdebug.c | null | null | null | null | null | null | C | 2026-05-04T18:22:42.346225 | /***************************************************************************/
/* */
/* ftdebug.c */
/* */
/* De... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/unix/ftsystem.c | null | null | null | null | null | null | C | 2026-05-04T18:22:42.354156 | /***************************************************************************/
/* */
/* ftsystem.c */
/* */
/* Un... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/vms/ftconfig.h | null | null | null | null | null | null | C | 2026-05-04T18:22:42.379257 | /***************************************************************************/
/* */
/* ftconfig.h */
/* */
/* VM... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/config/ftheader.h | null | null | null | null | null | null | C | 2026-05-04T18:22:42.494303 | /***************************************************************************/
/* */
/* ftheader.h */
/* */
/* Bu... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/devel/ft2build.h | null | null | null | null | null | null | C | 2026-05-04T18:22:42.502010 | /***************************************************************************/
/* */
/* ft2build.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/win32/ftdebug.c | null | null | null | null | null | null | C | 2026-05-04T18:22:42.521498 | /***************************************************************************/
/* */
/* ftdebug.c */
/* */
/* De... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/devel/ftoption.h | null | null | null | null | null | null | C | 2026-05-04T18:22:42.551937 | /***************************************************************************/
/* */
/* ftoption.h (for development) */
/* */
/* Us... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/config/ftstdlib.h | null | null | null | null | null | null | C | 2026-05-04T18:22:42.994893 | /***************************************************************************/
/* */
/* ftstdlib.h */
/* */
/* AN... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/config/ftoption.h | null | null | null | null | null | null | C | 2026-05-04T18:22:42.999657 | /***************************************************************************/
/* */
/* ftoption.h */
/* */
/* Us... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftbbox.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.103570 | /***************************************************************************/
/* */
/* ftbbox.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftadvanc.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.106991 | /***************************************************************************/
/* */
/* ftadvanc.h */
/* */
/* Qu... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/config/ftconfig.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.125581 | /* ftconfig.h. Generated from ftconfig.in by configure. */
/***************************************************************************/
/* */
/* ftconfig.in */
/* ... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftbdf.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.179233 | /***************************************************************************/
/* */
/* ftbdf.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/builds/vms/ftsystem.c | null | null | null | null | null | null | C | 2026-05-04T18:22:43.215888 | /***************************************************************************/
/* */
/* ftsystem.c */
/* */
/* VM... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftautoh.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.285709 | /***************************************************************************/
/* */
/* ftautoh.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftbitmap.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.347635 | /***************************************************************************/
/* */
/* ftbitmap.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftbzip2.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.562839 | /***************************************************************************/
/* */
/* ftbzip2.h */
/* */
/* Bz... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftcache.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.597022 | /***************************************************************************/
/* */
/* ftcache.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftchapters.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.699324 | /***************************************************************************/
/* */
/* This file defines the structure of the FreeType reference. */
/* It is used by the python script which generates the HTML files. */
/* ... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftcffdrv.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.700500 | /***************************************************************************/
/* */
/* ftcffdrv.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftcid.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.742700 | /***************************************************************************/
/* */
/* ftcid.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/fterrdef.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.809882 | /***************************************************************************/
/* */
/* fterrdef.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/fterrors.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.812005 | /***************************************************************************/
/* */
/* fterrors.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftgasp.h | null | null | null | null | null | null | C | 2026-05-04T18:22:43.898602 | /***************************************************************************/
/* */
/* ftgasp.h */
/* */
/* Ac... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftglyph.h | null | null | null | null | null | null | C | 2026-05-04T18:22:44.119433 | /***************************************************************************/
/* */
/* ftglyph.h */
/* */
/* Fr... |
TorqueGameEngines/Torque2D | https://github.com/TorqueGameEngines/Torque2D | null | null | null | null | 1,567 | null | null | mit | null | null | null | null | null | null | null | engine/lib/freetype/android/freetype-2.4.12/freetype/include/freetype2/freetype/ftgxval.h | null | null | null | null | null | null | C | 2026-05-04T18:22:44.153196 | /***************************************************************************/
/* */
/* ftgxval.h */
/* */
/* Fr... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.