This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Thread Rating:
  • 2 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Server Hardware for openplotter?
Also, I find it really handy to have a node red dashboard so you can reboot or shutdown the Pi from a webpage on a tablet/phone/laptop.

Flow here with a countdown timer to turn off my music as well should anyone be interested >

Code:
[
   {
       "id": "26d6c7a0.d43558",
       "type": "ui_slider",
       "z": "346f9605.5900aa",
       "name": "Auto Turn Off",
       "label": "Minutes",
       "tooltip": "",
       "group": "d4a061b3.6ae9d",
       "order": 2,
       "width": 0,
       "height": 0,
       "passthru": true,
       "outs": "end",
       "topic": "",
       "min": 0,
       "max": "70",
       "step": 1,
       "x": 110,
       "y": 460,
       "wires": [
           [
               "e694c854.c75008"
           ]
       ]
   },
   {
       "id": "ea149bfc.8f3d68",
       "type": "exec",
       "z": "346f9605.5900aa",
       "command": "sudo killall clementine",
       "addpay": false,
       "append": "",
       "useSpawn": "false",
       "timer": "",
       "oldrc": false,
       "name": "",
       "x": 780,
       "y": 420,
       "wires": [
           [],
           [],
           []
       ]
   },
   {
       "id": "e694c854.c75008",
       "type": "function",
       "z": "346f9605.5900aa",
       "name": "seconds to minutes",
       "func": "if(msg.topic!=\"countdown\"){\n    msg.timeout=msg.payload*60;\nreturn msg;}",
       "outputs": 1,
       "noerr": 0,
       "x": 310,
       "y": 420,
       "wires": [
           [
               "845b73a0.3c363"
           ]
       ]
   },
   {
       "id": "fddca3e2.bc0fc",
       "type": "exec",
       "z": "346f9605.5900aa",
       "command": "mpc stop",
       "addpay": false,
       "append": "",
       "useSpawn": "false",
       "timer": "",
       "oldrc": false,
       "name": "",
       "x": 740,
       "y": 480,
       "wires": [
           [],
           [],
           []
       ]
   },
   {
       "id": "b667bd5a.a94f2",
       "type": "inject",
       "z": "346f9605.5900aa",
       "name": "",
       "repeat": "",
       "crontab": "",
       "once": false,
       "onceDelay": 0.1,
       "topic": "",
       "payload": "25",
       "payloadType": "num",
       "x": 130,
       "y": 420,
       "wires": [
           [
               "26d6c7a0.d43558"
           ]
       ]
   },
   {
       "id": "845b73a0.3c363",
       "type": "mytimeout",
       "z": "346f9605.5900aa",
       "name": "",
       "outtopic": "",
       "outsafe": "",
       "outwarning": "",
       "outunsafe": "off",
       "warning": "1",
       "timer": "3",
       "debug": false,
       "ndebug": false,
       "ignoreCase": false,
       "repeat": false,
       "again": false,
       "x": 550,
       "y": 420,
       "wires": [
           [
               "fddca3e2.bc0fc",
               "ea149bfc.8f3d68"
           ],
           [
               "9ea7b2c0.97ad6"
           ]
       ]
   },
   {
       "id": "7ae79492.3b9f3c",
       "type": "ui_text",
       "z": "346f9605.5900aa",
       "group": "d4a061b3.6ae9d",
       "order": 1,
       "width": 0,
       "height": 0,
       "name": "",
       "label": "Time til turn off",
       "format": "{{msg.payload}}",
       "layout": "row-spread",
       "x": 520,
       "y": 500,
       "wires": []
   },
   {
       "id": "9ea7b2c0.97ad6",
       "type": "function",
       "z": "346f9605.5900aa",
       "name": "minutesCountdown",
       "func": "var temp = msg.payload;\nvar minutes = parseInt(temp/60);\nvar seconds = temp - minutes*60;\nmsg.payload = minutes.toString() + \":\" + seconds.toString();\nvar newMsg = { payload: minutes};\nnewMsg.topic = \"countdown\";\nreturn [msg, newMsg];",
       "outputs": 2,
       "noerr": 0,
       "x": 310,
       "y": 500,
       "wires": [
           [
               "7ae79492.3b9f3c"
           ],
           [
               "26d6c7a0.d43558"
           ]
       ]
   },
   {
       "id": "d1d09e6b.4fc3d",
       "type": "comment",
       "z": "346f9605.5900aa",
       "name": "Dashboard off timer",
       "info": "",
       "x": 150,
       "y": 380,
       "wires": []
   },
   {
       "id": "210a837e.f5231c",
       "type": "ui_button",
       "z": "346f9605.5900aa",
       "name": "",
       "group": "d4a061b3.6ae9d",
       "order": 3,
       "width": "2",
       "height": "1",
       "passthru": false,
       "label": "Reboot",
       "tooltip": "",
       "color": "",
       "bgcolor": "",
       "icon": "",
       "payload": "",
       "payloadType": "str",
       "topic": "",
       "x": 130,
       "y": 580,
       "wires": [
           [
               "81aab8e9.0c53b8"
           ]
       ]
   },
   {
       "id": "81aab8e9.0c53b8",
       "type": "exec",
       "z": "346f9605.5900aa",
       "command": "sudo reboot",
       "addpay": false,
       "append": "",
       "useSpawn": "false",
       "timer": "",
       "oldrc": false,
       "name": "reboot",
       "x": 330,
       "y": 580,
       "wires": [
           [],
           [],
           []
       ]
   },
   {
       "id": "3ac279ec.11c376",
       "type": "ui_button",
       "z": "346f9605.5900aa",
       "name": "",
       "group": "d4a061b3.6ae9d",
       "order": 3,
       "width": "2",
       "height": "1",
       "passthru": false,
       "label": "Shutdown",
       "tooltip": "",
       "color": "",
       "bgcolor": "",
       "icon": "",
       "payload": "",
       "payloadType": "str",
       "topic": "",
       "x": 120,
       "y": 640,
       "wires": [
           [
               "6725eec.382e01"
           ]
       ]
   },
   {
       "id": "6725eec.382e01",
       "type": "exec",
       "z": "346f9605.5900aa",
       "command": "sudo shutdown",
       "addpay": false,
       "append": "",
       "useSpawn": "false",
       "timer": "",
       "oldrc": false,
       "name": "shutdown",
       "x": 330,
       "y": 640,
       "wires": [
           [],
           [],
           []
       ]
   },
   {
       "id": "d4a061b3.6ae9d",
       "type": "ui_group",
       "z": "",
       "name": "Auto Off",
       "tab": "e93ef2b0.f7b94",
       "disp": true,
       "width": "6",
       "collapse": false
   },
   {
       "id": "e93ef2b0.f7b94",
       "type": "ui_tab",
       "z": "",
       "name": "Web Radio",
       "icon": "dashboard",
       "order": 1,
       "disabled": false,
       "hidden": false
   }
]
Reply


Messages In This Thread
Server Hardware for openplotter? - by glowntiger - 2019-05-17, 12:58 PM
RE: Server Hardware for openplotter? - by abarrow - 2019-05-17, 02:01 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-05-18, 03:40 PM
RE: Server Hardware for openplotter? - by jim321 - 2019-05-21, 10:19 AM
RE: Server Hardware for openplotter? - by jim321 - 2019-05-21, 12:07 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-05-01, 09:41 AM
RE: Server Hardware for openplotter? - by Sailoog - 2019-05-27, 09:19 PM
RE: Server Hardware for openplotter? - by Sailoog - 2019-05-29, 08:15 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-06-16, 08:51 PM
RE: Server Hardware for openplotter? - by jim321 - 2019-06-17, 12:13 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-08-15, 11:50 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-08-26, 09:39 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-08-29, 12:03 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-08-29, 01:58 PM
RE: Server Hardware for openplotter? - by jim321 - 2019-09-01, 09:22 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-09-02, 11:42 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-09-02, 03:29 PM
RE: Server Hardware for openplotter? - by jim321 - 2019-09-02, 11:20 AM
Server Hardware for openplotter? - by tkurki - 2019-09-02, 03:34 PM
RE: Server Hardware for openplotter? - by Sailoog - 2019-09-03, 04:04 PM
RE: Server Hardware for openplotter? - by Sailoog - 2019-09-04, 04:27 PM
RE: Server Hardware for openplotter? - by kste - 2019-09-04, 08:13 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-09-04, 02:11 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-09-05, 11:38 AM
RE: Server Hardware for openplotter? - by Sailoog - 2019-09-05, 11:50 AM
RE: Server Hardware for openplotter? - by PaddyB - 2019-09-05, 01:28 PM
RE: Server Hardware for openplotter? - by Sailoog - 2019-09-05, 02:51 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-09-08, 02:27 PM
RE: Server Hardware for openplotter? - by Sailoog - 2019-09-13, 03:36 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-09-13, 04:40 PM
RE: Server Hardware for openplotter? - by abarrow - 2019-09-17, 04:35 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-09-23, 06:33 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-09-30, 05:16 PM
RE: Server Hardware for openplotter? - by jim321 - 2019-10-06, 02:30 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-06, 05:53 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-07, 10:10 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-07, 02:31 PM
RE: Server Hardware for openplotter? - by jim321 - 2019-10-07, 02:10 PM
RE: Server Hardware for openplotter? - by jim321 - 2019-10-07, 02:55 PM
RE: Server Hardware for openplotter? - by jim321 - 2019-10-08, 12:33 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-10, 11:53 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-14, 10:37 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-19, 05:48 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-20, 10:07 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-29, 01:04 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-29, 03:05 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-29, 11:00 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-10-30, 11:33 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-11-10, 10:22 PM
RE: Server Hardware for openplotter? - by flybob - 2019-11-19, 11:57 AM
RE: Server Hardware for openplotter? - by flybob - 2019-11-21, 02:43 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-02, 08:03 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-03, 03:33 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-03, 08:06 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-03, 11:30 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-05, 10:24 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-07, 11:01 AM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-11, 06:06 PM
RE: Server Hardware for openplotter? - by Sailoog - 2019-12-07, 12:12 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-07, 12:35 PM
RE: Server Hardware for openplotter? - by Sailoog - 2019-12-07, 12:49 PM
RE: Server Hardware for openplotter? - by Max1947 - 2019-12-12, 12:16 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-01-11, 05:06 PM
RE: Server Hardware for openplotter? - by flybob - 2020-01-01, 01:33 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-01-12, 12:59 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-01-12, 08:45 PM
RE: Server Hardware for openplotter? - by flybob - 2020-02-06, 10:28 PM
RE: Server Hardware for openplotter? - by flybob - 2020-02-25, 08:55 PM
RE: Server Hardware for openplotter? - by niklun - 2020-02-28, 01:43 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-02-28, 07:47 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-01, 09:48 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-02, 12:28 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-02, 12:41 PM
RE: Server Hardware for openplotter? - by flybob - 2020-03-03, 10:05 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-04, 11:04 AM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-04, 12:56 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-04, 02:48 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-05, 01:13 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-05, 03:13 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-06, 11:04 AM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-06, 12:03 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-06, 12:10 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-09, 03:36 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-10, 11:01 AM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-10, 11:33 AM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-10, 08:09 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-10, 09:13 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-11, 11:36 AM
RE: Server Hardware for openplotter? - by Sailoog - 2020-03-11, 12:32 PM
RE: Server Hardware for openplotter? - by niklun - 2020-03-12, 12:24 AM
RE: Server Hardware for openplotter? - by niklun - 2020-03-12, 04:53 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-18, 04:15 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-18, 05:37 PM
RE: Server Hardware for openplotter? - by niklun - 2020-03-22, 02:14 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-22, 03:40 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-03-23, 06:02 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-14, 10:09 AM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-16, 12:48 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-22, 10:08 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-23, 01:30 PM
RE: Server Hardware for openplotter? - by flybob - 2020-04-23, 07:30 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-23, 08:03 PM
RE: Server Hardware for openplotter? - by flybob - 2020-04-26, 06:32 PM
RE: Server Hardware for openplotter? - by jamieFL - 2020-04-25, 12:30 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-25, 01:00 PM
RE: Server Hardware for openplotter? - by jamieFL - 2020-04-27, 01:14 AM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-27, 09:05 AM
RE: Server Hardware for openplotter? - by jamieFL - 2020-04-27, 01:14 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-27, 05:39 PM
RE: Server Hardware for openplotter? - by flybob - 2020-04-27, 07:55 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-27, 08:47 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-04-28, 11:37 AM
RE: Server Hardware for openplotter? - by jamieFL - 2020-05-02, 09:14 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-05-02, 10:04 PM
RE: Server Hardware for openplotter? - by niklun - 2020-05-03, 07:43 AM
RE: Server Hardware for openplotter? - by Max1947 - 2020-05-03, 01:55 PM
RE: Server Hardware for openplotter? - by flybob - 2020-05-05, 02:16 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-05-06, 02:55 PM
RE: Server Hardware for openplotter? - by flybob - 2020-05-06, 09:15 PM
RE: Server Hardware for openplotter? - by flybob - 2020-05-08, 09:51 AM
RE: Server Hardware for openplotter? - by flybob - 2020-05-11, 08:31 PM
RE: Server Hardware for openplotter? - by flybob - 2020-05-12, 01:24 PM
RE: Server Hardware for openplotter? - by niklun - 2020-05-19, 12:52 PM
RE: Server Hardware for openplotter? - by niklun - 2020-05-23, 04:16 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-05-23, 05:47 PM
RE: Server Hardware for openplotter? - by niklun - 2020-05-23, 05:56 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-05-23, 08:50 PM
RE: Server Hardware for openplotter? - by niklun - 2020-05-24, 11:14 AM
RE: Server Hardware for openplotter? - by Max1947 - 2020-05-24, 01:33 PM
RE: Server Hardware for openplotter? - by niklun - 2020-05-25, 11:08 PM
RE: Server Hardware for openplotter? - by niklun - 2020-05-28, 01:00 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-05-28, 03:13 PM
RE: Server Hardware for openplotter? - by flybob - 2020-06-03, 02:01 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-06-04, 06:18 PM
RE: Server Hardware for openplotter? - by jamieFL - 2020-06-11, 02:08 AM
RE: Server Hardware for openplotter? - by MatsA - 2020-06-14, 12:26 PM
RE: Server Hardware for openplotter? - by niklun - 2020-06-02, 12:10 PM
RE: Server Hardware for openplotter? - by niklun - 2020-06-02, 04:03 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-06-02, 05:02 PM
RE: Server Hardware for openplotter? - by niklun - 2020-06-03, 07:54 AM
RE: Server Hardware for openplotter? - by niklun - 2020-06-03, 12:18 PM
RE: Server Hardware for openplotter? - by niklun - 2020-06-04, 07:44 PM
RE: Server Hardware for openplotter? - by flybob - 2020-06-04, 01:57 PM
RE: Server Hardware for openplotter? - by flybob - 2020-06-04, 02:19 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-06-08, 11:26 AM
RE: Server Hardware for openplotter? - by Max1947 - 2020-06-09, 06:41 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-06-16, 06:50 PM
RE: Server Hardware for openplotter? - by jamieFL - 2020-06-11, 12:24 PM
RE: Server Hardware for openplotter? - by jamieFL - 2020-06-11, 09:14 PM
RE: Server Hardware for openplotter? - by jamieFL - 2020-06-11, 10:16 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-06-12, 12:52 PM
RE: Server Hardware for openplotter? - by MatsA - 2020-06-15, 08:50 AM
RE: Server Hardware for openplotter? - by flybob - 2020-06-16, 09:53 PM
RE: Server Hardware for openplotter? - by flybob - 2020-06-30, 01:02 PM
RE: Server Hardware for openplotter? - by glenn - 2020-06-30, 01:25 PM
RE: Server Hardware for openplotter? - by flybob - 2020-06-30, 01:45 PM
RE: Server Hardware for openplotter? - by glenn - 2020-07-05, 11:06 AM
RE: Server Hardware for openplotter? - by glenn - 2020-07-06, 09:55 PM
RE: Server Hardware for openplotter? - by flybob - 2020-07-12, 08:12 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-07-23, 05:37 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-07-28, 02:06 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-07-29, 09:31 AM
RE: Server Hardware for openplotter? - by Max1947 - 2020-08-14, 10:19 AM
RE: Server Hardware for openplotter? - by niklun - 2020-12-12, 10:31 PM
RE: Server Hardware for openplotter? - by flybob - 2020-08-05, 07:13 PM
RE: Server Hardware for openplotter? - by flybob - 2020-08-06, 10:26 AM
RE: Server Hardware for openplotter? - by flybob - 2020-08-19, 09:43 PM
RE: Server Hardware for openplotter? - by flybob - 2020-08-20, 09:56 AM
RE: Server Hardware for openplotter? - by MatsA - 2020-08-20, 10:08 AM
RE: Server Hardware for openplotter? - by jamieFL - 2020-08-27, 09:13 PM
RE: Server Hardware for openplotter? - by mgrouch - 2020-09-08, 06:57 PM
RE: Server Hardware for openplotter? - by flybob - 2020-09-11, 09:30 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-09-12, 10:57 AM
RE: Server Hardware for openplotter? - by mgrouch - 2020-09-24, 04:47 PM
RE: Server Hardware for openplotter? - by flybob - 2020-09-24, 06:51 PM
RE: Server Hardware for openplotter? - by niklun - 2020-09-25, 03:22 PM
RE: Server Hardware for openplotter? - by mgrouch - 2020-09-25, 10:35 PM
RE: Server Hardware for openplotter? - by niklun - 2020-09-26, 08:00 AM
RE: Server Hardware for openplotter? - by mgrouch - 2020-09-26, 03:44 PM
RE: Server Hardware for openplotter? - by niklun - 2020-09-26, 06:01 PM
RE: Server Hardware for openplotter? - by niklun - 2020-09-28, 12:26 AM
RE: Server Hardware for openplotter? - by mgrouch - 2020-09-28, 02:04 AM
RE: Server Hardware for openplotter? - by niklun - 2020-10-02, 10:59 PM
RE: Server Hardware for openplotter? - by PaddyB - 2020-10-03, 09:19 AM
RE: Server Hardware for openplotter? - by niklun - 2020-12-14, 11:41 AM
RE: Server Hardware for openplotter? - by Max1947 - 2020-12-14, 05:55 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-14, 06:15 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-12-14, 09:02 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-14, 09:51 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-12-14, 10:10 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-15, 12:26 AM
RE: Server Hardware for openplotter? - by niklun - 2020-12-15, 01:12 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-15, 05:34 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-17, 02:17 AM
RE: Server Hardware for openplotter? - by Sailoog - 2020-12-17, 09:58 AM
RE: Server Hardware for openplotter? - by niklun - 2020-12-17, 12:09 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-12-17, 12:24 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-17, 12:49 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-17, 03:14 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-12-17, 10:08 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-17, 10:35 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-20, 04:07 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-12-21, 06:41 PM
RE: Server Hardware for openplotter? - by Max1947 - 2020-12-22, 09:00 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-22, 09:45 PM
RE: Server Hardware for openplotter? - by jmiha - 2020-12-20, 09:06 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-12-21, 06:38 PM
RE: Server Hardware for openplotter? - by Sailoog - 2020-12-24, 12:22 PM
RE: Server Hardware for openplotter? - by niklun - 2020-12-24, 04:33 PM
RE: Server Hardware for openplotter? - by niklun - 2021-01-06, 01:19 AM
RE: Server Hardware for openplotter? - by niklun - 2021-01-06, 05:31 PM
RE: Server Hardware for openplotter? - by niklun - 2021-01-11, 10:11 PM
RE: Server Hardware for openplotter? - by niklun - 2021-01-13, 07:46 PM
RE: Server Hardware for openplotter? - by croy - 2022-01-17, 10:59 PM
RE: Server Hardware for openplotter? - by niklun - 2021-01-14, 09:13 AM
RE: Server Hardware for openplotter? - by niklun - 2021-01-14, 01:59 PM
RE: Server Hardware for openplotter? - by flybob - 2022-01-18, 08:09 AM
RE: Server Hardware for openplotter? - by flybob - 2022-01-19, 08:23 PM
RE: Server Hardware for openplotter? - by flybob - 2022-01-19, 09:43 PM

Forum Jump:


Users browsing this thread: 10 Guest(s)