I will continue with my Cyber Buddhist niche
I drew my storyboard in more detail

(It could be making a shrine and putting a screen in it, or it could be using a TV)

Cyber Buddhist niche style design:
I drew a design of a Buddha statue that will be projected onto the screen
I drew a printed Incantation paper:


(I will choose whether the charm is black or white based on the print effect of the printer)
prototype and circuit:


#include “HPD482.h” // Printer header file
#include “picture.h” // Image data to be printed
HPD482 printer = HPD482(); // Instantiate the printer module
void setup() {
pinMode(13, OUTPUT); // LED
// Printing starts here *//
printer.Print_SetDeep(8); // Set print color depth (used to modify print color depth, not necessary to set every time, already in the initialization, this line can be omitted)
printer.Print_Lines(5, 2); // Print 5 dashed lines with a spacing of 2mm
printer.Motor_Run(24, 0); // Rotate the stepper motor by 24/8=3mm for paper feed
printer.Print_Img2Lcd(0, (u8)Image, 1); // Print the image at coordinates 0 printer.Print_Img2Lcd(20, (u8)Image, 1); // Print the image at coordinates 20
printer.Print_Img2Lcd(44, (u8)Image, 1); // Print the image at coordinates 44 (the part exceeding the print range will be cropped) //* Printing ends //
}
void loop() {
if (digitalWrite(13) == 1) {
printer.Print_Img2Lcd(44, (u8*)Image, 1); // Print the image at coordinates 44 (the part exceeding the print range will be cropped)
}
}
Instructable link:
https://www.instructables.com/preview/E84OSMBLP8CJ7FX/
Google Doc:
https://docs.google.com/document/d/14P15nyfHn5E__6BFYVOq32yIpIK7rnOBctmEpH_VaYA/edit