Files
uno-q-audio-synth/sketch/Font.h
T
david f70a8701c9
Validate and Test / validate-patches (push) Failing after 13s
fix: make router socket non-blocking to prevent poll loop stalls
2026-06-24 04:45:15 -07:00

19 lines
275 B
C

/*
This file is part of the ArduinoGraphics library.
Copyright (c) 2025 Arduino SA. All rights reserved.
*/
#ifndef _FONT_H
#define _FONT_H
#include <stddef.h>
#include <stdint.h>
struct Font {
const int width;
const int height;
const uint8_t** data;
};
#endif