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

    New M-code to send a network request

    Scheduled Pinned Locked Moved
    Firmware wishlist
    15
    51
    6.6k
    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.
    • OddKodeundefined
      OddKode
      last edited by

      I'm writing a "DuetTimelapseClient" in C# as a WinForms app for my own purposes. The laptop I use for slicing is in the same room (and same network) as the printer and it's a Windows 10 machine. The client is using a HttpWebRequest / WebRequest to communicate /w the Duet and takes care of polling the Duet. It stores the current layer #. When the current layer # on the app doesn't match the current layer coming from the Duet, that's a layer change, and it will hit my IP cam's static image URL and download that to a folder (which is the name of the timelapse + current date / time). At the end, it executes FFMPEG to stitch the images together into a timelapse. I'm also planning at having a timelapse by interval instead of just z-change. This will take me a while as I burst some discs in my back and my Hypercube build with my new Duet 2 Ethernet board was put on hold till I'm more mobile again. Plus my day job is a software dev so it's hard to put in a full day doing that and coming home and doing more of that - gotta keep that healthy work / life balance!

      Another idea I've been toying with. I've downloaded DWC to try and see if it's possible to raise a JS event upon layer change. I was hoping I could tap into the field that stores the IP / web camera URL (I'm using a Wyzecam v2), and upon layer change it raises a JS event, which uses that URL to call another "API" URL hosted on an old linux (Ubuntu) PC I'm using as a utility box (PiHole, Plex, file shares) - which is basically just a simple PHP script that takes in that URL, accesses it and downloads the resulting image to a file share.

      All the while I'm also checking printing status. When a job completes, I'd have another event raised to call that same PHP script, writing out a file called "TimeLapseName-END.jpg". I'd have a cron job wake up on the machine every 5 minutes which looks at the root folder ("Timelapses"), digs into each one looking at all *.jpg files and finding those that end with "-END". That tells the script to run FFMPEG to stitch all jpg images inside each folder into a timelapse. After stitching, it wipes the images, then the containing folder and copies the stitched timelapse to a file share and sends me an email.

      I think having two extra fields "API Image URL" (for taking the snaps) and "API Job Complete URL" (for rendering the timelapse) would make this possible - but this whole process only works if you're using an IP cam that has a static image capture function - direct web cam wouldn't work using this I don't think. For me, if I experiment with this, I'll probably just hardcode all of the values - I don't want to mess /w the general layout of DWC, just add some additional logic to it. 🙂

      Sorry to ramble! I'm sure there's much better solutions out there, but I love to tinker so 🙂

      ~OddKode

      Danalundefined 1 Reply Last reply Reply Quote 1
      • Danalundefined
        Danal @lostapathy
        last edited by Danal

        @lostapathy said in New M-code to send a network request:

        Mine's on my NAS, but you can run that anywhere, or use a public one in the cloud.

        No thanks. With all due respect, the concept of having a NAS, or server, or cloud be REQUIRED for my printer to trigger the camera that is bolted to it (or similar)...

        I totally get having such a service/broker for tens, hundreds, thousands, ... of IoT devices. For what should be totally local interaction between two or three endpoints, MQTT feels (to me) even "heavier" than some of the things we've already rejected.

        Delta / Kossel printer fanatic

        1 Reply Last reply Reply Quote 0
        • Danalundefined
          Danal
          last edited by

          HTTP with option for ultra-quick timeout seems to be a pretty good hammer.

          Still like to see an UDP option, but I seem to be in the miniority for that, and the existing internals of Duet/RepRap/WiFi-module also don't seem amenable.

          So... HTTP with timeout options. Sounds pretty good.

          Mnnn [resolvable name|IP] [timeout in ms] "payload" 
          

          Should there be an option to express a payload buffer entirely in Hexadecimal?

          Delta / Kossel printer fanatic

          1 Reply Last reply Reply Quote 0
          • Danalundefined
            Danal @OddKode
            last edited by

            @oddkode said in New M-code to send a network request:

            Another idea I've been toying with. I've downloaded DWC to try and see if it's possible to raise a JS event upon layer change.

            Yes, but... DWC just polls. Nothing is ever "pushed" to DWC from the printer. If you are already polling, no need to 'hook' DWC.

            I was hoping I could tap into the field that stores the IP / web camera URL

            You can certainly get that from DWC internally (JS read the HTML field, among other things), but there is a potentially easier way: DWC stores its persistent settings in a file on the printer itself, and pulls them via an AJAX call. You can either:

            HTTP download the file

            http://192.168.1.100/rr_download?name=DWCconfig.txt
            

            Or make an AJAX call (still really an HTTP GET) for a JSON object (containing the same info)

            http://192.168.1.100/dwc.json
            

            Note: REALLY old DWC kept config in a cookie; then DWC kept it in local browser storage... but for some time now, the above has worked. So you should be able to ignore those old ways.

            Delta / Kossel printer fanatic

            1 Reply Last reply Reply Quote 0
            • Nightreaverundefined
              Nightreaver
              last edited by

              I think having MQTT for this scenario makes sense to me.

              I already like the Idea of having MQTT as part of the DuetFirmware as described here: https://github.com/dc42/RepRapFirmware/issues/284

              Having a more detailed status will allow you to use MQTT to do lots of things with the report.
              Even taking a picture would be possible that way if the status is properly prepared.

              So lets say the MQTT connection is setup like wifi with some M-code, and you have another "M-code" (like M118 Px) to send a message to a MQTT topic, which is checked form another service/agent that will take care of anything else.

              Also like mentioned in my ticket, you can use it to tigger power supplies like Tasmota-Compatible via Homeassistant/OpenHAB.

              Setting up the Broker itself is part of another system, you usually dont use MQTT if there itsn't anything else in place. For these scenarios you might already have a broker running. Even if not, that broker can simply run on a RaspberryPI that you might use for the Webcam as well.

              I really support that MQTT idea. MQTT with a proper topic-layout can be used to do many many more things...

              Nightreaver created this issue in dc42/RepRapFirmware

              closed MQTT Status Update / MQTT power control #284

              1 Reply Last reply Reply Quote 1
              • fmaundefined
                fma
                last edited by

                Why not just use a little RPi Zero W, and connect it to the Duet via I²C? RRF can send I²C commands, so once the RPi is set up, you can do whatever you want (up to cmplex tasks). An ESP8266/32 could also do the job.

                Frédéric

                Nightreaverundefined 1 Reply Last reply Reply Quote 0
                • Jacotheronundefined
                  Jacotheron
                  last edited by

                  Regarding the RPi Zero W on I2C, we should just remember that at present a RaspberryPi can't be an I2C slave (it can communicate with I2C devices, but other devices can't establish a connection to them). I have spent a few days trying to set it up (in my case it was trying to safely shutdown the Pi, before the printer shuts itself down).

                  1 Reply Last reply Reply Quote 0
                  • fmaundefined
                    fma
                    last edited by

                    I didn't know that. Too bad 😞 So one should use Arduino/ESP...

                    Frédéric

                    1 Reply Last reply Reply Quote 1
                    • Nightreaverundefined
                      Nightreaver
                      last edited by

                      yes you might use it, but then I'm having another ESP32/8622 device beside the esp of the duet, to get a feature via I2C that could be "easily" integrated via MQTT on the current duet?

                      I know there is many workaround to solve my issue, but MQTT is a neat solution.

                      Also think of this
                      https://forum.duet3d.com/topic/9668/telnet-printing-using-a-filament-monitor

                      There is already solution that work with MQTT and telegram.

                      So i.e. the Duet is updating a "Status" mqtt topic, when this is changing to "out of filament" send a telegram message. no need of utilizing and coding arduino or micropython. it can be done with much simpler and higher level language.

                      And as other already said, why do i have need to have another device for much simpler things when i already have a 179$ duet in place.

                      Feels like fixing my porsche with cheap volvo parts...

                      fmaundefined 1 Reply Last reply Reply Quote 1
                      • fmaundefined
                        fma @Nightreaver
                        last edited by

                        @nightreaver said in New M-code to send a network request:

                        And as other already said, why do i have need to have another device for much simpler things when i already have a 179$ duet in place.

                        Well, I like the idea to have multiple simple systems doing specific tasks, and doing them well, rather than heavy things doing badly a lot of stuffs... Maybe RRF needs a good hooks system, with a simple and powerfull com design, to allow us to expand its capabilities without the need to modify the firmware, introducing complexity and potential unstability...

                        Feels like fixing my porsche with cheap volvo parts...

                        What a waste of Volvo parts 😉

                        Frédéric

                        dc42undefined 1 Reply Last reply Reply Quote 0
                        • dc42undefined
                          dc42 administrators
                          last edited by

                          I have it on the list for RRF3 for the Duet to be able to send network messages. Whether we support sending via HTTP or MQTT or something else has not been decided yet.

                          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

                          Nightreaverundefined 1 Reply Last reply Reply Quote 4
                          • dc42undefined
                            dc42 administrators @fma
                            last edited by dc42

                            @fma said in New M-code to send a network request:

                            ... Maybe RRF needs a good hooks system, with a simple and powerfull com design, to allow us to expand its capabilities without the need to modify the firmware, introducing complexity and potential unstability...

                            That's hard to do on Duet 2, but it will be provided on Duet 3 right from the start.

                            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

                            1 Reply Last reply Reply Quote 0
                            • Nightreaverundefined
                              Nightreaver @dc42
                              last edited by

                              @dc42 said in New M-code to send a network request:

                              I have it on the list for RRF3 for the Duet to be able to send network messages. Whether we support sending via HTTP or MQTT or something else has not been decided yet.

                              IMHO is MQTT THE IoT protocol.

                              Other opinions ( "mqtt vs http" ) :

                              https://medium.com/mqtt-buddy/mqtt-vs-http-which-one-is-the-best-for-iot-c868169b3105
                              https://www.linkedin.com/pulse/internet-things-http-vs-websockets-mqtt-ronak-singh-cspo
                              https://cloud.google.com/blog/products/iot-devices/http-vs-mqtt-a-tale-of-two-iot-protocols

                              I'd probably not go, an reinvent the wheel with "something else". But im biased 🙂

                              1 Reply Last reply Reply Quote 1
                              • Nightreaverundefined
                                Nightreaver @fma
                                last edited by

                                @fma said in New M-code to send a network request:

                                Why not just use a little RPi Zero W, and connect it to the Duet via I²C? RRF can send I²C commands, so once the RPi is set up, you can do whatever you want (up to cmplex tasks). An ESP8266/32 could also do the job.

                                So how would I utilize I²C on duet? I mean.. in need something while no solution is there.

                                I'd like to get:

                                • power on/off before/after print
                                • print status / filament status

                                I think if you can point me to any of these, I can figure out everything else

                                1 Reply Last reply Reply Quote 0
                                • fmaundefined
                                  fma
                                  last edited by

                                  M260 can send data over I²C bus:

                                  https://duet3d.dozuki.com/Wiki/Gcode#Section_M260_i2c_Send_and_or_request_Data

                                  On the I²C slave, just mimic some registers you will write from Duet to take the actions you need.

                                  I recently developped a project using an ATtiny841 as I²C slave (this chip as a hardware I²C slave implementation), working this way. See:

                                  https://framagit.org/fma38/Servo_Node

                                  This is for an hexapod (I will use 6 of them, to control the 4 servos of each leg). But I will certainly use this chip for other projects, like here.

                                  Code in Arduino/ dir is a master example; the real master will be a RPi, running my framework Py4bot: https://framagit.org/fma38/Py4bot

                                  Frédéric

                                  Nightreaverundefined 2 Replies Last reply Reply Quote 2
                                  • Nightreaverundefined
                                    Nightreaver @fma
                                    last edited by

                                    @fma can i also get a hook in power on/off before and after a print?

                                    Also is there a way to get serial through not usb?

                                    1 Reply Last reply Reply Quote 0
                                    • fmaundefined
                                      fma
                                      last edited by

                                      You can send I²c commands from your start and stops scripts.

                                      You can drive the Duet from the LCD connector instead of USB port (This is a serial TTL, you need a TTL-RS232 converter to hook it to a PC serial port).

                                      Frédéric

                                      1 Reply Last reply Reply Quote 0
                                      • Nightreaverundefined
                                        Nightreaver @fma
                                        last edited by

                                        @fma I want to use a WemosD1 because I got a couple for cheap. Im currently struggleing getting the I2C connection working (total noob on arduion and I²C)

                                        The wemos is a 3v3 device, so I can use without a level shifter. Ive use the pins of the expansion board.
                                        0_1558808799959_945279ed-cd99-48cd-9302-b77d6e3c201a-image.png

                                        I assume sda is TWD, and scl is TWCK ?

                                        What else do I need?

                                        I'm giving my device a 0x08 address and send the following from the duet: M260 A"x08" B99 or M260 A8 B99
                                        But I cant see anything happening tho.

                                        Did I miss something or is it just a coding/cabling issue? The wires are ~10cm

                                        Danalundefined 1 Reply Last reply Reply Quote 0
                                        • Danalundefined
                                          Danal @Nightreaver
                                          last edited by Danal

                                          @nightreaver said in New M-code to send a network request:

                                          I assume sda is TWD, and scl is TWCK ?

                                          ESP8266s do I2C in firmware, not hardware. Whatever pins you assign in the wire.begin() will work, with very few exceptions. I do encourage you to use "Dn" format, vs. just a number, the Dn are defined to map properly to the silkscreen on the board. Also, as far as I know, and ESP8266 can be an I2C master, but not a slave.

                                          And... this may help your efforts. This sketch scans the I2C bus and tells you the addresses of all slaves that respond. I've tried it, and it does work. I don't remember where I got it, and its own header comments don't say.

                                          /*
                                           * Wire - I2C Scanner
                                           *
                                           * The WeMos D1 Mini I2C bus uses pins:
                                           * D1 = SCL
                                           * D2 = SDA
                                           */
                                          
                                          #include <Wire.h>
                                          
                                          const int sclPin = D1;
                                          const int sdaPin = D2;
                                          
                                          void setup()
                                          {
                                            Wire.begin(sdaPin, sclPin);
                                          
                                            Serial.begin(115200);
                                            Serial.println("I2C Scanner");
                                          }
                                          
                                          void loop()
                                          {
                                            byte error, address;
                                            int nDevices;
                                          
                                            Serial.println("Scanning...");
                                          
                                            nDevices = 0;
                                            for (address = 1; address < 127; address++)
                                            {
                                              // The i2c scanner uses the return value of
                                              // the Write.endTransmisstion to see if
                                              // a device did acknowledge to the address.
                                              Wire.beginTransmission(address);
                                              error = Wire.endTransmission();
                                          
                                              if (error == 0)
                                              {
                                                Serial.print("I2C device found at address 0x");
                                                if (address < 16) {
                                                  Serial.print("0");
                                                }
                                                Serial.print(address, HEX);
                                                Serial.println(" !");
                                          
                                                nDevices++;
                                              }
                                              else if (error == 4)
                                              {
                                                Serial.print("Unknown error at address 0x");
                                                if (address < 16) {
                                                  Serial.print("0");
                                                }
                                                Serial.println(address, HEX);
                                              }
                                            }
                                            if (nDevices == 0) {
                                              Serial.println("No I2C devices found\n");
                                            }
                                            else {
                                              Serial.println("Done.\n");
                                            }
                                          
                                            delay(2000);
                                          }
                                          

                                          Delta / Kossel printer fanatic

                                          Nightreaverundefined 1 Reply Last reply Reply Quote 0
                                          • Nightreaverundefined
                                            Nightreaver @Danal
                                            last edited by

                                            @danal Hey, i found that scetch on github yesterday. I assume it's the esp sample library. Nonetheless I tried it and didn't work for me. I also changed to pins in the firmware, so i assume the pins on the duet i use are wrong, or i missed a cable.
                                            Are the marked pins good for i2c communication on the duet? Do i need any more wires or connections?

                                            dc42undefined Danalundefined 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Unless otherwise noted, all forum content is licensed under CC-BY-SA