Digital Buddha Installation
My topic is digital faith, how is the digital changing the way we believe?Will our faith continue to exist in a more digital age, and will people create new digital gods? Or make a pilgrimage to a digital screen?
I made up a digital Buddha.Insert the electronic incense into the incense burner, and the machine will print the result of your request.
Parts, Tools, Supplies
Arduino uno/ Print module / Power supply 12v /Photoelectric module/ Soldering iron & solder / Wire strippers/ USB A-B cable/Dupont wire
Circuit Diagram and Code
#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)
}
}
Form & Material
Design electronic Buddha and printer paper
Describe the Steps
- Design the shape of electronic Buddha and Incantation paper,and make each part of the entity
- Welding screen and put the electronic Buddha on my screen
- Weld each part according to the circuit diagram(connected each component (Photoelectric module and Print module) to the circuit board with wires respectively)
- Enter the code
- Debug the picture code and debug its rendering effect in the print module
- Test the code
- Upload the final code
- Use wood to make boxes for sticking incense and to make boxes for printing parts
- Assemble the circuit into the case of each component