From 0f3b8a4aa4e95a1e740724d47290932f0e6e993d Mon Sep 17 00:00:00 2001 From: Aldo Hoeben Date: Thu, 14 Jul 2016 10:33:59 +0200 Subject: [PATCH 1/2] Add a note about adding the action to the first_start_actions of a generic machine definition --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c521e9c83..39f08a2be9 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,25 @@ Installation How to use ---- -After adding a machine, go to "Manage Printers...", make sure your printer is active and select "Machine Settings" \ No newline at end of file +After adding a machine, go to "Manage Printers...", make sure your printer is active and select "Machine Settings" + +Pro-tip: if you add a generic profile to the machine definitions and add ["MachineSettingsAction"] as a first_start_action, you get a nice solution to the "my printer is not listed" problem. + +*resource/definitions/generic_fdm.def.json* +``` +{ + "version": 2, + "name": "Generic FDM printer", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Generic", + "category": "Generic", + "file_formats": "text/x-gcode", + "has_materials": true, + "preferred_material": "*pla*", + "first_start_actions": ["MachineSettingsAction"] + } +} +``` From c7df0863872a3a5d70de6d6b6621a125be91c996 Mon Sep 17 00:00:00 2001 From: Aldo Hoeben Date: Thu, 14 Jul 2016 10:34:29 +0200 Subject: [PATCH 2/2] Update README.md Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 39f08a2be9..3150c598f6 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ After adding a machine, go to "Manage Printers...", make sure your printer is ac Pro-tip: if you add a generic profile to the machine definitions and add ["MachineSettingsAction"] as a first_start_action, you get a nice solution to the "my printer is not listed" problem. -*resource/definitions/generic_fdm.def.json* +*resources/definitions/generic_fdm.def.json* ``` { "version": 2,