Display_Lib_RPI 2.4.0
A C++ Library to connect electronic displays to Linux single board computers.
Loading...
Searching...
No Matches
led_segment_font_data_RDL.hpp
Go to the documentation of this file.
1
8#pragma once
9
10#include <cstdint>
11
16protected:
17 static const uint8_t* pFontSevenSegptr();
18private:
19 static const uint8_t fontData[];
20};
21
26protected:
27 static const uint16_t* pFontNineSegptr();
29private:
30 static const uint16_t fontData[];
31};
32
37protected:
38 static const uint16_t* pFontFourteenSegptr();
39private:
40 static const uint16_t fontData[];
41};
47protected:
48 static const uint16_t* pFontSixteenSegptr();
49private:
50 static const uint16_t fontData[];
51};
52
FourteenSegmentFont Class that provides access to a fourteen-segment font data table.
Definition led_segment_font_data_RDL.hpp:36
static const uint16_t * pFontFourteenSegptr()
Retrieves a pointer to the fourteen-segment font data table.
Definition led_segment_font_data_RDL.cpp:85
static const uint16_t fontData[]
font , map of ASCII values/table to 14-segment, offset to position 32. dp-nmlkjh-g2-g1-fedcba order.
Definition led_segment_font_data_RDL.hpp:68
NineSegmentFont Class that provides access to a nine-segment font data table.
Definition led_segment_font_data_RDL.hpp:25
static const uint16_t * pFontNineSegptr()
Retrieves a pointer to the nine-segment font data table.
Definition led_segment_font_data_RDL.cpp:59
static const uint16_t fontData[]
font , map of ASCII values/table to 9-segment, offset to position 32. dp-ihgfedcba order.
Definition led_segment_font_data_RDL.hpp:42
SevenSegmentFont Class that provides access to a seven-segment font data table.
Definition led_segment_font_data_RDL.hpp:15
static const uint8_t * pFontSevenSegptr()
Retrieves a pointer to the seven-segment font data table.
Definition led_segment_font_data_RDL.cpp:33
static const uint8_t fontData[]
Font data table for ASCII values mapped to seven-segment representation. Offset starts at ASCII value...
Definition led_segment_font_data_RDL.hpp:16
SixteenSegmentFont Class that provides access to a sixteen-segment font data table.
Definition led_segment_font_data_RDL.hpp:46
static const uint16_t fontData[]
font , map of ASCII values/table to 16-segment, offset to position 32. utsrpnmkhgfedcba order.
Definition led_segment_font_data_RDL.hpp:94
static const uint16_t * pFontSixteenSegptr()
Retrieves a pointer to the sixteen-segment font data table.
Definition led_segment_font_data_RDL.cpp:111