You've already forked meshtastic-device-ui
mirror of
https://github.com/m5stack/meshtastic-device-ui.git
synced 2026-05-20 11:51:03 -07:00
17 lines
445 B
C++
17 lines
445 B
C++
#pragma once
|
|
#include "graphics/driver/DisplayDriverConfig.h"
|
|
|
|
class DisplayDriver;
|
|
|
|
class DisplayDriverFactory
|
|
{
|
|
public:
|
|
static DisplayDriver *create(uint16_t width, uint16_t height);
|
|
static DisplayDriver *create(const DisplayDriverConfig &config);
|
|
|
|
private:
|
|
DisplayDriverFactory(void);
|
|
// TODO: DisplayDriverFactory(uint32_t width, uint32_t height);
|
|
// TODO: DisplayDriverFactory(const DisplayDriverConfig& config);
|
|
};
|