mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-04 09:02:21 +00:00
changes from bringing up PPR
This commit is contained in:
@@ -33,4 +33,18 @@ class UC1701Spi : public OLEDDisplay
|
||||
void display(void) {}
|
||||
|
||||
private:
|
||||
};
|
||||
};
|
||||
|
||||
#include "variant.h"
|
||||
#include <UC1701.h>
|
||||
static UC1701 lcd(PIN_SPI_SCK, PIN_SPI_MOSI, ERC12864_CS, ERC12864_CD);
|
||||
|
||||
|
||||
void testLCD() {
|
||||
// PCD8544-compatible displays may have a different resolution...
|
||||
lcd.begin();
|
||||
|
||||
// Write a piece of text on the first line...
|
||||
lcd.setCursor(0, 0);
|
||||
lcd.print("Hello, World!");
|
||||
}
|
||||
Reference in New Issue
Block a user