mirror of
				https://github.com/meshtastic/firmware.git
				synced 2025-10-28 23:34:03 +00:00 
			
		
		
		
	 475cfe4af2
			
		
	
	
		475cfe4af2
		
			
		
	
	
	
		
			
	
		
	
	
		
			Some checks are pending
		
		
	
	CI / setup (check) (push) Waiting to run
				
			CI / setup (esp32) (push) Waiting to run
				
			CI / setup (esp32c3) (push) Waiting to run
				
			CI / setup (esp32c6) (push) Waiting to run
				
			CI / setup (esp32s3) (push) Waiting to run
				
			CI / setup (nrf52840) (push) Waiting to run
				
			CI / setup (rp2040) (push) Waiting to run
				
			CI / setup (stm32) (push) Waiting to run
				
			CI / check (push) Blocked by required conditions
				
			CI / build-esp32 (push) Blocked by required conditions
				
			CI / build-esp32-s3 (push) Blocked by required conditions
				
			CI / build-esp32-c3 (push) Blocked by required conditions
				
			CI / build-esp32-c6 (push) Blocked by required conditions
				
			CI / build-nrf52 (push) Blocked by required conditions
				
			CI / build-rpi2040 (push) Blocked by required conditions
				
			CI / build-stm32 (push) Blocked by required conditions
				
			CI / build-debian-src (push) Waiting to run
				
			CI / package-pio-deps-native-tft (push) Waiting to run
				
			CI / test-native (push) Waiting to run
				
			CI / docker-deb-amd64 (push) Waiting to run
				
			CI / docker-deb-amd64-tft (push) Waiting to run
				
			CI / docker-alp-amd64 (push) Waiting to run
				
			CI / docker-alp-amd64-tft (push) Waiting to run
				
			CI / docker-deb-arm64 (push) Waiting to run
				
			CI / docker-deb-armv7 (push) Waiting to run
				
			CI / gather-artifacts (esp32) (push) Blocked by required conditions
				
			CI / gather-artifacts (esp32c3) (push) Blocked by required conditions
				
			CI / gather-artifacts (esp32c6) (push) Blocked by required conditions
				
			CI / gather-artifacts (esp32s3) (push) Blocked by required conditions
				
			CI / gather-artifacts (nrf52840) (push) Blocked by required conditions
				
			CI / gather-artifacts (rp2040) (push) Blocked by required conditions
				
			CI / gather-artifacts (stm32) (push) Blocked by required conditions
				
			CI / release-artifacts (push) Blocked by required conditions
				
			CI / release-firmware (esp32) (push) Blocked by required conditions
				
			CI / release-firmware (esp32c3) (push) Blocked by required conditions
				
			CI / release-firmware (esp32c6) (push) Blocked by required conditions
				
			CI / release-firmware (esp32s3) (push) Blocked by required conditions
				
			CI / release-firmware (nrf52840) (push) Blocked by required conditions
				
			CI / release-firmware (rp2040) (push) Blocked by required conditions
				
			CI / release-firmware (stm32) (push) Blocked by required conditions
				
			CI / publish-firmware (push) Blocked by required conditions
				
			
		
			
				
	
	
		
			117 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "configuration.h"
 | |
| 
 | |
| #ifdef MESHTASTIC_INCLUDE_NICHE_GRAPHICS
 | |
| 
 | |
| // InkHUD-specific components
 | |
| // ---------------------------
 | |
| #include "graphics/niche/InkHUD/InkHUD.h"
 | |
| 
 | |
| // Applets
 | |
| #include "graphics/niche/InkHUD/Applets/User/AllMessage/AllMessageApplet.h"
 | |
| #include "graphics/niche/InkHUD/Applets/User/DM/DMApplet.h"
 | |
| #include "graphics/niche/InkHUD/Applets/User/Heard/HeardApplet.h"
 | |
| #include "graphics/niche/InkHUD/Applets/User/Positions/PositionsApplet.h"
 | |
| #include "graphics/niche/InkHUD/Applets/User/RecentsList/RecentsListApplet.h"
 | |
| #include "graphics/niche/InkHUD/Applets/User/ThreadedMessage/ThreadedMessageApplet.h"
 | |
| 
 | |
| // Shared NicheGraphics components
 | |
| // --------------------------------
 | |
| #include "graphics/niche/Drivers/EInk/E0213A367.h"
 | |
| #include "graphics/niche/Drivers/EInk/LCMEN2R13EFC1.h"
 | |
| #include "graphics/niche/Inputs/TwoButton.h"
 | |
| 
 | |
| #include "buzz.h"       // Button feedback
 | |
| #include "einkDetect.h" // Detect display model at runtime
 | |
| 
 | |
| void setupNicheGraphics()
 | |
| {
 | |
|     using namespace NicheGraphics;
 | |
| 
 | |
|     // Detect E-Ink Model
 | |
|     // -------------------
 | |
| 
 | |
|     EInkDetectionResult displayModel = detectEInk();
 | |
| 
 | |
|     // SPI
 | |
|     // -----------------------------
 | |
| 
 | |
|     // Display is connected to HSPI
 | |
|     SPIClass *hspi = new SPIClass(HSPI);
 | |
|     hspi->begin(PIN_EINK_SCLK, -1, PIN_EINK_MOSI, PIN_EINK_CS);
 | |
| 
 | |
|     // E-Ink Driver
 | |
|     // -----------------------------
 | |
| 
 | |
|     Drivers::EInk *driver;
 | |
| 
 | |
|     if (displayModel == EInkDetectionResult::LCMEN213EFC1) // V1 (unmarked)
 | |
|         driver = new Drivers::LCMEN213EFC1;
 | |
|     else if (displayModel == EInkDetectionResult::E0213A367) // V1.1
 | |
|         driver = new Drivers::E0213A367;
 | |
| 
 | |
|     driver->begin(hspi, PIN_EINK_DC, PIN_EINK_CS, PIN_EINK_BUSY, PIN_EINK_RES);
 | |
| 
 | |
|     // InkHUD
 | |
|     // ----------------------------
 | |
| 
 | |
|     InkHUD::InkHUD *inkhud = InkHUD::InkHUD::getInstance();
 | |
| 
 | |
|     // Set the E-Ink driver
 | |
|     inkhud->setDriver(driver);
 | |
| 
 | |
|     // Set how many FAST updates per FULL update
 | |
|     // Set how unhealthy additional FAST updates beyond this number are
 | |
| 
 | |
|     if (displayModel == EInkDetectionResult::LCMEN213EFC1) // V1 (unmarked)
 | |
|         inkhud->setDisplayResilience(10, 1.5);
 | |
|     else if (displayModel == EInkDetectionResult::E0213A367) // V1.1
 | |
|         inkhud->setDisplayResilience(15, 3);
 | |
| 
 | |
|     // Select fonts
 | |
|     InkHUD::Applet::fontLarge = FREESANS_12PT_WIN1252;
 | |
|     InkHUD::Applet::fontMedium = FREESANS_9PT_WIN1252;
 | |
|     InkHUD::Applet::fontSmall = FREESANS_6PT_WIN1252;
 | |
| 
 | |
|     // Customize default settings
 | |
|     inkhud->persistence->settings.userTiles.maxCount = 2; // How many tiles can the display handle?
 | |
|     inkhud->persistence->settings.rotation = 3;           // 270 degrees clockwise
 | |
|     inkhud->persistence->settings.userTiles.count = 1;    // One tile only by default, keep things simple for new users
 | |
|     inkhud->persistence->settings.optionalMenuItems.nextTile = false; // Behavior handled by aux button instead
 | |
| 
 | |
|     // Pick applets
 | |
|     // Note: order of applets determines priority of "auto-show" feature
 | |
|     inkhud->addApplet("All Messages", new InkHUD::AllMessageApplet, true, true); // Activated, autoshown
 | |
|     inkhud->addApplet("DMs", new InkHUD::DMApplet);                              // -
 | |
|     inkhud->addApplet("Channel 0", new InkHUD::ThreadedMessageApplet(0));        // -
 | |
|     inkhud->addApplet("Channel 1", new InkHUD::ThreadedMessageApplet(1));        // -
 | |
|     inkhud->addApplet("Positions", new InkHUD::PositionsApplet, true);           // Activated
 | |
|     inkhud->addApplet("Recents List", new InkHUD::RecentsListApplet);            // -
 | |
|     inkhud->addApplet("Heard", new InkHUD::HeardApplet, true, false, 0);         // Activated, not autoshown, default on tile 0
 | |
| 
 | |
|     // Start running InkHUD
 | |
|     inkhud->begin();
 | |
| 
 | |
|     // Buttons
 | |
|     // --------------------------
 | |
| 
 | |
|     Inputs::TwoButton *buttons = Inputs::TwoButton::getInstance(); // Shared NicheGraphics component
 | |
| 
 | |
|     // #0: Main User Button
 | |
|     buttons->setWiring(0, Inputs::TwoButton::getUserButtonPin());
 | |
|     buttons->setHandlerShortPress(0, [inkhud]() { inkhud->shortpress(); });
 | |
|     buttons->setHandlerLongPress(0, [inkhud]() { inkhud->longpress(); });
 | |
| 
 | |
|     // #1: Aux Button
 | |
|     buttons->setWiring(1, PIN_BUTTON2);
 | |
|     buttons->setHandlerShortPress(1, [inkhud]() {
 | |
|         inkhud->nextTile();
 | |
|         playChirp();
 | |
|     });
 | |
| 
 | |
|     // Begin handling button events
 | |
|     buttons->start();
 | |
| }
 | |
| 
 | |
| #endif |