This document contains notes for a Dallas Makerspace class about multi-color printing using the PolyPrinters.

Size: px
Start display at page:

Download "This document contains notes for a Dallas Makerspace class about multi-color printing using the PolyPrinters."

Transcription

1 Class Notes This document contains notes for a Dallas Makerspace class about multi-color printing using the PolyPrinters. Caution Like most 3D printers, the PolyPrinters perform limiting range checking. Which means that a printer can be damaged by sending bad G-code. If you have questions about customizing G-code then ask. If you have doubts then ask. If you have concerns then ask. There are people here who not only can help but are conversant in G-code. Modeling I m going to make a small name tag about the size of a business card (90 mm by 50 mm). A 2 mm thick base works well. I will use Arial Rounded MT font because it prints well. 18 mm high lettering works well for Brian and 9 mm high lettering works well for a phone number. A thickness of 0.5 mm works well for lettering. Color printing works best when each color is an independent solid. For the small name tag I ll make the base one solid and the lettering at least one separate solid; there will end up being one solid for each letter. Note: To create independent solids in SolidWorks ensure merge result is not checked when extruding. This pyramid is also a good example. It has been sliced into seven pieces. KISSlicer treats each slice as an independent solid building a bottom, walls, fill, and a top for each. Saving STL Files Saving each body as a separate file avoids a problem. Either SolidWorks incorrectly writes the individual solids when they are combined into one file or KISSlicer incorrectly interprets the individual solids when reading a combined file. Slicing Loading the complete model into KISSlicer is easy: just select all the files when opening. When loading multiple solids KISSlicer places them at the correct relative height. In my original model the text is resting on the top of the base rectangle so that is where KISSlicer places it. Once the combined solids are loaded just slice as you normally do. G-code Crash Course G-code is text. Each line is either a command, a comment, or a blank line. Blank lines are ignored. Comments are marked by a semicolon. Everything after a semicolon is ignored.

2 ; The following blank line is ignored. ; As are the comments before and after the blank line. G0 Z30 ; Everything after the semicolon is ignored on this line. A command starts with a single English alphabet letter (like G ) followed by a one to three digit number. Some commands have parameters. If a command has parameters they follow the command on the same line and are separated from the command by space. The commands of interest for this project are G-code G0 G1 G28 G90 G91 G92 M0 M104 M109 M117 Description Rapid Move Linear Move Move to Origin (Home) Switch to Absolute Positioning Switch to Relative Positioning Set Position Stop or Unconditional Stop / Program Pause Set Extruder Temperature Set Extruder Temperature and Wait Display Message Pause Overview The goal is to get the printer to gracefully pause so the filament can be easily changed. There is a G-code command that, at first blush, appears to be exactly what we want: M0 - Program Pause. The biggest problem is that M0 never makes it to the printer. OctoPrint traps it and interprets it to mean stop sending G-code. This works to our advantage but it also means we have to do more than just insert an M0. G-code Structure from KISSlicer KISSlicer outputs G-code in sections 1. Title block. This section is composed entirely of comments. Details include the KISSlicer version, the operating system, and some other mostly irrelevant trivia. 2. Printer settings. This section is composed entirely of comments. Details include a complete dump of all the KISSlicer settings. This section is useful for troubleshooting a failed print or reproducing a successful print. KISSlicer can import settings from a KISSlicer produced G-code file. 3. Printer initialization. This section prepares the printer for a new print. Steps include reseting the printer, ensuring the speed is 100%, and warming the bed and extruder. 4. Layer generation. This section consists of the steps to print each layer. Each layer is marked at the beginning by a comment like this ; BEGIN_LAYER_OBJECT z=0.250 z_thickness=0.250

3 Each layer is marked at the end by a comment like this ; END_LAYER_OBJECT z= Printer finalization. This section contains G-code to gracefully shutdown the printer including cooling the extruder and bed, turning the fan off, moving the bed all the way out, and disabling the motors. 6. Estimates. The last section is composed entirely of comments. This section has KISSlicer s estimates for time and material. Graceful Pause The steps performed by the pause code are 1. Turn off the extruder heater so filament will not ooze out while waiting for the human to change the filament. 2. Move the head to a convenient location away from the part (0, 0, 30). 3. Back the filament out of the extruder to make changing filament a little easier. 4. Pause. This step is performed by OctoPrint. It simply stops sending G-code until the resume button is clicked. 5. When printing is resumed, the extruder is heated to 260 C. 6. When the extruder reaches the target temperature 75 mm of filament are extruded to purge the previous color. 7. The extruder is cooled to 180 C without waiting. 8. A second pause. 9. When printing is resumed, a standard PolyPrinter wipe is performed. 10. The head is moved to a height just above the part. 11. Printing continues. Merging Process Armed with G-code to create the part and G-code to pause the printer the next step is to merge the two. 1. Load the KISSlicer created G-code in your favourite text editor. I prefer Notepad2. 2. Find the end of the layer where a filament change is needed. For example, the Business Card Name Tag base is 2 mm thick so a filament change is needed after the 2 mm layer is done / before the next layer starts. 3. Search the file for a END_LAYER_OBJECT comment with the target z value. For the Business Card Name Tag this is the line of interest

4 ; END_LAYER_OBJECT z= Open the Pause for filament change.gcode file in your favourite text editor. 5. Select the entire contents of the Pause for filament change.gcode file then copy. 6. Paste the entire contents of the Pause for filament change.gcode file into the KISSlicer created G-code file after the END_LAYER_OBJECT comment. 7. Towards the bottom of the G-code that was pasted is a line like this G0 Z2.50 ; <--- Change the value after "Z" to a bit more than the next layer height. ---< The Z value needs to be changed to be slightly more than the current layer height. For example, the value for the Business Card Name Tag needs to be greater than 2 (mm) because the part at this point is 2 mm high is a good choice. That G-code command moves the nozzle to the height (in millimeters) specified after Z. This command ensures the nozzle is above the part when the head moves back over the part to resume printing. 8. Save the KISSlicer created G-code file. Printing Printing starts the same way it always does. When the graceful pause runs 1. The extruder is cooled, the head is moved to the origin at a height of 30 mm the filament is backed out of the extruder, and OctoPrint suspends printing. 2. At this point it is safe to change the filament. 3. After changing the filament click Resume in OctoPrint. 4. The extruder is heated to 260 C, 75 mm of filament is extruded to flush out the previous color, the extruder temperature is set to 180 C to avoid oozing, and OctoPrint suspends printing. 5. At this point the mess below the head should be removed including the three small blobs sitting on the bed from the previous wipe. 6. After cleaning the mess click Resume in OctoPrint. 7. A standard PolyPrinter wipe is performed then printing continues. Fonts that Work Well The following fonts work well with the PolyPrinters Arial Rounded MT, Bold, 19.00mm (74pt) Arial Rounded MT, Bold, 9.00mm (35pt) Forte, Regular, 25.00mm (105pt)

5 Forte, Regular, 10.00mm (42pt)

Daan Speth, October Slic3r settings

Daan Speth, October Slic3r settings Slic3r settings Daan Speth, October 2016 Slic3r is slicing software that can turn a 3D model saved as STL file into a gcode file, containing instructions for the 3D printer. After starting slic3r a startup

More information

TL4100 Top 5 Build Tips

TL4100 Top 5 Build Tips TL4100 Top 5 Build Tips 1: Top Plate When assembling the top plate, align the top of the top plate brackets with the top of the rods. This can be done by placing a hard flat object (such as a ruler) on

More information

ideamaker Manual

ideamaker Manual ideamaker Manual Using ideamaker... 2 1 Basic information... 2 1.1 What is ideamaker?... 2 1.2 Where to download ideamaker?... 2 2 Install ideamaker... 3 3 Let s Print!... 6 4 How to use ideamaker?...

More information

TAZ Lulzbot 3D Printer Standard Operating Procedure [Updated December 21, 2016]

TAZ Lulzbot 3D Printer Standard Operating Procedure [Updated December 21, 2016] TAZ 3 Lulzbot 3D Printer Location of Machine: Composites Lab, RFM 1218 Location of SOP and Machine Operating & Safety Manual: Composites Lab website under resources; Composites Lab TRACS site; and Hardcopy

More information

For rapid-prototyping and production of low volume, low cost plastic objects.

For rapid-prototyping and production of low volume, low cost plastic objects. 3D Printer Standard Operating Procedure Jonathan M. Cabot 10 January 2016 For rapid-prototyping and production of low volume, low cost plastic objects. 1.0 Material Requirements 1.1 Equipment needed for

More information

Slicer"CURA" User Instructions for Olivetti S2 3D Printer

SlicerCURA User Instructions for Olivetti S2 3D Printer Slicer"CURA" User Instructions for Olivetti S2 3D Printer 1 Cura Install - 1 Click Next 2 Cura Install - 2 Check all components. Then click Install 3 Cura Install - 3 Click Next 4 Cura Install - 4 The

More information

Quick Start Guide. Simplify3D. Zeemanlaan MV IJsselstein The Netherlands

Quick Start Guide. Simplify3D.   Zeemanlaan MV IJsselstein The Netherlands Quick Start Guide Simplify3D www.felixprinters.com/support support@felixprinters.com Zeemanlaan 15 3401 MV IJsselstein The Netherlands 1 Introduction Introduction Simplify3D is software to control your

More information

Assembly Guide for Printrbot - Simple Maker s Edition 1405

Assembly Guide for Printrbot - Simple Maker s Edition 1405 Assembly Guide for Printrbot - Simple Maker s Edition 1405 Last update: March 2016 Please Note: be careful on the steps that are underlined 1 Contents Tools Needed:... 3 First step: Check components and

More information

Table of Contents CONTENTS

Table of Contents CONTENTS Table of Contents CONTENTS Introduction... 2 Contact TKI... 2 Printer Features & Definitions... 3 Software Parameter Setup... 8 Setting Up A Printer Profile in Cura... 8 Printing Settings... 13 Printing

More information

Lulzbot Taz Workflow Computation + Construction Lab Iowa State University

Lulzbot Taz Workflow Computation + Construction Lab Iowa State University Lulzbot Taz Workflow Computation + Construction Lab Iowa State University 3D Printing on the Lulzbot Taz - Guidelines - The following steps that will guide the user on how to 3D print using the Lulzbot

More information

Ultimaker 2+ / 3. Guide for. General Information. Self-service 3d printing at the AOC. Ultimaker 2+ UItimaker 3

Ultimaker 2+ / 3. Guide for. General Information. Self-service 3d printing at the AOC. Ultimaker 2+ UItimaker 3 Guide for Ultimaker 2+ / 3 Self-service 3d printing at the AOC General Information Location:, 1232 Sullivan (see page 9 for full list of Ultimakers on campus) Access: You can walk-in or reserve the Ultimakers

More information

1.3 Using Your BoXZY

1.3 Using Your BoXZY 1.3 Using Your BoXZY This manual will explain how to use your BoXZY Written By: BoXZY 2017 boxzy.dozuki.com Page 1 of 14 INTRODUCTION By beginning this manual we assume you have read and understood the

More information

3D Printable Dubrovnik Style Chess Set

3D Printable Dubrovnik Style Chess Set 3D Printable Dubrovnik Style Chess Set Table of Contents Print Settings...1 PLA...1 Woodfil PLA...2 Supports...4 Print Settings These print settings were used to print the pieces seen in the photographs

More information

User Manual for Mini 3D Printer

User Manual for Mini 3D Printer User Manual for Mini 3D Printer Copyright@iNSTONE 3D Content Content... 1 Technical Parameters...2 Packing List... 3 Installation... 4 Instructions...5 I.Printing... 5 II. Taking down the finished printing

More information

CURA WANHAO EDITION USER MANUEL

CURA WANHAO EDITION USER MANUEL CURA WANHAO EDITION USER MANUEL 1.1 Cura Overview We recommend that new users start with Cura as it includes a slicing engine. Host software we recommend to use Repitator. There is separate introduction

More information

USER MANUAL TABLE OF CONTENT

USER MANUAL TABLE OF CONTENT USER MANUAL TABLE OF CONTENT A Precautions 2 B Check List 3 C Component Diagram 4 D LCD control Menu and its Function 5 E Technical Specifications 6 F Hardware Installation on Printer 7 G Software installation

More information

CURA WANHAO EDITION USER MANUEL

CURA WANHAO EDITION USER MANUEL CURA WANHAO EDITION USER MANUEL 1.1 Cura Overview We recommend that new users start with Cura as it includes a slicing engine. Host software we recommend to use Repitator. There is separate introduction

More information

Content. 1. Unpacking Component Description Hardware Installation Software Application...5. (1) Software Installation.

Content. 1. Unpacking Component Description Hardware Installation Software Application...5. (1) Software Installation. WWW.BIQU.EQUIPMENT Content 1. Unpacking 1 2. Component Description.2 3. Hardware Installation...3 4. Software Application...5 (1) Software Installation.5 (2) Slicing Operation...7 Appendix...... 8 5. Automatic

More information

SOFTWARE SETUP Pronterface...2 Cura PREPARING FOR FIRST PRINT Bed calibration...4 Load/unload the filament...6

SOFTWARE SETUP Pronterface...2 Cura PREPARING FOR FIRST PRINT Bed calibration...4 Load/unload the filament...6 USER MANUAL TABLE OF CONTENTS SOFTWARE SETUP Pronterface...2 Cura 15.04...3 PREPARING FOR FIRST PRINT Bed calibration...4 Load/unload the filament...6 FIRST PRINT Add hellobeeprusa as a new machine on

More information

PrintrBot NinjaFlex Extruder Upgrade

PrintrBot NinjaFlex Extruder Upgrade PrintrBot NinjaFlex Extruder Upgrade Created by Ruiz Brothers Last updated on 2015-11-08 06:00:17 PM EST Guide Contents Guide Contents Overview Get the Gear Head Extruder 3D Printing 3D Printing with NinjaFlex

More information

3D Printing Instructions MANTIS CHENG

3D Printing Instructions MANTIS CHENG 3D Printing Instructions MANTIS CHENG CHAPTER 1 How to Print on Thing-O-Matic Our Makerbot Thing-O-Matic (TOM) 3D printer is now several years old. It is not running the latest firmware. It doesn t work

More information

Witbox 2. Quick start guide

Witbox 2. Quick start guide Witbox 2 Quick start guide Welcome. Thank you for choosing us. This manual will help you to use your new 3D printer correctly. Welcome to the world of Witbox 2. How do I use this manual? To make sure that

More information

Ladybird Project - Vacuum Mould

Ladybird Project - Vacuum Mould - Vacuum Mould Prerequisite Mould drawn and saved as an STL file in SolidWorks Focus of the Lesson On completion of this exercise you will have: Opened an STL file Set Machining Constraints Set up Tools

More information

Automatic Tool Changer (ATC) for the prolight A Supplement to the prolight 1000 User s Guide

Automatic Tool Changer (ATC) for the prolight A Supplement to the prolight 1000 User s Guide Automatic Tool Changer (ATC) for the prolight 1000 A Supplement to the prolight 1000 User s Guide 1 1995 Light Machines Corporation All rights reserved. The information contained in this supplement (34-7221-0000)

More information

User Manual Creatr HS

User Manual Creatr HS 1 Leapfrog BV Dear customer, Congratulations with the purchase of your very own Leapfrog Creatr HS! We would like to help you get started so you can make your first 3D print on the Creatr HS and many more.

More information

PHYSICS 220 LAB #1: ONE-DIMENSIONAL MOTION

PHYSICS 220 LAB #1: ONE-DIMENSIONAL MOTION /53 pts Name: Partners: PHYSICS 22 LAB #1: ONE-DIMENSIONAL MOTION OBJECTIVES 1. To learn about three complementary ways to describe motion in one dimension words, graphs, and vector diagrams. 2. To acquire

More information

CAD tutorial for the drinking straw support

CAD tutorial for the drinking straw support CAD tutorial for the drinking straw support Having tried a number of different designs, this one worked best on the greatest variety of glasses straight sided glass, angled glass and even a champagne flute.

More information

First start of software: Set to millimeter, gram, second

First start of software: Set to millimeter, gram, second First start of software: Set to millimeter, gram, second The default menu visible after opening a new part is Command Manager Get rid of that. Right-click top bar, un-check Then, check these menus: - sketch

More information

Titan Aero Assembly. Titan Aero Assembly. Learn to assemble your Titan Aero. Written By: Gabe S e3d-online.dozuki.

Titan Aero Assembly. Titan Aero Assembly. Learn to assemble your Titan Aero. Written By: Gabe S e3d-online.dozuki. Titan Aero Assembly Learn to assemble your Titan Aero Written By: Gabe S. 2018 e3d-online.dozuki.com/ Page 1 of 26 INTRODUCTION The Titan Aero is a very similar build to a Titan and a V6 put together (which

More information

Content. Before You Start. Assemble the 3D Printer. Use the 3D Printer. Load Filament Level the Heated Bed Start Printing Support

Content. Before You Start. Assemble the 3D Printer. Use the 3D Printer. Load Filament Level the Heated Bed Start Printing Support Quick Start Guide Content A Before You Start B Assemble the 3D Printer C Use the 3D Printer Load Filament Level the Heated Bed Start Printing Support 2 Before You Start Get the Screwdriver Ready The screwdriver

More information

F400 QUICK-START GUIDE

F400 QUICK-START GUIDE F400 QUICK-START GUIDE PLEASE READ THIS DOCUMENT BEFORE OPERATING YOUR PRINTER Revision 10-1/31/18 Page 1 Table of Contents 1. Introduction... 3 2. What s in the Box... 3 3. Unboxing Your F400... 4 4.

More information

3D Printing with Ultimaker2, User Guide

3D Printing with Ultimaker2, User Guide February 25, 2015 3D Printing with Ultimaker2, User Guide University of Victoria, (BDSL) Biomedical Systems Design Laboratory 1 Cleaning and Leveling the Build- Plate Step 1: Use screwdriver to remove

More information

Introduction to 3D Printing. Activity 1: Design a keychain using computer-aided design software

Introduction to 3D Printing. Activity 1: Design a keychain using computer-aided design software Introduction to 3D Printing Activity 1: Design a keychain using computer-aided design software 1 In this activity we ll design a keychain name tag and learn the fundamentals of computer-aided design, the

More information

KM-4800w. Copy/Scan Operation Manual

KM-4800w. Copy/Scan Operation Manual KM-4800w Copy/Scan Operation Manual NOTE: This Operation Manual contains information that corresponds to using both the metric and inch versions of these machines. The metric versions of these machines

More information

RPS-9000 Programming Software for the TYT TH-9000

RPS-9000 Programming Software for the TYT TH-9000 for the TYT TH-9000 Memory Types Memories Limit Memories VFO Channels Receive Frequency Transmit Frequency Offset Frequency Offset Direction Channel Spacing Name Tone Mode CTCSS Rx CTCSS DCS Rx DCS Memory

More information

ATP-5189 Programming Software for the Anytone AT-5189

ATP-5189 Programming Software for the Anytone AT-5189 for the Anytone AT-5189 Memory Types Memories Limit Memories VFO Receive Frequency Transmit Frequency Offset Frequency Offset Direction Channel Spacing Name Tone Mode CTCSS Rx CTCSS DCS Memory Channel

More information

User Manual Solenoid Controller BI-SC1001

User Manual Solenoid Controller BI-SC1001 User Manual Solenoid Controller BI-SC1001 NOTICE Brandstrom Instruments, 2017 85 Ethan Allen Highway Ridgefield, CT 06877 (203) 544-9341 www.brandstrominstruments.com No part of this document may be photocopied,

More information

Intro to 3D Printing. Anatomy of the Printer. Intro to 3D Printing & Certification imagine create learn grow

Intro to 3D Printing. Anatomy of the Printer. Intro to 3D Printing & Certification imagine create learn grow Intro to 3D Printing 3D printing is a process of additive manufacture, this is where layers upon layers of material are built up to create a three dimensional object from a digital design. The 3D printer

More information

ATP-588 Programming Software for the Anytone AT-588

ATP-588 Programming Software for the Anytone AT-588 for the Anytone AT-588 Memory Channel Functions Memory Types Memories Limit Memories VFO Receive Frequency Transmit Frequency Offset Frequency Offset Direction Channel Spacing Name Tone Mode CTCSS Rx CTCSS

More information

SolidWorks Navigation

SolidWorks Navigation SolidWorks Basics SolidWorks Navigation Command Bar Feature Tree Model Window Simple Box Select the Front plane Create a new sketch Create a Center Rectangle from the origin Smart Dimension the length

More information

g. Click once on the left vertical line of the rectangle.

g. Click once on the left vertical line of the rectangle. This drawing will require you to a model of a truck as a Solidworks Part. Please be sure to read the directions carefully before constructing the truck in Solidworks. Before submitting you will be required

More information

AT-5888UV Programming Software for the AnyTone AT-5888UV

AT-5888UV Programming Software for the AnyTone AT-5888UV AT-5888UV Programming Software for the AnyTone AT-5888UV Memory Channel Functions Memory Types Memories Limit Memories Hyper Memory 1 Hyper Memory 2 Receive Frequency Transmit Frequency Offset Frequency

More information

Slicer"CURA" User Instructions for Olivetti 3D DESK

SlicerCURA User Instructions for Olivetti 3D DESK Slicer"CURA" User Instructions for Olivetti 3D DESK 1 Cura Install - 1 Click Next 2 Cura Install - 2 Check all components. Then click Install 3 Cura Install - 3 Click Next 4 Cura Install - 4 The Wizard

More information

Dremel 3D Printer Digital Fabrication Lab College of Design, Iowa State University

Dremel 3D Printer Digital Fabrication Lab College of Design, Iowa State University Dremel 3D Printer Digital Fabrication Lab College of Design, Iowa State University 3D Printing - The following steps will guide the user on how to transfer digital work from a design software to setting

More information

Step 1: Open A Photo To Place Inside Your Text

Step 1: Open A Photo To Place Inside Your Text Place A Photo Or Image In Text In Photoshop In this Photoshop tutorial, we re going to learn how to place a photo or image inside text, a very popular thing to do in Photoshop, and also a very easy thing

More information

Notes on printing Addison Library students things

Notes on printing Addison Library students things Notes on printing Addison Library students things 5/9/14 jw Printing the objects we didn t have time to print at the Library was an interesting task, and I learned a lot while doing it. I was also able

More information

AM8 Printer A metal frame for your Anet A8 By Pheneeny v1.0 April 20, 2017

AM8 Printer A metal frame for your Anet A8 By Pheneeny v1.0 April 20, 2017 AM8 Printer A metal frame for your Anet A8 By Pheneeny v1.0 April 20, 2017 Please read this entire document before printing parts or building this frame Disclaimer: This guide is for informational purposes

More information

GCC LaserPro Laser-cutter

GCC LaserPro Laser-cutter 2/9/17 p. 1/10 Overview Reads Adobe Illustrator files Can cut: along a vector path (for lines, contours, etc) in a raster pattern (for filled areas) Can cut a variety of materials Examples: mat board,

More information

Tinker Tuesday Project - Drinking Glasses

Tinker Tuesday Project - Drinking Glasses Tinker Tuesday Project - Drinking Glasses 1. Open CorelDRAW and create a new document. Near the top left corner of the screen, click File, and then click Import on the resulting menu. Select an image from

More information

Programming Exam. 10% of course grade

Programming Exam. 10% of course grade 10% of course grade War Overview For this exam, you will create the card game war. This game is very simple, but we will create a slightly modified version of the game to hopefully make your life a little

More information

3D Cutting Simulator Mach4 Hobby Plugin

3D Cutting Simulator Mach4 Hobby Plugin 3D Cutting Simulator Mach4 Hobby Plugin This Plugin was created by ModuleWorks for Mach4 Hobby. The Plugin adds a new display to Mach4 that allows the virtual cutting of parts. Inputs such as the tool

More information

F410 QUICK-START GUIDE

F410 QUICK-START GUIDE F410 QUICK-START GUIDE PLEASE READ THIS DOCUMENT BEFORE OPERATING YOUR PRINTER Revision 3-5/4/18 Page 1 1. Table of Contents 1. Table of Contents... 2 1. Introduction & Getting Support... 3 2. What s in

More information

14. Using your own images

14. Using your own images 14. Using your own images Working with uploaded photos Uploading photos in Cricut Design Space is easy, and there are a variety of options when working with uploaded photos. There are two different ways

More information

The Revolve Feature and Assembly Modeling

The Revolve Feature and Assembly Modeling The Revolve Feature and Assembly Modeling PTC Clock Page 52 PTC Contents Introduction... 54 The Revolve Feature... 55 Creating a revolved feature...57 Creating face details... 58 Using Text... 61 Assembling

More information

QUICK-START FOR UNIVERSAL VLS 4.6 LASER! FRESH 21 SEPTEMBER 2017

QUICK-START FOR UNIVERSAL VLS 4.6 LASER! FRESH 21 SEPTEMBER 2017 QUICK-START FOR UNIVERSAL VLS 4.6 LASER! FRESH 21 SEPTEMBER 2017 The laser is quite safe to use, but it is powerful; using it requires your full caution, attention and respect. Some rules of the road:

More information

MakerBot Replicator+ 3D Printer

MakerBot Replicator+ 3D Printer MakerBot Replicator+ 3D Printer Quick Start Guide *Safety Warning* During the course of normal operation of the Replicator+ a couple potentials for injury will arise. The extruder (or print nozzle) will

More information

Instructions for using the CRR10: Creality 3D - Our Trustworthy 3D printer

Instructions for using the CRR10: Creality 3D - Our Trustworthy 3D printer Instructions for using the CRR10: Creality 3D - Our Trustworthy 3D printer FABLAB BRIGHTON 2018 Installing Curamaker software The first step is to download the software for this machine. The one we ve

More information

Getting Started Guide

Getting Started Guide SOLIDWORKS Getting Started Guide SOLIDWORKS Electrical FIRST Robotics Edition Alexander Ouellet 1/2/2015 Table of Contents INTRODUCTION... 1 What is SOLIDWORKS Electrical?... Error! Bookmark not defined.

More information

MoonRay D/S Quick Start Guide

MoonRay D/S Quick Start Guide MoonRay D/S Quick Start Guide Hello! Thank you for choosing MoonRay, and welcome to the cutting edge of desktop 3D printing! This guide is going to go over the basics of getting your MoonRay up and running.

More information

TROUBLE-SHOOTING: Error States

TROUBLE-SHOOTING: Error States TROUBLE-SHOOTING: Error States Please note, there is much commonality between the different models of LabelStation and therefore it is advisable to read the comments on other models if you cannot find

More information

Switching FDM Material Color

Switching FDM Material Color FDM BEST PRACTICE Switching FDM Material Color SOFTWARE / PRODUCT / FINISHING Overview: FDM materials including ABS-M30, ABSi, ABSplus and ASA are available in multiple colors. These colors offer the capability

More information

UPLIFT 3-Leg Desk Instructions for. Solid Wood Desktops. pictured: 3-leg desk; solid-wood top, with right hand return TABLE OF CONTENTS

UPLIFT 3-Leg Desk Instructions for. Solid Wood Desktops. pictured: 3-leg desk; solid-wood top, with right hand return TABLE OF CONTENTS UPLIFT 3-Leg Desk Instructions for Solid Wood Desktops pictured: 3-leg desk; solid-wood top, with right hand return TABLE OF CONTENTS PAGE 1 Safety and Warnings 2 2 Usage 2 3 Parts List 3 4 Assembly Instructions

More information

How to Start a Blog & Use It To Squash Writer s Block

How to Start a Blog & Use It To Squash Writer s Block How to Start a Blog & Use It To Squash Writer s Block by Robert Lee Brewer In these days of publishing and media change, writers have to build platforms and learn how to connect to audiences if they want

More information

Robotic Manipulation Lab 1: Getting Acquainted with the Denso Robot Arms Fall 2010

Robotic Manipulation Lab 1: Getting Acquainted with the Denso Robot Arms Fall 2010 15-384 Robotic Manipulation Lab 1: Getting Acquainted with the Denso Robot Arms Fall 2010 due September 23 2010 1 Introduction This lab will introduce you to the Denso robot. You must write up answers

More information

RDworks and Basic Rabbit Laser Operation Tutorial

RDworks and Basic Rabbit Laser Operation Tutorial RDworks and Basic Rabbit Laser Operation Tutorial File Setup Layer color is how the Rabbit Software designates different operations so, regardless of design software, you will want to organize geometry

More information

EPSON Stylus Pro Quick Reference Guide

EPSON Stylus Pro Quick Reference Guide EPSON Stylus Pro 10000 Quick Reference Guide Loading Roll Paper First you attach the paper roll to the spindle and place the spindle in the printer. Then you load the paper for printing. 4 Slide the movable

More information

PUZZLE EFFECTS 3D User guide PUZZLE EFFECTS 3D. Photoshop actions. For PS CC and CS6 Extended. User Guide

PUZZLE EFFECTS 3D User guide PUZZLE EFFECTS 3D. Photoshop actions. For PS CC and CS6 Extended. User Guide PUZZLE EFFECTS 3D Photoshop actions For PS CC and CS6 Extended User Guide CONTENTS 1. THE BASICS... 1 1.1. About the actions... 1 1.2. How the actions are organized... 1 1.3. The Classic effects (examples)...

More information

More Actions: A Galaxy of Possibilities

More Actions: A Galaxy of Possibilities CHAPTER 3 More Actions: A Galaxy of Possibilities We hope you enjoyed making Evil Clutches and that it gave you a sense of how easy Game Maker is to use. However, you can achieve so much with a bit more

More information

If Print Results Are Not Satisfactory

If Print Results Are Not Satisfactory Names of Components Printing on Fabric If Errors Occur If Print Results Are Not Satisfactory Machine Maintenance Replacing Consumables 1 2 3 4 5 6 CONTENTS Notice P.3 Names of Components Whole View P.4

More information

12. Creating a Product Mockup in Perspective

12. Creating a Product Mockup in Perspective 12. Creating a Product Mockup in Perspective Lesson overview In this lesson, you ll learn how to do the following: Understand perspective drawing. Use grid presets. Adjust the perspective grid. Draw and

More information

MEMBRANE ENGRAVING - VISION.NET BUTTON STATION. Important Notes! How To Order. PDF Form Instructions CUSTOM ENGRAVING FORM

MEMBRANE ENGRAVING - VISION.NET BUTTON STATION. Important Notes! How To Order. PDF Form Instructions CUSTOM ENGRAVING FORM VISION.NET STATION MEMBRANE ENGRAVING - VISION.NET STATION Membrane for use with Vision Net pre-populated Standard and Custom Station Part Numbers: 0, 0, 09,,,, 98,,, 8. Important Notes!. Due to printer

More information

How to 3D Print molds for custom

How to 3D Print molds for custom How to 3D Print molds for custom Stamps @ustreasury Created by phillip torrone Last updated on 2017-10-04 01:23:10 AM UTC Guide Contents Guide Contents Overview Parts Two part mold putty Ultimaker 2+ 3D

More information

New Features of PR-650 Version 2

New Features of PR-650 Version 2 New Features of PR-650 Version 2 EN The following new features have been added with version 2. Before using the machine, carefully read both this manual and the Operation Manual included with your PR-650

More information

Standard Operating Manual

Standard Operating Manual Standard Operating Manual Buehler EcoMet TM 300 Polisher Version 1.0 Page 1 of 19 Contents 1. Picture and Location 2. Process Capabilities 2.1 Cleanliness Standard 2.2 Possible Polishing Materials 2.3

More information

Lesson 3: The 40-Minute Running Start

Lesson 3: The 40-Minute Running Start 3 Goals of This Lesson Students will be able to create and modify the following part: Before Beginning This Lesson Complete the previous lesson Basic Functionality. Resources for This Lesson This lesson

More information

Hall Effect User Manual v1.0

Hall Effect User Manual v1.0 Ecopia HMS-5300 (80 350K) Hall Effect User Manual v1.0 Woodall Research Group, Ghausi 1123 Kyle Montgomery, PhD kmontgomery.net 7/2/2013 Table of Contents Specs... 2 Mfg Point of Contact... 2 Sample Loading...

More information

FLAMING HOT FIRE TEXT

FLAMING HOT FIRE TEXT FLAMING HOT FIRE TEXT In this Photoshop text effects tutorial, we re going to learn how to create a fire text effect, engulfing our letters in burning hot flames. We ll be using Photoshop s powerful Liquify

More information

ADMS-847 Programming Software for the Yaesu FT-847

ADMS-847 Programming Software for the Yaesu FT-847 for the Yaesu FT-847 Memory Types Memories Limit Memories VFO A VFO B Home Satellite Memories One Touch Memory Channel Functions Transmit Frequency Offset Frequency Offset Direction CTCSS DCS Skip The

More information

PUZZLE EFFECTS 3D User guide JIGSAW PUZZLES 3D. Photoshop CC actions. User Guide

PUZZLE EFFECTS 3D User guide JIGSAW PUZZLES 3D. Photoshop CC actions. User Guide JIGSAW PUZZLES 3D Photoshop CC actions User Guide CONTENTS 1. THE BASICS...1 1.1. About the actions... 1 1.2. How the actions are organized... 1 1.3. The Classic effects (examples)... 3 1.4. The Special

More information

In Photoshop you can change the size of an image by going to:

In Photoshop you can change the size of an image by going to: Change an images size In Photoshop you can change the size of an image by going to: Image Image Size and change the dimensions of the pictures in pixels. Once you adjust the top number the bottom number

More information

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX.

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX. Review the following material on sensors. Discuss how you might use each of these sensors. When you have completed reading through this material, build a robot of your choosing that has 2 motors (connected

More information

Tevo Tarantula Auto Level Instructions. By ArcadEd. Mounting the Sensor:

Tevo Tarantula Auto Level Instructions. By ArcadEd. Mounting the Sensor: Tevo Tarantula Auto Level Instructions By ArcadEd Mounting the Sensor: First off, the kit does not seem to come with a screw for mounting the sensor. Maybe it does now, but at the time I got my kits, it

More information

Jarvis standing desk. Assembly instructions. For assembly assistance, visit fully.com/howtojarvis or call or

Jarvis standing desk. Assembly instructions. For assembly assistance, visit fully.com/howtojarvis or call or Jarvis standing desk Assembly instructions For assembly assistance, visit fully.com/howtojarvis or call 888-508-3725 or email support@fully.com Thank you for choosing a Jarvis desk from Fully. Cautions

More information

JoneSoft Generic Mod Enabler v2.6

JoneSoft Generic Mod Enabler v2.6 JoneSoft Generic Mod Enabler v2.6 User Guide 8 August 2010 Contents Introduction... 2 Installation... 3 1. Central installation... 3 2. Separate installation... 4 Installing over an existing installation...

More information

1. Assemble in your groups. 2. Using SolidWorks create a spinning coin, suited for FDM UprintPlus/ Robo 3D R1. Import the Coin_Pattern.

1. Assemble in your groups. 2. Using SolidWorks create a spinning coin, suited for FDM UprintPlus/ Robo 3D R1. Import the Coin_Pattern. MEEN 3349 Fundamentals of Manufacturing Lab 3D Printing Lab (2 week lab) 1. Assemble in your groups. 2. Using SolidWorks create a spinning coin, suited for FDM UprintPlus/ Robo 3D R1. Import the Coin_Pattern.igs

More information

Embossed Embroidery with Creative DRAWings

Embossed Embroidery with Creative DRAWings Embossed Embroidery with Creative DRAWings Create and stitch flawless embossed embroidery using Creative DRAWings. This technique is perfect for stitching on fleece or towels. Monogram hand towels to give

More information

Copyright 2015, Rob Swanson Training Systems, All Rights Reserved.

Copyright 2015, Rob Swanson Training Systems, All Rights Reserved. DISCLAIMER This publication is indented to provide accurate and authoritative information with regard to the subject matter covered. The Handwritten Postcard System is not legal advice and nothing herein

More information

AP Art History Flashcards Program

AP Art History Flashcards Program AP Art History Flashcards Program 1 AP Art History Flashcards Tutorial... 3 Getting to know the toolbar:... 4 Getting to know your editing toolbar:... 4 Adding a new card group... 5 What is the difference

More information

Creating a Single Page Flyer in PowerPoint

Creating a Single Page Flyer in PowerPoint Creating a Single Page Flyer in PowerPoint Digital Media Commons Fondren Basement B42 (713) 348-3635 dmc-info@rice.edu 1 Creating a Single Page Flyer in PowerPoint Jane Zhao janezhao@rice.edu Director,

More information

iphoto Getting Started Get to know iphoto and learn how to import and organize your photos, and create a photo slideshow and book.

iphoto Getting Started Get to know iphoto and learn how to import and organize your photos, and create a photo slideshow and book. iphoto Getting Started Get to know iphoto and learn how to import and organize your photos, and create a photo slideshow and book. 1 Contents Chapter 1 3 Welcome to iphoto 3 What You ll Learn 4 Before

More information

Hephestos 2 Levelling Guide

Hephestos 2 Levelling Guide Hephestos 2 Levelling Guide Version: V0.0.0 Author(s): BQ May 18 th 2018 Revised by: Approved by: Jon Goitia Effect date: 18/05/2018 Project: Hephestos 2 Changelog Version Date Changes Author V0.0.0 May

More information

ID station Photomatic

ID station Photomatic Version 7.3 Last change : August 2016 Page 1 Introduction This is the of, the most reliable and fastest biometric passport photo system. This user guide helps you in everyday use. Please check www.idstation.eu

More information

BIGBOT ASSEMBLY INSTRUCTIONS. 1/18/2017 V0.5

BIGBOT ASSEMBLY INSTRUCTIONS.  1/18/2017 V0.5 BIGBOT ASSEMBLY INSTRUCTIONS www.bigbot-3d.com 1/18/2017 V0.5 FOREWORD: PLEASE TAKE CARE WHEN HANDLING THE GANTRY. THE ASSEMBLY SHOULD BE HANDLED ONLY BY THE ALUMINUM FRAME, AND AVOID TOUCHING OR LIFTING

More information

WCS-D5100 Programming Software for the Icom ID-5100 Data

WCS-D5100 Programming Software for the Icom ID-5100 Data WCS-D5100 Programming Software for the Icom ID-5100 Data Memory Types (left to right) Memories Limit Memories DR Memories Call Channels GPS Memories Receive Frequency Transmit Frequency Offset Frequency

More information

Label Studio Quick Start Guide

Label Studio Quick Start Guide Label Studio Quick Start Guide Overview The goal of the LabelStudio program is to help you layout and manage bulk jobs containing a mix of different logos, that all require a specified quanity. LabelStudio

More information

Tinker Tuesday Project - Stainless Steel Tumblers

Tinker Tuesday Project - Stainless Steel Tumblers Tinker Tuesday Project - Stainless Steel Tumblers 1. Open CorelDRAW and create a new document. Near the top left corner of the screen, click File, and then click Import on the resulting menu. Select an

More information

Cube in a cube Fusion 360 tutorial

Cube in a cube Fusion 360 tutorial Cube in a cube Fusion 360 tutorial n Before using these instructions, it is helpful to watch this video screencast of the CAD drawing actually being done in the software. Click to link to the video tutorial.

More information

Word Memo of Team Selection

Word Memo of Team Selection Word Memo of Team Selection Internet search on potential professional sports leagues men s and women s Open a Memo Template in Word Paragraph 1 why should your city be allowed entry into the league Paragraphs

More information

Standard Operating Manual

Standard Operating Manual Standard Operating Manual NanoFactor NVG-200A Silicon Grinder Version 1.1 Page 1 of 18 Contents 1. Picture and Location 2. Process Capabilities 2.1 Cleanliness Standard 2.2 Possible Grinding Materials

More information

Mill OPERATING MANUAL

Mill OPERATING MANUAL Mill OPERATING MANUAL 2 P a g e 7/1/14 G0107 This manual covers the operation of the Mill Control using Mach 3. Formatting Overview: Menus, options, icons, fields, and text boxes on the screen will be

More information