Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    PrintEye; simple information panel for Duet boards.

    Scheduled Pinned Locked Moved
    General Discussion
    6
    21
    3.1k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Danalundefined
      Danal
      last edited by Danal

      I have implemented a Duet specific, ESP8266 based, monitor. Designed for the little boards that have the ESP, a 1.2 (or was it 0.9??) OLED, and a carrier for a single lithium 18650 style cell. It has a built in charger, micro usb.

      It was based on one of the octoprint monitors, possibly even the one mentioned above.

      I need to post the code on Github.

      If it can't connect to the WiFi network, it flips over into Access Point mode, and you connect to it (with your phone or whatever) and config the SSID and Password.

      After that, there is a web page that can be used to set the Name or IP of the printer.

      After that, it scrolls through various temperatures and times regarding the print in progress.

      It could be VERY easily upgraded to also be a "pendant".

      Delta / Kossel printer fanatic

      EasyTargetundefined 1 Reply Last reply Reply Quote 2
      • EasyTargetundefined
        EasyTarget @Danal
        last edited by EasyTarget

        @Danal
        Nice, I like the sound of that, if you do get it to a state where you push it out please let us know 🙂

        I'm currently playing with ESP32-CAM units; yet another plan(*) involves one of them (using Wifi this time) since there should be enough IO left over for a stepper and endstop, or servo.
        Idea is to make a webcam that can self track current Z height, and turn on when needed, auto time-lapse while printing etc.. Think This, but with power coming via the rods+wifi

        (*) Note to self: Stop. Finish other stuff first.

        Disaster? The original Printeye is dying with RRF 3.5 (M208 depreciated).
        PrintPy2024 to the rescue!
        MicroPython based; with simple wiring and and no custom PCB.

        Danalundefined T3P3Tonyundefined 2 Replies Last reply Reply Quote 1
        • Danalundefined
          Danal @EasyTarget
          last edited by

          @EasyTarget said in PrintEye; simple information panel for Duet boards.:

          (*) Note to self: Stop. Finish other stuff first.

          Aaaaaaaaaaaaaaaaaaamen!!

          Delta / Kossel printer fanatic

          1 Reply Last reply Reply Quote 1
          • T3P3Tonyundefined
            T3P3Tony administrators @EasyTarget
            last edited by

            @EasyTarget I saw from your signature that you had a plan for PrintEye for when M408 is deprecated and removed?

            www.duet3d.com

            EasyTargetundefined 1 Reply Last reply Reply Quote 1
            • EasyTargetundefined
              EasyTarget @T3P3Tony
              last edited by EasyTarget

              @T3P3Tony said in PrintEye; simple information panel for Duet boards.:

              @EasyTarget I saw from your signature that you had a plan for PrintEye for when M408 is deprecated and removed?

              I do indeed; but was avoiding necro-posting here until I had something to show.. 😇

              cb09b4ae-645f-4ce2-b9d0-ee79abe5c14a-image.png

              TL;DR

              The original PrintEYE code probably could be modified for M409 use; but it would be fiddly; directly targeting the keys needed and avoiding fetching full keysets. It's quite do-able but I want to move on.

              • The ATmega328 is the limiting factor; it's really low on RAM and once you have displays etc also running the JSON decoding became a 'mare, eventually I had to cobble together a 'inline' json decoder from various libs I found neglected elsewhere. Plus I was crippled in choices of fonts due to ROM space, and had to forget using a framebuffer (ram) and directly draw the screen.
              • It was good fun and satisfying to do, but not again...

              After I finished the original I started on 'PrintESP' with a similar plan, but a WemosD1 mini in the same case. And the code ported to take advantage of all the extra resources.

              • Did you know that 99% of D1 mini clones cripple the UART with a pulldown resistor? I didnt.. That, cranky SoftSerial implementations and covid stopped progress.

              What did happen during Lockdown was that I learned Python.. eventually coming up with 'SBCeye' (unoriginal naming is my superpower):
              https://github.com/easytarget/SBCEye

              To cut to the chase; I've been working on 'PrintPy', smaller and snazzier, micropython powered with 2 cores and a framebuffer! But still 2x OLED's and one button.
              https://github.com/easytarget/PrintPy2040

              If curious take a look at the Python/Tools folder, the script there currently runs well, is data-driven and flexible, and prints a once-per-interval status line from the OM. It's very in-development so ymmv.

              Disaster? The original Printeye is dying with RRF 3.5 (M208 depreciated).
              PrintPy2024 to the rescue!
              MicroPython based; with simple wiring and and no custom PCB.

              yngndrwundefined 1 Reply Last reply Reply Quote 2
              • yngndrwundefined
                yngndrw @EasyTarget
                last edited by

                @EasyTarget You may want to consider an ESP32 over the RP2040. I adore the RP2040 and use it whenever I can but I often find that for projects which involve a lot of JSON, the memory limit becomes an issue. The ESP32 has the advantage that it can use external memory, whilst still being a modern dual-core microcontroller.

                EasyTargetundefined 1 Reply Last reply Reply Quote 1
                • EasyTargetundefined
                  EasyTarget @yngndrw
                  last edited by EasyTarget

                  @yngndrw said in PrintEye; simple information panel for Duet boards.:

                  You may want to consider an ESP32 over the RP2040

                  The design uses a XIAO (seedstudio) form-factor. Go for it.

                  I have a ESP32-C3 (risc-v) Xiao that I could use.. Or I could get either of the S3 Xiao boards. But they all lack an onboard NeoPixel (and cost more..), so I'd need to add one, or do without.

                  Actually the Xiao C3 board is going to run a LORA transceiver + temperature sensor at my sailclub.; 5uA deep sleep, USB-C and onboard charging circuit for 5eur! Fantastic bit of kit. Also risc-v which pleases me; I have a VisionFive2 running LaserWeb on my CNC.

                  There is a pattern here which I'm seeing a lot; Somebody mentions using ESP32 and shortly thereafter someone arrives saying 'but why not use Pico!', and vice-versa.

                  PrintPy can use both... It's a concept, not set in stone.

                  edited for tone.

                  Disaster? The original Printeye is dying with RRF 3.5 (M208 depreciated).
                  PrintPy2024 to the rescue!
                  MicroPython based; with simple wiring and and no custom PCB.

                  yngndrwundefined 1 Reply Last reply Reply Quote 0
                  • yngndrwundefined
                    yngndrw @EasyTarget
                    last edited by

                    @EasyTarget I'm just advising that memory might become an issue for the JSON parsing, that's all. I did say I adore the RP2040, it's my go-to when memory isn't an issue - They all have their place. I'll keep to myself next time, sorry to bother you.

                    EasyTargetundefined dc42undefined 2 Replies Last reply Reply Quote 1
                    • EasyTargetundefined
                      EasyTarget @yngndrw
                      last edited by

                      @yngndrw You are right, I was a bit snarkyt there; you make a good point and as I have yet to begin porting from CPython to microPython, your words might haunt me when I do 😉

                      I apologies for the last comment; we've recently had some similar stuff with fanboys/spambots on makerforums and I was translating that here. Mea Culpa.

                      Disaster? The original Printeye is dying with RRF 3.5 (M208 depreciated).
                      PrintPy2024 to the rescue!
                      MicroPython based; with simple wiring and and no custom PCB.

                      yngndrwundefined 1 Reply Last reply Reply Quote 0
                      • yngndrwundefined
                        yngndrw @EasyTarget
                        last edited by yngndrw

                        @EasyTarget No worries, I'm sorry my message came across badly - It was probably not the best judgement for my first post on here in years to be a "have you considered X hardware" post. The issue only came to mind because I'd recently used an RP2040 (Specifically the W5500-EVB-Pico, a fantastic board if you need ethernet in a project) on a commercial project and hit the memory limit a number of times. At the end of the day the "right" thing to use is whatever you're comfortable with - It's all personal preference as long as you're aware of the limits and trade-offs.

                        1 Reply Last reply Reply Quote 2
                        • dc42undefined
                          dc42 administrators @yngndrw
                          last edited by

                          @yngndrw said in PrintEye; simple information panel for Duet boards.:

                          I'm just advising that memory might become an issue for the JSON parsing, that's all

                          You might like to look at the PanelDueFirmware code on github. It uses a Json parser that uses minimal RAM.

                          Duet WiFi hardware designer and firmware engineer
                          Please do not ask me for Duet support via PM or email, use the forum
                          http://www.escher3d.com, https://miscsolutions.wordpress.com

                          yngndrwundefined 1 Reply Last reply Reply Quote 1
                          • yngndrwundefined
                            yngndrw @dc42
                            last edited by

                            @dc42 said in PrintEye; simple information panel for Duet boards.:

                            @yngndrw said in PrintEye; simple information panel for Duet boards.:

                            I'm just advising that memory might become an issue for the JSON parsing, that's all

                            You might like to look at the PanelDueFirmware code on github. It uses a Json parser that uses minimal RAM.

                            Ohh I didn't notice that library, I'll have to give JSMN a try in my own projects! Thanks.

                            1 Reply Last reply Reply Quote 1
                            • First post
                              Last post
                            Unless otherwise noted, all forum content is licensed under CC-BY-SA