JM9 XRCU Board 0.1.0
Libraries API Reference
Loading...
Searching...
No Matches
Monitor.h
Go to the documentation of this file.
1
8
9#ifndef MONITOR_H
10#define MONITOR_H
11
12#include <Arduino.h>
13
14#include <Supported_actuator.h>
15
16#include "Adafruit_GFX_Library/Adafruit_GFX.h" // Core graphics library
17#include "Adafruit_ST7735_and_ST7789_Library/Adafruit_ST7735.h" // Hardware-specific library for ST7735
18
23class Monitor : public Adafruit_ST7735, public Supported_actuator {
24 public:
25 Monitor ();
26};
27
33extern Monitor display;
34
35#endif // #ifndef MONITOR_H
Adafruit_ST7735(int8_t cs, int8_t dc, int8_t mosi, int8_t sclk, int8_t rst)
Instantiate Adafruit ST7735 driver with software SPI.
Definition Adafruit_ST7735.cpp:14
A monitor on XRCU.
Definition Monitor.h:23
Supported_actuator()
Creates an object of a supported actuator.
Definition Supported_actuator.h:23