Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. the_K
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 6
    • Best 0
    • Controversial 0
    • Groups 0

    the_K

    @the_K

    0
    Reputation
    1
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    the_K Unfollow Follow

    Latest posts made by the_K

    • RE: raspberry camera on new firmware version

      I'm going to try different versions of the pi duet when I have time to see if that has any effect.

      posted in General Discussion
      the_Kundefined
      the_K
    • RE: raspberry camera on new firmware version

      I've been put a fresh Bookworm DuetPi 32-bit lite image on my Raspberry Pi 3B+ and its the first time ive tried using a Pi cam ( on the CSI connector) but the spyglass plugin only rund for a few secconds.

      I'm not sure if the DSF package has what i need to run the camera?

      Could anyone point be to a guide that is a little more helpfull than plugins.duet3d. com /plugins/SpyglassWebcamServerPlugin ?

      doese hostename in this "[HOSTNAME]:8080 " mean duet3.local?

      posted in General Discussion
      the_Kundefined
      the_K
    • RE: Emergency stop button on mobile devices

      I would love to be able to move the emergency stop button to the middle of the screen.

      posted in Duet Web Control wishlist
      the_Kundefined
      the_K
    • RE: Temperature controlled LED display

      @rushmere3d

      This is what I've got to change my the colour of my 60 neopixels strip, the first and last ones show blue or red when when when the bed and heater is above 50C and change the brightness of the chamber.

      ; daemeon.g
      ; Adafruit #1426 8 led neopixel
       M150 X3
       if heat.heaters[1].current > 50 ; temp
        M150 R255 Y5 S1 F1   	         ; Red 255 Y =Bightness 0-31 S = Number 
        M150 W255 Y5 S19 F1
        M150 W255 Y20 S20 F1
       elif heat.heaters[1].current <= 50
        M150 B255 Y5 S1 F1
        M150 W255 Y5 S19 F1
        M150 W255 Y5 S20 F1
       if heat.heaters[0].current > 50 ; temp
        M150 W255 Y2 S19 F1
        M150 R255 Y5 S1 F0 
       elif heat.heaters[0].current <= 50
        M150 W255 Y2 S19 F1
        M150 B255 Y5 S1 F0
      
      posted in Gcode meta commands
      the_Kundefined
      the_K
    • RE: Config.json vs Config.g

      Thanks, That's kind of what i wanted to hear. Just just hoped there was a way to keep things better organised i suppose.

      posted in Using Duet Controllers
      the_Kundefined
      the_K
    • Config.json vs Config.g

      Been searching Google, the documents and forum but can't find an answer.
      I've got my corexy with 3 z motors running by editing the config.g file, from the original configurator file.
      I'm a bit confused with what to do with the config.json file now as it's doesn't match the config.g?

      posted in Using Duet Controllers
      the_Kundefined
      the_K