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

    Dario02

    @Dario02

    3
    Reputation
    4
    Profile views
    50
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Dario02 Unfollow Follow

    Best posts made by Dario02

    • RE: Repetier server and duet

      @Phaedrux I have connected with a bridge raspberry pi and duet eth so that I can have both DWC and Repetier server, DWC to change configurations and debugging, repetier as GUI for raspberry touchscreen. Thank you guys.

      posted in General Discussion
      Dario02undefined
      Dario02

    Latest posts made by Dario02

    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 ok well, I'll let you know for the other error

      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 I managed one error you didn't write the "," after "standby": "G10 P0 S${value}"
      } <---- missing ","

      "set_temp_commands": {
      				"active": "G10 P0 R${value}",
      				"standby": "G10 P0 S${value}"
      			}
                               /*
      			 * The two input fields for setting the active and standby can be hidden
      			 * if desired.  The default is to show them.
      			 */
      			 "show_set_fields": false
      

      it should be:

      "set_temp_commands": {
      				"active": "G10 P0 R${value}",
      				"standby": "G10 P0 S${value}"
      			},
                               /*
      			 * The two input fields for setting the active and standby can be hidden
      			 * if desired.  The default is to show them.
      			 */
      			 "show_set_fields": false
      
      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 Yes it works fine because I removed what didn't work... as I told you try adding one of the element/widget that I reported you and the code should not work properly. If you can't understand what I mean, please wait until I'll be free to work on this with you ^_^

      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 try adding one of them, now I can't

      class DueUIConfig {
        "dueui_content" = {
          "id": "dueui",
          "type": "tabbed_panel",
          "header_panel": {
            "id": "dueui_header_main",
            "type": "panel",
      
            "element_configs": [
              {
                "id": "video_html",
                "type": "image",
                "src": "http://192.168.1.118/rr_download?name=/images/logo.png",
                "style": {
                  "width": "128px",
                  "height": "41px"
                },
                "position": {
                  "my": "left top",
                  "at": "left top",
                  "of": "#dueui"
                }
              },
              {
                "id": "status",
                "type": "status",
                "style": {
                  "width": "128px"
                },
                "position": {
                  "my": "left top",
                  "at": "right-115 top+3",
                  "of": "#dueui"
                }
              }
            ]
          },
          "menubar": {
            "id": "dueui_menubar",
            "type": "panel",
            "button_defaults": {},
            "position": {
              "my": "left top",
              "at": "left+8 bottom-28",
              "of": "#dueui"
            }
          },
          "element_configs": [
            {
              "id": "dueui_panel_movement",
              "type": "tab_panel",
              "menubar_label": "HOME",
              "element_configs": [
                {
                  "id": "video_html",
                  "type": "image",
                  "src": "http://duet3:8080/stream",
                  "style": {
                    "width": "320px",
                    "height": "210px"
                  },
                  "position": {
                    "my": "left top",
                    "at": "left top",
                    "of": "#dueui_panel_movement"
                  }
                }
                
              ]
            }
          ]
        };
      
        "status_map" = {
          "idle": { "label": "Idle", "classes": "btn-success" },
          "P": { "label": "Printing", "classes": "btn-success" },
          "S": { "label": "Stopped", "classes": "btn-warning" },
          "C": { "label": "Starting Up", "classes": "btn-success" },
          "paused": { "label": "Paused", "classes": "btn-primary" },
          "pausing": { "label": "Pausing", "classes": "btn-success" },
          "resuming": { "label": "Resuming", "classes": "btn-success" },
          "changingTool": { "label": "Tool<br>Change", "classes": "btn-warning" },
          "busy": { "label": "Busy", "classes": "btn-success" },
          "updating": { "label": "Updating", "classes": "btn-danger" },
          "halted": { "label": "Halted", "classes": "btn-danger" },
          "off": { "label": "Off", "classes": "btn-danger" },
          "processing": { "label": "Processing", "classes": "btn-warning" },
          "simulating": { "label": "Simulating", "classes": "btn-primary" },
          "connected": { "label": "Connected", "classes": "btn-success" },
          "connecting": { "label": "Connecting", "classes": "btn-warning" },
          "reconnected": { "label": "Connected", "classes": "btn-success" },
          "disconnected": { "label": "Disconnected", "classes": "btn-warning" },
          "retrying": { "label": "Retrying", "classes": "btn-warning" },
          "failed": { "label": "Failed", "classes": "btn-danger" },
          "unknown": { "label": "?", "classes": "btn-secondary" }
        };
      }
      
      
      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 simply if I add one of them the code doesn't run

      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 You asked me to report you what examples don't work. For now I found:
      https://github.com/gtjoseph/DueUI/wiki/File-List
      https://github.com/gtjoseph/DueUI/wiki/Heater

      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 Are there others fixed defintion that I should know? If yes where can I find them?

      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 Hi, I noticed that you must name some variables as the system would expect... for example I can't name the "header_panel" as "main_header_panel" and the first id must be "dueui". I would like to know where I could find the variables names ("header_panel", "menubar" etc... and some predefined IDs..)

      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 i'll check it soon, thank you for the support. I know I'm making lots of questions

      posted in DueUI
      Dario02undefined
      Dario02
    • RE: [HELP] How to use DueUI without a Duet using chrome

      @gtj0 it's still showing the settings for dueui. I would like to make a main panel with movements for example... how?

      posted in DueUI
      Dario02undefined
      Dario02