Duet3D Logo

    Duet3D

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Documentation
    • Order
    1. Home
    2. dbruce.ae05
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 12
    • Best 2
    • Controversial 0
    • Groups 0

    dbruce.ae05

    @dbruce.ae05

    3
    Reputation
    2
    Profile views
    12
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    dbruce.ae05 Unfollow Follow

    Best posts made by dbruce.ae05

    • Implement G17, G18, G19 for CNC

      Please implement G18 and G19. These are pretty important operations in CNC for curves not in the xy plane.

      Just bought a Duet3 and didn't find this out until after...disappointed :(.

      Firmwarewishlist

      posted in Firmware wishlist
      dbruce.ae05
      dbruce.ae05
    • RE: SBC Raspberry Pi Backup Configs

      Thanks @Phaedrux! that's just what I needed. I created a cronjob to run the following script every hour while I'm trying to get things running.

      now=`date +'%F_%H.%M.%S'`
      host_address="username@host"
      filename="[backup file pathway]/$now/"
      
      #echo $now
      #echo $host_address
      #echo $filename
      
      ssh $host_address mkdir -p $filename
      
      rsync -av /opt/dsf/sd/sys $host_address:$filename
      rsync -av /opt/dsf/sd/macros $host_address:$filename
      

      The script above requires automatic ssh login, a good link to set that up is here: http://www.linuxproblem.org/art_9.html

      Cron:

      # m h  dom mon dow   command
      0 * * * * bash /home/pi/Documents/backup-duet3.sh
      
      posted in General Discussion
      dbruce.ae05
      dbruce.ae05

    Latest posts made by dbruce.ae05

    • RE: can't connect to DWC via different devices.

      @robh345 same issue for me..

      All devices on the same network. I can connect to DWC with iPad, iPhone, and until recently my laptop. Now, the raspberry pi connected to the Duet3 doesn't respond to pings from my laptop, but it does from other devices.

      posted in Duet Web Control
      dbruce.ae05
      dbruce.ae05
    • RE: Feedback wanted: conditional GCode without indentation

      @fcwilt 🙃

      posted in Future Direction
      dbruce.ae05
      dbruce.ae05
    • RE: Feedback wanted: conditional GCode without indentation

      I’m going to break with the group. I like the Python style of programming and keeping the indentations. Python is widely used and when writing code on the SBC, most likely a raspberry pi, Python is the natural choice.

      posted in Future Direction
      dbruce.ae05
      dbruce.ae05
    • RE: Repository for CNC Config's and Macro's

      @Arcnsparks I tried to implement this, but I'm not having any luck. I split the axes (x axis in my case) to X & U, and try to home. But the X0 motor doesn't stop when the end stop is hit. No matter which end stop is hit first, X1 keeps going, and X0 stops. Any ideas?

      Configuration files below:
      config.g
      homex.g

      posted in CNC
      dbruce.ae05
      dbruce.ae05
    • RE: SBC Raspberry Pi Backup Configs

      Thanks @Phaedrux! that's just what I needed. I created a cronjob to run the following script every hour while I'm trying to get things running.

      now=`date +'%F_%H.%M.%S'`
      host_address="username@host"
      filename="[backup file pathway]/$now/"
      
      #echo $now
      #echo $host_address
      #echo $filename
      
      ssh $host_address mkdir -p $filename
      
      rsync -av /opt/dsf/sd/sys $host_address:$filename
      rsync -av /opt/dsf/sd/macros $host_address:$filename
      

      The script above requires automatic ssh login, a good link to set that up is here: http://www.linuxproblem.org/art_9.html

      Cron:

      # m h  dom mon dow   command
      0 * * * * bash /home/pi/Documents/backup-duet3.sh
      
      posted in General Discussion
      dbruce.ae05
      dbruce.ae05
    • SBC Raspberry Pi Backup Configs

      Is there a documentation page that describes how the Raspberry Pi communicates with the Duet3?

      I would like to backup the configuration files using rsync on the Raspberry Pi to another computer on my network so I don't lose the configuration files. I'm making a lot of changes getting my CNC setup, and I'd like to have a history of changes.

      posted in General Discussion
      dbruce.ae05
      dbruce.ae05
    • RE: Implement G17, G18, G19 for CNC

      Thank you! I can’t wait for the release

      posted in Firmware wishlist
      dbruce.ae05
      dbruce.ae05
    • RE: Repository for CNC Config's and Macro's

      @Arcnsparks Do you have a macro for zeroing both y-axes to zero out racking each time you home the machine?

      posted in CNC
      dbruce.ae05
      dbruce.ae05
    • Implement G17, G18, G19 for CNC

      Please implement G18 and G19. These are pretty important operations in CNC for curves not in the xy plane.

      Just bought a Duet3 and didn't find this out until after...disappointed :(.

      Firmwarewishlist

      posted in Firmware wishlist
      dbruce.ae05
      dbruce.ae05