RepPanel - A DIY alternative to the PanelDue with WiFi support
-
@seeul8er said in RepPanel - A DIY alternative to the PanelDue with WiFi support:
@dragonn Planned
@Danal I am using the same calls as DWC for getting the data in WiFi mode. Seems the requests (rr_gcode etc.) haven't changed.
Agreed. Network type, WiFi v Ether v ... is not relevant. the /rr_commands work via any form of IP connectivity.
However, I was referring to V2 firmware vs V3 firmware. The calls are different for V3, and so is the returned JSON object.
-
I think I'd opted for a optional $2-3 DT-06 wifi module with esp-link firmware or something to plug into the PanelDue port. Would give you the same g-code interface to deal with regardless of wired, wireless, rrf2 or rrf3.
Looks good though!
-
Can you send me a few links for sourcing the hardware please. I want in on that project. This is exactly what I have been looking for and thinking about the past few weeks!
AWESOME!
-
@bberger Cool! It's all in the GitHub repo, but I sent you a PM.
-
@seeul8er Someone (probably @Phaedrux) has added this to https://duet3d.dozuki.com/c/Community_Projects
Ian
-
@droftarts NIce. I'm OK with that
-
seems to be some issues compiling what is in the git repo under windows. some define's and some missing font functions. I don't know enough about idf.py to begin fixing the issue however.
-
@Colten I know. Should be fixed within the development branch. The current way is that you need to copy file content of
main/lv_conf_back.h
over toexternals/lv_port_esp32/components/lvgl/lv_conf.h
. You can find lv_conf_back.h in the dev branch. -
Hi guys!
I am very happy to finally release v1.0.0 of RepPanel. It now supports UART/PanelDue wired connections as well as WiFi. All connections can be hot-swapped.
I also fixed lots of bugs related to memory issues. You can now have up to 16 macros/jobs per directory with file names up to 63 characters.
I also tried to design the first prototype for a case. Still needs some tiny improvements but it already is very compact and clean. Together with a simple circuit board it is only 25mm thick. The images do not reflect the quality of the screen well. In reality, the contrast is a lot better. -
-
Hi
I have just started trying to get this to work as I have several applications. I have flashed the software onto an ESP devkit and connected your recommended screen. I have not however connected it to a duet board. I had hoped at least part of the screen would show up but I only get a faint outline in the top left hand corner. I suspect I have made a mistake in connecting to the screen but I would be grateful if you would confirm that is the case. Or does the duet need to be connected.
-
Anywhere to get working hardware for this inside the EU?
-
@pd Sorry for the late reply! Can you share the link to your display, because there are multiple very similar versions of it and I already had a user that bought the wrong one I clarified it inside the GitHub project page. Can you also share the wiring and a picture of what you can see on screen?
It is not necessary to connect the Duet. The app should start anyways.@pandaym Hi, the ESP32 is not an issue since it is generally available. I ordered the display directly from china. Since it was below 22€ it is tax free and shipping was OK-fast. There may be other ili9488 displays with SPI (+ supported touch controller) and the same resolution that work and that you can get within the EU. However, I have not tested any of them.
-
Dear @seeul8er ,
would you be intrested in a PCB. I will order some PCBs for other projects in China. If you want i could design one!
Best
Peter -
@PCR I already thought about it but wanted to keep it as simple as possbile for others to follow for now. Non the less a custom PBC would be awesome!
And if you are willing to give it a try why not.
With that we would get a couple of options to choose from. We could dump the pin headers of the TFT module and use an FCC cable. The DevKit would also not be necessary since the ESP module could be soldered directly to the PCB. Or keep the devkit and and solder it to the PCB since it offers USB power and serial for a low price.
The software does only support SPI connections so a 8bit parallel interface is currently not possible. -
@seeul8er said in RepPanel - A DIY alternative to the PanelDue with WiFi support:
the ESP module could be soldered directly to the PCB
how much flash do you need? (ESP8285 is cheaper and smaller but only 1MB)
-
@bearer Hardware-wise the ESP8285 is not enough (especially RAM - kind of maxed out on the ESP32). The image needs 1.4 MB at the moment. The software only supports the ESP32.
-
I really like your solution, and decided to try and grab a few pieces for it, as I was already ordering a lot of other stuff off Mouser.com
Since stuff like this is COMPLETELY new to me, could you maybe take a look at these parts I grabbed and see if you think it will work?I have no idea where to begin, but I will figure that out I would just like to know if I overlooked something in the specs for the stuff I needed to find. I just went for ESP32 devkit and from the details of the screen, I saw it was 320x480 and had SPI connection: https://www.seeedstudio.com/3-5-Inch-TFT-Display-for-Raspberry-Pi-Resistive-Touch-Screen-p-2248.html
-
@pandaym Your hardware looks good to me! The DevBoard is standard so that's perfectly fine. The screen is tricky but it should work. Its touch controller is a XPT2046 which definitely supported by LVGL. I did some searching and my best guess is that the display is from waveshare. Looking at their driver code the chip should be a ILI9486 which is also supported by LVGL and thus by RepPanel
-
@seeul8er said in RepPanel - A DIY alternative to the PanelDue with WiFi support:
@pandaym Your hardware looks good to me! The DevBoard is standard so that's perfectly fine. The screen is tricky but it should work. Its touch controller is a XPT2046 which definitely supported by LVGL. I did some searching and my best guess is that the display is from waveshare. Looking at their driver code the chip should be a ILI9486 which is also supported by LVGL and thus by RepPanel
Thanks a lot, that sounds good! I will dive into it and see if I can figure out how to wire and program it