<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://makernexuswiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=BobG</id>
	<title>makernexuswiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://makernexuswiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=BobG"/>
	<link rel="alternate" type="text/html" href="http://makernexuswiki.com/wiki/Special:Contributions/BobG"/>
	<updated>2026-07-25T21:42:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.0</generator>
	<entry>
		<id>http://makernexuswiki.com/index.php?title=Particle.io&amp;diff=3138</id>
		<title>Particle.io</title>
		<link rel="alternate" type="text/html" href="http://makernexuswiki.com/index.php?title=Particle.io&amp;diff=3138"/>
		<updated>2021-10-22T19:12:21Z</updated>

		<summary type="html">&lt;p&gt;BobG: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Unfortunately their community pages are long, long conversations that are not trimmed up and easy to read. Once you find a gem of information, post it here.&lt;br /&gt;
&lt;br /&gt;
== Particle.io (formerly Spark.io) ==&lt;br /&gt;
&lt;br /&gt;
This is an &amp;quot;Arduino-like&amp;quot; processor. So far it has run all my Arduino code without a problem. We even brought over some other libraries and they worked. This platform easily connects to WiFi and Particle.io runs a cloud based service that makes talking to your core easy. Once the Particle Core is on WiFi then you can compile your code for it using either a web browser or their Particle Dev application on your local computer. In either case your software is compiled in the Particle Cloud and then pushed down to your Particle Core. This is beautiful. There is no need to be anywhere near your Particle Core when you send it new software.&lt;br /&gt;
&lt;br /&gt;
The Particle firmware contains libraries that let you expose a local variable on your core, or a local function. Then these can be called from any web browser. Thus you can interact with your software on your core from anywhere in the world. Lastly, they offer Spark.publish which your software can call to send short messages through the Particle Cloud service (free) to anywhere. Your own server could monitor the Spark Cloud for alerts from your core(s). IFTTT.com offers a channel for Spark. I've had my core publish events to the cloud that IFTTT picks up and turns into SMS messages to my phone. IFTTT could also add events to a Google Docs spreadsheet.&lt;br /&gt;
&lt;br /&gt;
The original Spark Core cost $35 and was configured via an app on a smart phone. In June 2015 they will ship the new Photon which costs $20 and I believe will be configured via its own WiFi hotspot (like the way Chromecast is configured). In October 2015 they will ship the new Electron which will offer cellular data connectivity for $3/month. In October they are also planning to release a solar power kit for the Electron. With all of this you will be able to put an Electron on the top of any local mountain and interact with it forever. Wow.&lt;br /&gt;
&lt;br /&gt;
== Photon ==&lt;br /&gt;
&lt;br /&gt;
=== String concatenation ===&lt;br /&gt;
&lt;br /&gt;
We found a bit of code that would compile and run on the Spark Core, but not on the Photon. Here's the workaround:&lt;br /&gt;
* original code: bufferReadout += Time.timeStr(index);&lt;br /&gt;
* revised code: bufferReadout += Time.timeStr(index).c_str();&lt;br /&gt;
&lt;br /&gt;
== Javascript ==&lt;br /&gt;
I wanted to interact with my Spark Core through the Spark Cloud. I wanted to do it without having an active web server, so I wrote code to do it in Javascript (a nasty language to work with). The page I wrote will allow you to log on to your Spark account, get information from your core, and then send messages back and forth. To use this you only need the Javascript code to run in your browser. The current version of my code will read the Spark Cloud to get a list of variables and methods that your core firmware exports. It also monitors your core for any Publish events it sends. You can run this from my web site, or go there and download all the code so you can modify it and run it anywhere you want. The download includes a simple sample firmware app to run on your core. But the web site also works with the factory installed firmware. [http://shrimpware.com/SIS http://shrimpware.com/SIS] &lt;br /&gt;
== Flashing Green does not connect ==&lt;br /&gt;
After much fooling around and Google searching I found that the Spark Core would not connect to my WiFi because I was using WEP encryption. Once I switched to WAP it worked fine. My Spark Core was working fine for weeks sitting next to me in my office (20 feet from the WiFi access point). Then one day it started dropping the WiFi connection and could not recover it. After a lot of searching I decided to move it closer to my WiFi access point (8 feet) and it worked reliably again. Weeks later I moved it back to my office and it worked fine for a few days; then it did not. My assessment: In my office the WiFi signal is strong enough most times, but occasionally someone/thing near by our house starts transmitting (perhaps the police station?) in a way that prevents my Spark Core from connecting when it is 20 feet from the WiFi access point.&lt;br /&gt;
&lt;br /&gt;
== Creating an App to Communicate with a Particle Device ==&lt;br /&gt;
Particle provides a REST API (to the Particle Cloud) that allows an app to (1) read out the value of a global variable on the Particle device, at any time, and (2) call a function on the Particle device, also at any time.  We have used this API capability to create Android apps in MIT App Inventor 2 that communicate with our Photon and Argon based projects.  Complete details can be found at:&lt;br /&gt;
&lt;br /&gt;
  https://github.com/TeamPracticalProjects/MIT-App-Inventor-Particle-Photon-test&lt;br /&gt;
&lt;br /&gt;
Particle on-line documentation can be found at:&lt;br /&gt;
&lt;br /&gt;
  https://docs.particle.io/reference/device-os/firmware/#cloud-functions&lt;br /&gt;
&lt;br /&gt;
The Particle Cloud functions &amp;quot;Particle.variable()&amp;quot; and &amp;quot;Particle.function()&amp;quot; make it particularly easy to create apps that interact with your Particle-based project.  MIT App Inventor 2 is a block-based programming language that is very easy to learn and use, and yet is capable of producing very useful apps.  Information about MIT App Inventor 2 can be found at:&lt;br /&gt;
&lt;br /&gt;
  http://ai2.appinventor.mit.edu/&lt;br /&gt;
&lt;br /&gt;
MIT App Inventor 2 is currently limited to developing apps for Android.  However, MIT is well along in the development of support for iOS.  MIT App Inventor 2 is entirely web based (no IDE to install) and is entirely free to use.&lt;br /&gt;
&lt;br /&gt;
The Particle Cloud functions &amp;quot;Particle.publish()&amp;quot; and &amp;quot;Particle.subscribe()&amp;quot; are also particularly useful.  The pair can be used for secure device-device communication via the Particle Cloud.  Particle.publish() can also be used to fire off Particle Webhooks that can trigger Web APIs for third party cloud services, e.g. Google Sheets.  Particle.subscribe() can then be used to receive webhook responses from third party cloud services.  We have used these capabilities extensively in the Maker Nexus RFID access control system; for details see:&lt;br /&gt;
&lt;br /&gt;
  https://github.com/makernexus/MN_ACL&lt;br /&gt;
&lt;br /&gt;
We have recently learned how to use Google Apps Scripts, in conjunction with Particle.publish() and Particle webhooks, to flexibly log data to Google sheets.  We have also learned how to use Google Apps Scripts, in conjunction with Particle.publish() and Particle webhooks, to send e-mail and SMS mobile texts for alarms/alerts from Particle-based projects.  Detailed documentation can be found at: &lt;br /&gt;
&lt;br /&gt;
  https://github.com/TeamPracticalProjects/Connectivity_Tools_with_Particle_Devices/blob/main/TPP_Connectivity_Tools_Technical_Description.pdf&lt;/div&gt;</summary>
		<author><name>BobG</name></author>
	</entry>
	<entry>
		<id>http://makernexuswiki.com/index.php?title=Particle.io&amp;diff=3119</id>
		<title>Particle.io</title>
		<link rel="alternate" type="text/html" href="http://makernexuswiki.com/index.php?title=Particle.io&amp;diff=3119"/>
		<updated>2021-10-06T16:36:40Z</updated>

		<summary type="html">&lt;p&gt;BobG: Added information about Particle Cloud API and MIT App Inventor 2.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Unfortunately their community pages are long, long conversations that are not trimmed up and easy to read. Once you find a gem of information, post it here.&lt;br /&gt;
&lt;br /&gt;
== Particle.io (formerly Spark.io) ==&lt;br /&gt;
&lt;br /&gt;
This is an &amp;quot;Arduino-like&amp;quot; processor. So far it has run all my Arduino code without a problem. We even brought over some other libraries and they worked. This platform easily connects to WiFi and Particle.io runs a cloud based service that makes talking to your core easy. Once the Particle Core is on WiFi then you can compile your code for it using either a web browser or their Particle Dev application on your local computer. In either case your software is compiled in the Particle Cloud and then pushed down to your Particle Core. This is beautiful. There is no need to be anywhere near your Particle Core when you send it new software.&lt;br /&gt;
&lt;br /&gt;
The Particle firmware contains libraries that let you expose a local variable on your core, or a local function. Then these can be called from any web browser. Thus you can interact with your software on your core from anywhere in the world. Lastly, they offer Spark.publish which your software can call to send short messages through the Particle Cloud service (free) to anywhere. Your own server could monitor the Spark Cloud for alerts from your core(s). IFTTT.com offers a channel for Spark. I've had my core publish events to the cloud that IFTTT picks up and turns into SMS messages to my phone. IFTTT could also add events to a Google Docs spreadsheet.&lt;br /&gt;
&lt;br /&gt;
The original Spark Core cost $35 and was configured via an app on a smart phone. In June 2015 they will ship the new Photon which costs $20 and I believe will be configured via its own WiFi hotspot (like the way Chromecast is configured). In October 2015 they will ship the new Electron which will offer cellular data connectivity for $3/month. In October they are also planning to release a solar power kit for the Electron. With all of this you will be able to put an Electron on the top of any local mountain and interact with it forever. Wow.&lt;br /&gt;
&lt;br /&gt;
== Photon ==&lt;br /&gt;
&lt;br /&gt;
=== String concatenation ===&lt;br /&gt;
&lt;br /&gt;
We found a bit of code that would compile and run on the Spark Core, but not on the Photon. Here's the workaround:&lt;br /&gt;
* original code: bufferReadout += Time.timeStr(index);&lt;br /&gt;
* revised code: bufferReadout += Time.timeStr(index).c_str();&lt;br /&gt;
&lt;br /&gt;
== Javascript ==&lt;br /&gt;
I wanted to interact with my Spark Core through the Spark Cloud. I wanted to do it without having an active web server, so I wrote code to do it in Javascript (a nasty language to work with). The page I wrote will allow you to log on to your Spark account, get information from your core, and then send messages back and forth. To use this you only need the Javascript code to run in your browser. The current version of my code will read the Spark Cloud to get a list of variables and methods that your core firmware exports. It also monitors your core for any Publish events it sends. You can run this from my web site, or go there and download all the code so you can modify it and run it anywhere you want. The download includes a simple sample firmware app to run on your core. But the web site also works with the factory installed firmware. [http://shrimpware.com/SIS http://shrimpware.com/SIS] &lt;br /&gt;
== Flashing Green does not connect ==&lt;br /&gt;
After much fooling around and Google searching I found that the Spark Core would not connect to my WiFi because I was using WEP encryption. Once I switched to WAP it worked fine. My Spark Core was working fine for weeks sitting next to me in my office (20 feet from the WiFi access point). Then one day it started dropping the WiFi connection and could not recover it. After a lot of searching I decided to move it closer to my WiFi access point (8 feet) and it worked reliably again. Weeks later I moved it back to my office and it worked fine for a few days; then it did not. My assessment: In my office the WiFi signal is strong enough most times, but occasionally someone/thing near by our house starts transmitting (perhaps the police station?) in a way that prevents my Spark Core from connecting when it is 20 feet from the WiFi access point.&lt;br /&gt;
&lt;br /&gt;
== Creating an App to Communicate with a Particle Device ==&lt;br /&gt;
Particle provides a REST API (to the Particle Cloud) that allows an app to (1) read out the value of a global variable on the Particle device, at any time, and (2) call a function on the Particle device, also at any time.  We have used this API capability to create Android apps in MIT App Inventor 2 that communicate with our Photon and Argon based projects.  Complete details can be found at:&lt;br /&gt;
&lt;br /&gt;
  https://github.com/TeamPracticalProjects/MIT-App-Inventor-Particle-Photon-test&lt;br /&gt;
&lt;br /&gt;
Particle on-line documentation can be found at:&lt;br /&gt;
&lt;br /&gt;
  https://docs.particle.io/reference/device-os/firmware/#cloud-functions&lt;br /&gt;
&lt;br /&gt;
The Particle Cloud functions &amp;quot;Particle.variable()&amp;quot; and &amp;quot;Particle.function()&amp;quot; make it particularly easy to create apps that interact with your Particle-based project.  MIT App Inventor 2 is a block-based programming language that is very easy to learn and use, and yet is capable of producing very useful apps.  Information about MIT App Inventor 2 can be found at:&lt;br /&gt;
&lt;br /&gt;
  http://ai2.appinventor.mit.edu/&lt;br /&gt;
&lt;br /&gt;
MIT App Inventor 2 is currently limited to developing apps for Android.  However, MIT is well along in the development of support for iOS.  MIT App Inventor 2 is entirely web based (no IDE to install) and is entirely free to use.&lt;br /&gt;
&lt;br /&gt;
The Particle Cloud functions &amp;quot;Particle.publish()&amp;quot; and &amp;quot;Particle.subscribe()&amp;quot; are also particularly useful.  The pair can be used for secure device-device communication via the Particle Cloud.  Particle.publish() can also be used to fire off Particle Webhooks that can trigger Web APIs for third party cloud services, e.g. Google Sheets.  Particle.subscribe() can then be used to receive webhook responses from third party cloud services.  We have used these capabilities extensively in the Maker Nexus RFID access control system; for details see:&lt;br /&gt;
&lt;br /&gt;
  https://github.com/makernexus/MN_ACL&lt;br /&gt;
&lt;br /&gt;
We have recently learned how to use Google Apps Scripts, in conjunction with Particle.publish() and Particle webhooks, to flexibly log data to Google sheets.  We have also learned how to use Google Apps Scripts, in conjunction with Particle.publish() and Particle webhooks, to send e-mail and SMS mobile texts for alarms/alerts from Particle-based projects.  Detailed documentation is currently under development.&lt;/div&gt;</summary>
		<author><name>BobG</name></author>
	</entry>
	<entry>
		<id>http://makernexuswiki.com/index.php?title=Laser_Cutters&amp;diff=2716</id>
		<title>Laser Cutters</title>
		<link rel="alternate" type="text/html" href="http://makernexuswiki.com/index.php?title=Laser_Cutters&amp;diff=2716"/>
		<updated>2020-11-28T20:20:26Z</updated>

		<summary type="html">&lt;p&gt;BobG: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Different Machines =&lt;br /&gt;
&lt;br /&gt;
[[Laser Manufacturers]] list (and associated equipment) with any notes we have.&lt;br /&gt;
&lt;br /&gt;
= How To =&lt;br /&gt;
&lt;br /&gt;
* Test to determine the correct focal distance for your laser [https://www.youtube.com/watch?v=Eg6THrEdleo video]&lt;br /&gt;
&lt;br /&gt;
*A [https://www.youtube.com/channel/UCX4wA5KhEX6o8zZkHnPthUQ YouTube channel] with a lot of videos. Specializing in board game enhancements.&lt;br /&gt;
&lt;br /&gt;
= Techniques =&lt;br /&gt;
&lt;br /&gt;
== Wood Staining ==&lt;br /&gt;
&lt;br /&gt;
Use Minwax Water Based Wood Stain to color the wood before cutting. Available everywhere, including Ace Hardware stores. They add tint just like they would with a paint. I ignore the colors in the samples on the shelf. I asked to see the colors in the tint machine, there are about a dozen. For my red, I use the red tint straight, no other colors. The stuff works great. I brush it on with a foam brush, then wipe it with a cotton rag.&lt;br /&gt;
&lt;br /&gt;
== Cut for [[Vacuum_Forming|Vacuum_Forming]] ==&lt;br /&gt;
&lt;br /&gt;
I cut a 3 inch medallion positive to use in laser forming. I cut it out of 6mm Baltic Birch plywood. I set the 3d Stamp mode in the driver to Shoulder 45, Widening 0. This gave great relief. On the 120w laser I used 400 DPI, speed 40, power 90, Stucki, bottom up. I did two passes.&lt;br /&gt;
&lt;br /&gt;
== Fitting Parts to a Sheet ==&lt;br /&gt;
&lt;br /&gt;
=== SVGNest ===&lt;br /&gt;
&lt;br /&gt;
Sometimes you have a lot of irregular shapes you want to cut. Maximizing the use of a piece of material can be tough. The demo on this site is pretty cool: http://svgnest.com/&amp;amp;nbsp;&amp;amp;nbsp; It's open souce, source found here: https://github.com/Jack000/SVGnest&lt;br /&gt;
&lt;br /&gt;
I haven't tried SVGNest yet, but the sample images on his page are impressive.&lt;br /&gt;
&lt;br /&gt;
== Sudo 3D ==&lt;br /&gt;
&lt;br /&gt;
This web site shows a technique to create nice 3D chess pieces. He cuts the front profile then a bounding box. Then he rotates the piece 90 degrees to cut the other profiles. The results are very interesting. [http://imgur.com/a/Rt8kz http://imgur.com/a/Rt8kz]&amp;amp;nbsp;&amp;amp;nbsp; Thanks to Bruce for finding this.&lt;br /&gt;
&lt;br /&gt;
== Working with Inkscape and the Epilog Helix ==&lt;br /&gt;
&lt;br /&gt;
* THE KEY CONCEPT:  &amp;quot;Objects&amp;quot; in Inkscape can be created in several forms:  (1) Object &amp;quot;primitives&amp;quot; (my term) -- the objects that you can draw using the tools on the left hand side of the Inkscape window -- these include rectangles, ovals, polygons, and text strings; (2) &amp;quot;Stroke&amp;quot; objects -- the objects that you create when using the pen tool -- either lines or Bezier curves; and (3) &amp;quot;Path&amp;quot; objects.  As far as I know, you cannot create path objects directly, but you can convert other objects to paths using &amp;quot;Path | Object to Path&amp;quot; and &amp;quot;Path | Stroke to Path&amp;quot;.  If you use &amp;quot;Path | Trace Bitmap&amp;quot; to convert a pixel (raster) image to a vector drawing, the result is a stroke object.  &lt;br /&gt;
&lt;br /&gt;
* Now, here is the KEY CONCEPT: you MUST convert all objects that you want the Epilog laser to cut/engrave into &amp;quot;Path&amp;quot; objects.  Select the object and use &amp;quot;Path | Object to Path&amp;quot; or &amp;quot;Path | Stroke to Path&amp;quot;, as appropriate.  If you don't perform these conversions, the objects will be ignored by the laser cutter!   You can test that the object has been converted to a path by using the node editor tool (on the left toolbar below the select pointer).  You should see a whole bunch of nodes that represent the path around the selected object.  Another good test is to select &amp;quot;View | Display Mode | Outline&amp;quot; to clearly see the defined paths.  After converting all of your objects to paths, use &amp;quot;Object | Fill and Stroke&amp;quot; to designate vector cutting/engraving (no fill, stroke line width = 0.001&amp;quot;) or raster engraving (fill the object with black color and no stroke).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* TECHNIQUES:&lt;br /&gt;
&lt;br /&gt;
To vector cut/engrave an object or text: place the object in the workspace.  Select the object with the arrow pointer. Then: &amp;quot;Path | Object to Path&amp;quot;. Next, select &amp;quot;Fill and Stroke&amp;quot; and make sure that there is no fill and that lines are solid and 0.001&amp;quot; wide.  The difference between vector cutting and vector engraving is in the driver settings and not the Inkscape file.&lt;br /&gt;
&lt;br /&gt;
To raster engrave an object or text: place the object in the workspace.  Select the object with the arrow pointer. Then: &amp;quot;Path | Object to Path&amp;quot;. Next, select &amp;quot;Fill and Stroke&amp;quot; and make sure that there is a solid fill and no stroke.  The depth of the raster engraving is in the driver settings and not the Inkscape file.&lt;br /&gt;
&lt;br /&gt;
To align objects inside of other objects (e.g. to center vertically): &amp;quot;Object | Align and Distribute&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To both vector engrave and vector cut within one project, select different colors for the cut objects and for the engraved objects.  Make sure to note the full RGB settings for your color(s). In the Epilog driver, the vector settings will apply to any colors that are not specified in the &amp;quot;Color Mapping&amp;quot; tab.  In the Color Mapping tab, put in the settings for the color that you want to engrave.  Make sure to check the box to enable color mapping, select the color (double check that the RGB for the selected color are exactly what you set for the object in Inkscape), enter the settings and use the right arrow by the settings to transfer the settings into the color table.  Any color that is not set in the color settings will use the default vector/raster settings on the main driver tab.&lt;br /&gt;
&lt;br /&gt;
Settings that work well with 3 mm birch plywood are:&lt;br /&gt;
&lt;br /&gt;
- Raster engraving:  raster speed = 30%, raster power = 75%.&lt;br /&gt;
&lt;br /&gt;
- Vector engraving: vector speed = 50%, vector power = 50%, vector frequency = 2500 Hz.&lt;br /&gt;
&lt;br /&gt;
- Vector cutting: vector speed = 20%, vector power = 90%, vector frequency = 2500 Hz.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* MAKING A BOX USING THE INKSCAPE TABBED BOX EXTENSION.&lt;br /&gt;
See the document on the MN Member Google Drive, at:&lt;br /&gt;
https://drive.google.com/file/d/1btpuTFqOBQuDYE213z-sIyOjfjcpTbVC/view?usp=sharing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Materials =&lt;br /&gt;
&lt;br /&gt;
[https://www.ponoko.com/blog/materials/10-great-materials-for-laser-cutting/ Ponoko] has a fun list of 10 great materials to laser.&lt;br /&gt;
&lt;br /&gt;
== Baltic Birch Plywood ==&lt;br /&gt;
It comes in 5x5 foot sheets 3mm (1/8th inch) for about $18. I have them cut the boards into 24 inch strips so that they fit in my car. I then cut the strips into 24x18 panels at TechShop. The price per panel is about $2.50. It also comes in 6mm sheets. These prices are from 2014 at the now defunct Southern Lumber. We've found a supplier on the web: [http://ocoochhardwoods.com/plywood.php Ocooch Hardwoods] I've found that the glue in this plywood makes it harder to cut than plain wood. There are also some hidden hard spots in the plywood. I have to cut at a slower speed or else I'll have some places that do not cut through.&lt;br /&gt;
*Settings for 3mm 45watt: speed 8, power 90, frequency 500. If the laser is really clean then speed can go up to 12.&lt;br /&gt;
*Settings for 6mm&lt;br /&gt;
Another source for Birch Ply is Mayan Hardwoods In Paso Robles. [http://www.mayanhardwood.com/ http://www.mayanhardwood.com/] Mayan carries a full line of hardwood plywood and regular hardwood lumber by the board foot. They do not have a cutting service for sheets of plywood. They do have a chop saw to cut board down. They have the Baltic Birch in 5' X 5' sheets in both 1/8&amp;quot; (3 mm) and 1/4&amp;quot; (6 mm).&amp;lt;br/&amp;gt;They also have Birch Plywood in 4' X 8' sheets. The 5 X 5 sheets are a much better quality than the 4 X 8 sheets.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;They offer contractor prices&amp;lt;br/&amp;gt;&lt;br /&gt;
*Birch 1/8&amp;quot; 5 X 5 sheets for $17.77&lt;br /&gt;
*Birch 1/4&amp;quot; 5 X 5 sheets for $21.45&lt;br /&gt;
Mayan also has Oak 1/8&amp;quot;; and 1/4&amp;quot; plywood in 4' X 8' sheets.&lt;br /&gt;
&lt;br /&gt;
== Acrylic ==&lt;br /&gt;
Also known as Plexiglas. It comes in several thicknesses; usually specified in English units (1/8, 1/4) but actually manufactured in metric (3mm, 6mm). It is easy to laser cut with a nice finish on the cut edges. Etching also produces nice effects. While extruded is cheaper, we highly recommend cast acrylic for your projects.&lt;br /&gt;
&lt;br /&gt;
=== Cast Acrylic ===&lt;br /&gt;
Has a paper protective layer stuck to it with rubber cement. You can etch and cut through the paper. Has a very consistent thickness across the sheet. Superior etching results. It can warp if left in the sun on the dashboard of a car.&lt;br /&gt;
&lt;br /&gt;
=== Extruded Acrylic ===&lt;br /&gt;
Has a blue plastic protective layer. The protective layer is reported to be laser safe but etching through it may not be ideal. May have slight thickness variation across the sheet. If precise thickness is important to your design, you may want to work in smaller pieces, measuring each with calipers and adjusting your design before cutting. Goes soft at a lower temperature than cast acrylic. Is 15% cheaper than cast acrylic.&lt;br /&gt;
&lt;br /&gt;
=== Mirrored Acrylic ===&lt;br /&gt;
Mirrored acrylic has a thin reflective layer on one side. The mirror is seen when looking through the acrylic, the other side is a dull matte finish. You cannot cut or etch mirrored acrylic with the reflective side up (towards the laser). You can, however, cut mirrored acrylic with the dull side towards the laser. You can also get some interesting effects by etching the dull side, which removed the mirrored layer from areas.&lt;br /&gt;
&lt;br /&gt;
=== Cement ===&lt;br /&gt;
While many glues may hold acrylic for some time, by far the best option is [https://www.tapplastics.com/product/repair_products/plastic_adhesives/tap_acrylic_cement/130/296?gclid=EAIaIQobChMIt9im_rbB5AIVgv_jBx31xwjwEAQYASABEgLiwvD_BwE acrylic cement]. This is a very thin liquid that wicks into a joint between two pieces of acrylic and dissolves the two pieces to form a very strong molecular bond. The bond requires that the two pieces have good contact between them; the cement does not fill gaps. You should search YouTube for a video on how to use acrylic cement - it is filled with good tips.&lt;br /&gt;
&lt;br /&gt;
You can also use double sided tape or other similar methods.&lt;br /&gt;
&lt;br /&gt;
=== Sources ===&lt;br /&gt;
Tap Plastics is a well known supplier of acrylic. They will cut sheets to size while you wait. They also have a scrap bin that is often filled with cheap pieces of acrylic. The scrap bin will also have pieces of other plastics that are not laser safe. If you have a question about the material, ask their helpful staff if the piece you want to by is acrylic.&lt;br /&gt;
&lt;br /&gt;
== Worbla ==&lt;br /&gt;
&lt;br /&gt;
Feels like plastic, but is laser cutter friendly. One side is sticky. You can heat it with a heat gun and form it like clay. Works great to make costume parts. An internet search for warbla will show a plethora of cool examples.&lt;br /&gt;
&lt;br /&gt;
Worbla activates at 90 C.; I dipped in almost boiling water and was able to easily work it by hand. This is great stuff.&lt;br /&gt;
&lt;br /&gt;
You can buy it at [http://www.cosplaysupplies.com/store.php?s=UN4V CosPlay Supplies.]&lt;br /&gt;
&lt;br /&gt;
You can also [[Make_your_own_Worbla|make your own Worbla]]&lt;br /&gt;
&lt;br /&gt;
= Supplies =&lt;br /&gt;
&lt;br /&gt;
Also see the general [[Supply Sources]] page.&lt;br /&gt;
&lt;br /&gt;
== LaserBits ==&lt;br /&gt;
[http://www.laserbits.com/ http://www.laserbits.com/]&amp;lt;br/&amp;gt;I have not purchased from this company yet. Full line of engraving supplies.&amp;amp;nbsp; They have Color fills and seals. Engrave a piece of acrylic and then use this stuff to fill the engraving with a different color.&amp;lt;br/&amp;gt;[http://www.laserbits.com/laser-supplies/laserbits-pro-color-fill-sealer.html http://www.laserbits.com/laser-supplies/laserbits-pro-color-fill-sealer.html]&lt;br /&gt;
== Marking metal and glass ==&lt;br /&gt;
&lt;br /&gt;
=== Thermark ===&lt;br /&gt;
You spray this product onto a metal or glass surface, laser it, then wash off the part that was not hit with the laser. I saw this used at TSMP on metal and the result was very good. The woman using it recommended it. I got a 6oz bottle of the spray on Thermark Laser Marking Material LMM14 Black from the manufacturers web site [http://thermark.com Thermark] for $62 plus $11 shipping UPS. Not cheap. My settings: 60W laser, 600 DPI, Stucki, speed 5, power 90. &amp;amp;nbsp;Anything with less heat left the image susceptible to scratching off.&lt;br /&gt;
=== Dry Moly Lube ===&lt;br /&gt;
&lt;br /&gt;
(From [http://www.evilmadscientist.com/2013/laser-moly/ Evil Mad Scientist] web site) A can of &amp;quot;CRC Dry Moly Lube&amp;quot; sells for about $10. Clean your metal with isopropyl alcohol. Spray lube on your metal, let dry. Do this three times. They etched with 20-30% speed (laser power unspecified) which showed a big difference. Clean off the excess lube with alcohol. They say the finished image seems tough. I haven't tried this yet.&lt;br /&gt;
&lt;br /&gt;
[http://www.sawmillcreek.org/showthread.php?163305-Forget-Cermark-and-Plaster-of-Paris-try-this Sawmill Creek] also has a riff on this technique. He used &amp;quot;Sprayon LU200&amp;quot;, 2 coats from 4 inches high. 600 DPI, 3% speed and 100% power, air assist and two passes. He cleaned it by spraying with Krud Kutter and letting it sit for a few minutes.&lt;br /&gt;
&lt;br /&gt;
And... one commentator says that Cermark is so easy to use (one coat, water clean up) and fast to laser that the cost of the good stuff is not significant.&lt;br /&gt;
&lt;br /&gt;
== Interesting Projects ==&lt;br /&gt;
Things found on the web that would be interesting to try.&lt;br /&gt;
&lt;br /&gt;
[https://www.pinterest.com/richardaky/laser-cut-joint-ideas/ Self locking joints] of all kinds. Good seeds for brainstorming.&lt;/div&gt;</summary>
		<author><name>BobG</name></author>
	</entry>
	<entry>
		<id>http://makernexuswiki.com/index.php?title=Laser_Cutters&amp;diff=2715</id>
		<title>Laser Cutters</title>
		<link rel="alternate" type="text/html" href="http://makernexuswiki.com/index.php?title=Laser_Cutters&amp;diff=2715"/>
		<updated>2020-11-28T20:19:02Z</updated>

		<summary type="html">&lt;p&gt;BobG: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Different Machines =&lt;br /&gt;
&lt;br /&gt;
[[Laser Manufacturers]] list (and associated equipment) with any notes we have.&lt;br /&gt;
&lt;br /&gt;
= How To =&lt;br /&gt;
&lt;br /&gt;
* Test to determine the correct focal distance for your laser [https://www.youtube.com/watch?v=Eg6THrEdleo video]&lt;br /&gt;
&lt;br /&gt;
*A [https://www.youtube.com/channel/UCX4wA5KhEX6o8zZkHnPthUQ YouTube channel] with a lot of videos. Specializing in board game enhancements.&lt;br /&gt;
&lt;br /&gt;
= Techniques =&lt;br /&gt;
&lt;br /&gt;
== Wood Staining ==&lt;br /&gt;
&lt;br /&gt;
Use Minwax Water Based Wood Stain to color the wood before cutting. Available everywhere, including Ace Hardware stores. They add tint just like they would with a paint. I ignore the colors in the samples on the shelf. I asked to see the colors in the tint machine, there are about a dozen. For my red, I use the red tint straight, no other colors. The stuff works great. I brush it on with a foam brush, then wipe it with a cotton rag.&lt;br /&gt;
&lt;br /&gt;
== Cut for [[Vacuum_Forming|Vacuum_Forming]] ==&lt;br /&gt;
&lt;br /&gt;
I cut a 3 inch medallion positive to use in laser forming. I cut it out of 6mm Baltic Birch plywood. I set the 3d Stamp mode in the driver to Shoulder 45, Widening 0. This gave great relief. On the 120w laser I used 400 DPI, speed 40, power 90, Stucki, bottom up. I did two passes.&lt;br /&gt;
&lt;br /&gt;
== Fitting Parts to a Sheet ==&lt;br /&gt;
&lt;br /&gt;
=== SVGNest ===&lt;br /&gt;
&lt;br /&gt;
Sometimes you have a lot of irregular shapes you want to cut. Maximizing the use of a piece of material can be tough. The demo on this site is pretty cool: http://svgnest.com/&amp;amp;nbsp;&amp;amp;nbsp; It's open souce, source found here: https://github.com/Jack000/SVGnest&lt;br /&gt;
&lt;br /&gt;
I haven't tried SVGNest yet, but the sample images on his page are impressive.&lt;br /&gt;
&lt;br /&gt;
== Sudo 3D ==&lt;br /&gt;
&lt;br /&gt;
This web site shows a technique to create nice 3D chess pieces. He cuts the front profile then a bounding box. Then he rotates the piece 90 degrees to cut the other profiles. The results are very interesting. [http://imgur.com/a/Rt8kz http://imgur.com/a/Rt8kz]&amp;amp;nbsp;&amp;amp;nbsp; Thanks to Bruce for finding this.&lt;br /&gt;
&lt;br /&gt;
== Working with Inkscape and the Epilog Helix ==&lt;br /&gt;
&lt;br /&gt;
* THE KEY CONCEPT:  &amp;quot;Objects&amp;quot; in Inkscape can be created in several forms:  (1) Object &amp;quot;primitives&amp;quot; (my term) -- the objects that you can draw using the tools on the left hand side of the Inkscape window -- these include rectangles, ovals, polygons, and text strings; (2) &amp;quot;Stroke&amp;quot; objects -- the objects that you create when using the pen tool -- either lines or Bezier curves; and (3) &amp;quot;Path&amp;quot; objects.  As far as I know, you cannot create path objects directly, but you can convert other objects to paths using &amp;quot;Path | Object to Path&amp;quot; and &amp;quot;Path | Stroke to Path&amp;quot;.  If you use &amp;quot;Path | Trace Bitmap&amp;quot; to convert a pixel (raster) image to a vector drawing, the result is a stroke object.  &lt;br /&gt;
&lt;br /&gt;
* Now, here is the KEY CONCEPT: you MUST convert all objects that you want the Epilog laser to cut/engrave into &amp;quot;Path&amp;quot; objects.  Select the object and use &amp;quot;Path | Object to Path&amp;quot; or &amp;quot;Path | Stroke to Path&amp;quot;, as appropriate.  If you don't perform these conversions, the objects will be ignored by the laser cutter!   You can test that the object has been converted to a path by using the node editor tool (on the left toolbar below the select pointer).  You should see a whole bunch of nodes that represent the path around the selected object.  Another good test is to select &amp;quot;View | Display Mode | Outline&amp;quot; to clearly see the defined paths.  After converting all of your objects to paths, use &amp;quot;Object | Fill and Stroke&amp;quot; to designate vector cutting/engraving (no fill, stroke line width = 0.001&amp;quot;) or raster engraving (fill the object with black color and no stroke).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* TECHNIQUES:&lt;br /&gt;
&lt;br /&gt;
To vector cut/engrave an object or text: place the object in the workspace.  Select the object with the arrow pointer. Then: &amp;quot;Path | Object to Path&amp;quot;. Next, select &amp;quot;Fill and Stroke&amp;quot; and make sure that there is no fill and that lines are solid and 0.001&amp;quot; wide.  The difference between vector cutting and vector engraving is in the driver settings and not the Inkscape file.&lt;br /&gt;
&lt;br /&gt;
To raster engrave an object or text: place the object in the workspace.  Select the object with the arrow pointer. Then: &amp;quot;Path | Object to Path&amp;quot;. Next, select &amp;quot;Fill and Stroke&amp;quot; and make sure that there is a solid fill and no stroke.  The depth of the raster engraving is in the driver settings and not the Inkscape file.&lt;br /&gt;
&lt;br /&gt;
To align objects inside of other objects (e.g. to center vertically): &amp;quot;Object | Align and Distribute&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To both vector engrave and vector cut within one project, select different colors for the cut objects and for the engraved objects.  Make sure to note the full RGB settings for your color(s). In the Epilog driver, the vector settings will apply to any colors that are not specified in the &amp;quot;Color Mapping&amp;quot; tab.  In the Color Mapping tab, put in the settings for the color that you want to engrave.  Make sure to check the box to enable color mapping, select the color (double check that the RGB for the selected color are exactly what you set for the object in Inkscape), enter the settings and use the right arrow by the settings to transfer the settings into the color table.  Any color that is not set in the color settings will use the default vector/raster settings on the main driver tab.&lt;br /&gt;
&lt;br /&gt;
Settings that work well with 3 mm birch plywood are:&lt;br /&gt;
&lt;br /&gt;
- Raster engraving:  raster speed = 30%, raster power = 75%.&lt;br /&gt;
&lt;br /&gt;
- Vector engraving: vector speed = 50%, vector power = 50%, vector frequency = 2500 Hz.&lt;br /&gt;
&lt;br /&gt;
- Vector cutting: vector speed = 20%, vector power = 90%, vector frequency = 2500 Hz.&lt;br /&gt;
&lt;br /&gt;
* Making a Box using the Inkscape Tabbed Box Extension.&lt;br /&gt;
See the document on the MN Member Google Drive, at:&lt;br /&gt;
https://drive.google.com/file/d/1btpuTFqOBQuDYE213z-sIyOjfjcpTbVC/view?usp=sharing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Materials =&lt;br /&gt;
&lt;br /&gt;
[https://www.ponoko.com/blog/materials/10-great-materials-for-laser-cutting/ Ponoko] has a fun list of 10 great materials to laser.&lt;br /&gt;
&lt;br /&gt;
== Baltic Birch Plywood ==&lt;br /&gt;
It comes in 5x5 foot sheets 3mm (1/8th inch) for about $18. I have them cut the boards into 24 inch strips so that they fit in my car. I then cut the strips into 24x18 panels at TechShop. The price per panel is about $2.50. It also comes in 6mm sheets. These prices are from 2014 at the now defunct Southern Lumber. We've found a supplier on the web: [http://ocoochhardwoods.com/plywood.php Ocooch Hardwoods] I've found that the glue in this plywood makes it harder to cut than plain wood. There are also some hidden hard spots in the plywood. I have to cut at a slower speed or else I'll have some places that do not cut through.&lt;br /&gt;
*Settings for 3mm 45watt: speed 8, power 90, frequency 500. If the laser is really clean then speed can go up to 12.&lt;br /&gt;
*Settings for 6mm&lt;br /&gt;
Another source for Birch Ply is Mayan Hardwoods In Paso Robles. [http://www.mayanhardwood.com/ http://www.mayanhardwood.com/] Mayan carries a full line of hardwood plywood and regular hardwood lumber by the board foot. They do not have a cutting service for sheets of plywood. They do have a chop saw to cut board down. They have the Baltic Birch in 5' X 5' sheets in both 1/8&amp;quot; (3 mm) and 1/4&amp;quot; (6 mm).&amp;lt;br/&amp;gt;They also have Birch Plywood in 4' X 8' sheets. The 5 X 5 sheets are a much better quality than the 4 X 8 sheets.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;They offer contractor prices&amp;lt;br/&amp;gt;&lt;br /&gt;
*Birch 1/8&amp;quot; 5 X 5 sheets for $17.77&lt;br /&gt;
*Birch 1/4&amp;quot; 5 X 5 sheets for $21.45&lt;br /&gt;
Mayan also has Oak 1/8&amp;quot;; and 1/4&amp;quot; plywood in 4' X 8' sheets.&lt;br /&gt;
&lt;br /&gt;
== Acrylic ==&lt;br /&gt;
Also known as Plexiglas. It comes in several thicknesses; usually specified in English units (1/8, 1/4) but actually manufactured in metric (3mm, 6mm). It is easy to laser cut with a nice finish on the cut edges. Etching also produces nice effects. While extruded is cheaper, we highly recommend cast acrylic for your projects.&lt;br /&gt;
&lt;br /&gt;
=== Cast Acrylic ===&lt;br /&gt;
Has a paper protective layer stuck to it with rubber cement. You can etch and cut through the paper. Has a very consistent thickness across the sheet. Superior etching results. It can warp if left in the sun on the dashboard of a car.&lt;br /&gt;
&lt;br /&gt;
=== Extruded Acrylic ===&lt;br /&gt;
Has a blue plastic protective layer. The protective layer is reported to be laser safe but etching through it may not be ideal. May have slight thickness variation across the sheet. If precise thickness is important to your design, you may want to work in smaller pieces, measuring each with calipers and adjusting your design before cutting. Goes soft at a lower temperature than cast acrylic. Is 15% cheaper than cast acrylic.&lt;br /&gt;
&lt;br /&gt;
=== Mirrored Acrylic ===&lt;br /&gt;
Mirrored acrylic has a thin reflective layer on one side. The mirror is seen when looking through the acrylic, the other side is a dull matte finish. You cannot cut or etch mirrored acrylic with the reflective side up (towards the laser). You can, however, cut mirrored acrylic with the dull side towards the laser. You can also get some interesting effects by etching the dull side, which removed the mirrored layer from areas.&lt;br /&gt;
&lt;br /&gt;
=== Cement ===&lt;br /&gt;
While many glues may hold acrylic for some time, by far the best option is [https://www.tapplastics.com/product/repair_products/plastic_adhesives/tap_acrylic_cement/130/296?gclid=EAIaIQobChMIt9im_rbB5AIVgv_jBx31xwjwEAQYASABEgLiwvD_BwE acrylic cement]. This is a very thin liquid that wicks into a joint between two pieces of acrylic and dissolves the two pieces to form a very strong molecular bond. The bond requires that the two pieces have good contact between them; the cement does not fill gaps. You should search YouTube for a video on how to use acrylic cement - it is filled with good tips.&lt;br /&gt;
&lt;br /&gt;
You can also use double sided tape or other similar methods.&lt;br /&gt;
&lt;br /&gt;
=== Sources ===&lt;br /&gt;
Tap Plastics is a well known supplier of acrylic. They will cut sheets to size while you wait. They also have a scrap bin that is often filled with cheap pieces of acrylic. The scrap bin will also have pieces of other plastics that are not laser safe. If you have a question about the material, ask their helpful staff if the piece you want to by is acrylic.&lt;br /&gt;
&lt;br /&gt;
== Worbla ==&lt;br /&gt;
&lt;br /&gt;
Feels like plastic, but is laser cutter friendly. One side is sticky. You can heat it with a heat gun and form it like clay. Works great to make costume parts. An internet search for warbla will show a plethora of cool examples.&lt;br /&gt;
&lt;br /&gt;
Worbla activates at 90 C.; I dipped in almost boiling water and was able to easily work it by hand. This is great stuff.&lt;br /&gt;
&lt;br /&gt;
You can buy it at [http://www.cosplaysupplies.com/store.php?s=UN4V CosPlay Supplies.]&lt;br /&gt;
&lt;br /&gt;
You can also [[Make_your_own_Worbla|make your own Worbla]]&lt;br /&gt;
&lt;br /&gt;
= Supplies =&lt;br /&gt;
&lt;br /&gt;
Also see the general [[Supply Sources]] page.&lt;br /&gt;
&lt;br /&gt;
== LaserBits ==&lt;br /&gt;
[http://www.laserbits.com/ http://www.laserbits.com/]&amp;lt;br/&amp;gt;I have not purchased from this company yet. Full line of engraving supplies.&amp;amp;nbsp; They have Color fills and seals. Engrave a piece of acrylic and then use this stuff to fill the engraving with a different color.&amp;lt;br/&amp;gt;[http://www.laserbits.com/laser-supplies/laserbits-pro-color-fill-sealer.html http://www.laserbits.com/laser-supplies/laserbits-pro-color-fill-sealer.html]&lt;br /&gt;
== Marking metal and glass ==&lt;br /&gt;
&lt;br /&gt;
=== Thermark ===&lt;br /&gt;
You spray this product onto a metal or glass surface, laser it, then wash off the part that was not hit with the laser. I saw this used at TSMP on metal and the result was very good. The woman using it recommended it. I got a 6oz bottle of the spray on Thermark Laser Marking Material LMM14 Black from the manufacturers web site [http://thermark.com Thermark] for $62 plus $11 shipping UPS. Not cheap. My settings: 60W laser, 600 DPI, Stucki, speed 5, power 90. &amp;amp;nbsp;Anything with less heat left the image susceptible to scratching off.&lt;br /&gt;
=== Dry Moly Lube ===&lt;br /&gt;
&lt;br /&gt;
(From [http://www.evilmadscientist.com/2013/laser-moly/ Evil Mad Scientist] web site) A can of &amp;quot;CRC Dry Moly Lube&amp;quot; sells for about $10. Clean your metal with isopropyl alcohol. Spray lube on your metal, let dry. Do this three times. They etched with 20-30% speed (laser power unspecified) which showed a big difference. Clean off the excess lube with alcohol. They say the finished image seems tough. I haven't tried this yet.&lt;br /&gt;
&lt;br /&gt;
[http://www.sawmillcreek.org/showthread.php?163305-Forget-Cermark-and-Plaster-of-Paris-try-this Sawmill Creek] also has a riff on this technique. He used &amp;quot;Sprayon LU200&amp;quot;, 2 coats from 4 inches high. 600 DPI, 3% speed and 100% power, air assist and two passes. He cleaned it by spraying with Krud Kutter and letting it sit for a few minutes.&lt;br /&gt;
&lt;br /&gt;
And... one commentator says that Cermark is so easy to use (one coat, water clean up) and fast to laser that the cost of the good stuff is not significant.&lt;br /&gt;
&lt;br /&gt;
== Interesting Projects ==&lt;br /&gt;
Things found on the web that would be interesting to try.&lt;br /&gt;
&lt;br /&gt;
[https://www.pinterest.com/richardaky/laser-cut-joint-ideas/ Self locking joints] of all kinds. Good seeds for brainstorming.&lt;/div&gt;</summary>
		<author><name>BobG</name></author>
	</entry>
	<entry>
		<id>http://makernexuswiki.com/index.php?title=Laser_Cutters&amp;diff=2713</id>
		<title>Laser Cutters</title>
		<link rel="alternate" type="text/html" href="http://makernexuswiki.com/index.php?title=Laser_Cutters&amp;diff=2713"/>
		<updated>2020-11-06T19:41:27Z</updated>

		<summary type="html">&lt;p&gt;BobG: /* Working with Inkscape and the Epilog Helix */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Different Machines =&lt;br /&gt;
&lt;br /&gt;
[[Laser Manufacturers]] list (and associated equipment) with any notes we have.&lt;br /&gt;
&lt;br /&gt;
= How To =&lt;br /&gt;
&lt;br /&gt;
* Test to determine the correct focal distance for your laser [https://www.youtube.com/watch?v=Eg6THrEdleo video]&lt;br /&gt;
&lt;br /&gt;
*A [https://www.youtube.com/channel/UCX4wA5KhEX6o8zZkHnPthUQ YouTube channel] with a lot of videos. Specializing in board game enhancements.&lt;br /&gt;
&lt;br /&gt;
= Techniques =&lt;br /&gt;
&lt;br /&gt;
== Wood Staining ==&lt;br /&gt;
&lt;br /&gt;
Use Minwax Water Based Wood Stain to color the wood before cutting. Available everywhere, including Ace Hardware stores. They add tint just like they would with a paint. I ignore the colors in the samples on the shelf. I asked to see the colors in the tint machine, there are about a dozen. For my red, I use the red tint straight, no other colors. The stuff works great. I brush it on with a foam brush, then wipe it with a cotton rag.&lt;br /&gt;
&lt;br /&gt;
== Cut for [[Vacuum_Forming|Vacuum_Forming]] ==&lt;br /&gt;
&lt;br /&gt;
I cut a 3 inch medallion positive to use in laser forming. I cut it out of 6mm Baltic Birch plywood. I set the 3d Stamp mode in the driver to Shoulder 45, Widening 0. This gave great relief. On the 120w laser I used 400 DPI, speed 40, power 90, Stucki, bottom up. I did two passes.&lt;br /&gt;
&lt;br /&gt;
== Fitting Parts to a Sheet ==&lt;br /&gt;
&lt;br /&gt;
=== SVGNest ===&lt;br /&gt;
&lt;br /&gt;
Sometimes you have a lot of irregular shapes you want to cut. Maximizing the use of a piece of material can be tough. The demo on this site is pretty cool: http://svgnest.com/&amp;amp;nbsp;&amp;amp;nbsp; It's open souce, source found here: https://github.com/Jack000/SVGnest&lt;br /&gt;
&lt;br /&gt;
I haven't tried SVGNest yet, but the sample images on his page are impressive.&lt;br /&gt;
&lt;br /&gt;
== Sudo 3D ==&lt;br /&gt;
&lt;br /&gt;
This web site shows a technique to create nice 3D chess pieces. He cuts the front profile then a bounding box. Then he rotates the piece 90 degrees to cut the other profiles. The results are very interesting. [http://imgur.com/a/Rt8kz http://imgur.com/a/Rt8kz]&amp;amp;nbsp;&amp;amp;nbsp; Thanks to Bruce for finding this.&lt;br /&gt;
&lt;br /&gt;
== Working with Inkscape and the Epilog Helix ==&lt;br /&gt;
&lt;br /&gt;
* THE KEY CONCEPT:  &amp;quot;Objects&amp;quot; in Inkscape can be created in several forms:  (1) Object &amp;quot;primitives&amp;quot; (my term) -- the objects that you can draw using the tools on the left hand side of the Inkscape window -- these include rectangles, ovals, polygons, and text strings; (2) &amp;quot;Stroke&amp;quot; objects -- the objects that you create when using the pen tool -- either lines or Bezier curves; and (3) &amp;quot;Path&amp;quot; objects.  As far as I know, you cannot create path objects directly, but you can convert other objects to paths using &amp;quot;Path | Object to Path&amp;quot; and &amp;quot;Path | Stroke to Path&amp;quot;.  If you use &amp;quot;Path | Trace Bitmap&amp;quot; to convert a pixel (raster) image to a vector drawing, the result is a stroke object.  &lt;br /&gt;
&lt;br /&gt;
* Now, here is the KEY CONCEPT: you MUST convert all objects that you want the Epilog laser to cut/engrave into &amp;quot;Path&amp;quot; objects.  Select the object and use &amp;quot;Path | Object to Path&amp;quot; or &amp;quot;Path | Stroke to Path&amp;quot;, as appropriate.  If you don't perform these conversions, the objects will be ignored by the laser cutter!   You can test that the object has been converted to a path by using the node editor tool (on the left toolbar below the select pointer).  You should see a whole bunch of nodes that represent the path around the selected object.  Another good test is to select &amp;quot;View | Display Mode | Outline&amp;quot; to clearly see the defined paths.  After converting all of your objects to paths, use &amp;quot;Object | Fill and Stroke&amp;quot; to designate vector cutting/engraving (no fill, stroke line width = 0.001&amp;quot;) or raster engraving (fill the object with black color and no stroke).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* TECHNIQUES:&lt;br /&gt;
&lt;br /&gt;
To vector cut/engrave an object or text: place the object in the workspace.  Select the object with the arrow pointer. Then: &amp;quot;Path | Object to Path&amp;quot;. Next, select &amp;quot;Fill and Stroke&amp;quot; and make sure that there is no fill and that lines are solid and 0.001&amp;quot; wide.  The difference between vector cutting and vector engraving is in the driver settings and not the Inkscape file.&lt;br /&gt;
&lt;br /&gt;
To raster engrave an object or text: place the object in the workspace.  Select the object with the arrow pointer. Then: &amp;quot;Path | Object to Path&amp;quot;. Next, select &amp;quot;Fill and Stroke&amp;quot; and make sure that there is a solid fill and no stroke.  The depth of the raster engraving is in the driver settings and not the Inkscape file.&lt;br /&gt;
&lt;br /&gt;
To align objects inside of other objects (e.g. to center vertically): &amp;quot;Object | Align and Distribute&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To both vector engrave and vector cut within one project, select different colors for the cut objects and for the engraved objects.  Make sure to note the full RGB settings for your color(s). In the Epilog driver, the vector settings will apply to any colors that are not specified in the &amp;quot;Color Mapping&amp;quot; tab.  In the Color Mapping tab, put in the settings for the color that you want to engrave.  Make sure to check the box to enable color mapping, select the color (double check that the RGB for the selected color are exactly what you set for the object in Inkscape), enter the settings and use the right arrow by the settings to transfer the settings into the color table.  Any color that is not set in the color settings will use the default vector/raster settings on the main driver tab.&lt;br /&gt;
&lt;br /&gt;
Settings that work well with 3 mm birch plywood are:&lt;br /&gt;
&lt;br /&gt;
- Raster engraving:  raster speed = 30%, raster power = 75%.&lt;br /&gt;
&lt;br /&gt;
- Vector engraving: vector speed = 50%, vector power = 50%, vector frequency = 2500 Hz.&lt;br /&gt;
&lt;br /&gt;
- Vector cutting: vector speed = 20%, vector power = 90%, vector frequency = 2500 Hz.&lt;br /&gt;
&lt;br /&gt;
= Materials =&lt;br /&gt;
&lt;br /&gt;
[https://www.ponoko.com/blog/materials/10-great-materials-for-laser-cutting/ Ponoko] has a fun list of 10 great materials to laser.&lt;br /&gt;
&lt;br /&gt;
== Baltic Birch Plywood ==&lt;br /&gt;
It comes in 5x5 foot sheets 3mm (1/8th inch) for about $18. I have them cut the boards into 24 inch strips so that they fit in my car. I then cut the strips into 24x18 panels at TechShop. The price per panel is about $2.50. It also comes in 6mm sheets. These prices are from 2014 at the now defunct Southern Lumber. We've found a supplier on the web: [http://ocoochhardwoods.com/plywood.php Ocooch Hardwoods] I've found that the glue in this plywood makes it harder to cut than plain wood. There are also some hidden hard spots in the plywood. I have to cut at a slower speed or else I'll have some places that do not cut through.&lt;br /&gt;
*Settings for 3mm 45watt: speed 8, power 90, frequency 500. If the laser is really clean then speed can go up to 12.&lt;br /&gt;
*Settings for 6mm&lt;br /&gt;
Another source for Birch Ply is Mayan Hardwoods In Paso Robles. [http://www.mayanhardwood.com/ http://www.mayanhardwood.com/] Mayan carries a full line of hardwood plywood and regular hardwood lumber by the board foot. They do not have a cutting service for sheets of plywood. They do have a chop saw to cut board down. They have the Baltic Birch in 5' X 5' sheets in both 1/8&amp;quot; (3 mm) and 1/4&amp;quot; (6 mm).&amp;lt;br/&amp;gt;They also have Birch Plywood in 4' X 8' sheets. The 5 X 5 sheets are a much better quality than the 4 X 8 sheets.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;They offer contractor prices&amp;lt;br/&amp;gt;&lt;br /&gt;
*Birch 1/8&amp;quot; 5 X 5 sheets for $17.77&lt;br /&gt;
*Birch 1/4&amp;quot; 5 X 5 sheets for $21.45&lt;br /&gt;
Mayan also has Oak 1/8&amp;quot;; and 1/4&amp;quot; plywood in 4' X 8' sheets.&lt;br /&gt;
&lt;br /&gt;
== Acrylic ==&lt;br /&gt;
Also known as Plexiglas. It comes in several thicknesses; usually specified in English units (1/8, 1/4) but actually manufactured in metric (3mm, 6mm). It is easy to laser cut with a nice finish on the cut edges. Etching also produces nice effects. While extruded is cheaper, we highly recommend cast acrylic for your projects.&lt;br /&gt;
&lt;br /&gt;
=== Cast Acrylic ===&lt;br /&gt;
Has a paper protective layer stuck to it with rubber cement. You can etch and cut through the paper. Has a very consistent thickness across the sheet. Superior etching results. It can warp if left in the sun on the dashboard of a car.&lt;br /&gt;
&lt;br /&gt;
=== Extruded Acrylic ===&lt;br /&gt;
Has a blue plastic protective layer. The protective layer is reported to be laser safe but etching through it may not be ideal. May have slight thickness variation across the sheet. If precise thickness is important to your design, you may want to work in smaller pieces, measuring each with calipers and adjusting your design before cutting. Goes soft at a lower temperature than cast acrylic. Is 15% cheaper than cast acrylic.&lt;br /&gt;
&lt;br /&gt;
=== Mirrored Acrylic ===&lt;br /&gt;
Mirrored acrylic has a thin reflective layer on one side. The mirror is seen when looking through the acrylic, the other side is a dull matte finish. You cannot cut or etch mirrored acrylic with the reflective side up (towards the laser). You can, however, cut mirrored acrylic with the dull side towards the laser. You can also get some interesting effects by etching the dull side, which removed the mirrored layer from areas.&lt;br /&gt;
&lt;br /&gt;
=== Cement ===&lt;br /&gt;
While many glues may hold acrylic for some time, by far the best option is [https://www.tapplastics.com/product/repair_products/plastic_adhesives/tap_acrylic_cement/130/296?gclid=EAIaIQobChMIt9im_rbB5AIVgv_jBx31xwjwEAQYASABEgLiwvD_BwE acrylic cement]. This is a very thin liquid that wicks into a joint between two pieces of acrylic and dissolves the two pieces to form a very strong molecular bond. The bond requires that the two pieces have good contact between them; the cement does not fill gaps. You should search YouTube for a video on how to use acrylic cement - it is filled with good tips.&lt;br /&gt;
&lt;br /&gt;
You can also use double sided tape or other similar methods.&lt;br /&gt;
&lt;br /&gt;
=== Sources ===&lt;br /&gt;
Tap Plastics is a well known supplier of acrylic. They will cut sheets to size while you wait. They also have a scrap bin that is often filled with cheap pieces of acrylic. The scrap bin will also have pieces of other plastics that are not laser safe. If you have a question about the material, ask their helpful staff if the piece you want to by is acrylic.&lt;br /&gt;
&lt;br /&gt;
== Worbla ==&lt;br /&gt;
&lt;br /&gt;
Feels like plastic, but is laser cutter friendly. One side is sticky. You can heat it with a heat gun and form it like clay. Works great to make costume parts. An internet search for warbla will show a plethora of cool examples.&lt;br /&gt;
&lt;br /&gt;
Worbla activates at 90 C.; I dipped in almost boiling water and was able to easily work it by hand. This is great stuff.&lt;br /&gt;
&lt;br /&gt;
You can buy it at [http://www.cosplaysupplies.com/store.php?s=UN4V CosPlay Supplies.]&lt;br /&gt;
&lt;br /&gt;
You can also [[Make_your_own_Worbla|make your own Worbla]]&lt;br /&gt;
&lt;br /&gt;
= Supplies =&lt;br /&gt;
&lt;br /&gt;
Also see the general [[Supply Sources]] page.&lt;br /&gt;
&lt;br /&gt;
== LaserBits ==&lt;br /&gt;
[http://www.laserbits.com/ http://www.laserbits.com/]&amp;lt;br/&amp;gt;I have not purchased from this company yet. Full line of engraving supplies.&amp;amp;nbsp; They have Color fills and seals. Engrave a piece of acrylic and then use this stuff to fill the engraving with a different color.&amp;lt;br/&amp;gt;[http://www.laserbits.com/laser-supplies/laserbits-pro-color-fill-sealer.html http://www.laserbits.com/laser-supplies/laserbits-pro-color-fill-sealer.html]&lt;br /&gt;
== Marking metal and glass ==&lt;br /&gt;
&lt;br /&gt;
=== Thermark ===&lt;br /&gt;
You spray this product onto a metal or glass surface, laser it, then wash off the part that was not hit with the laser. I saw this used at TSMP on metal and the result was very good. The woman using it recommended it. I got a 6oz bottle of the spray on Thermark Laser Marking Material LMM14 Black from the manufacturers web site [http://thermark.com Thermark] for $62 plus $11 shipping UPS. Not cheap. My settings: 60W laser, 600 DPI, Stucki, speed 5, power 90. &amp;amp;nbsp;Anything with less heat left the image susceptible to scratching off.&lt;br /&gt;
=== Dry Moly Lube ===&lt;br /&gt;
&lt;br /&gt;
(From [http://www.evilmadscientist.com/2013/laser-moly/ Evil Mad Scientist] web site) A can of &amp;quot;CRC Dry Moly Lube&amp;quot; sells for about $10. Clean your metal with isopropyl alcohol. Spray lube on your metal, let dry. Do this three times. They etched with 20-30% speed (laser power unspecified) which showed a big difference. Clean off the excess lube with alcohol. They say the finished image seems tough. I haven't tried this yet.&lt;br /&gt;
&lt;br /&gt;
[http://www.sawmillcreek.org/showthread.php?163305-Forget-Cermark-and-Plaster-of-Paris-try-this Sawmill Creek] also has a riff on this technique. He used &amp;quot;Sprayon LU200&amp;quot;, 2 coats from 4 inches high. 600 DPI, 3% speed and 100% power, air assist and two passes. He cleaned it by spraying with Krud Kutter and letting it sit for a few minutes.&lt;br /&gt;
&lt;br /&gt;
And... one commentator says that Cermark is so easy to use (one coat, water clean up) and fast to laser that the cost of the good stuff is not significant.&lt;br /&gt;
&lt;br /&gt;
== Interesting Projects ==&lt;br /&gt;
Things found on the web that would be interesting to try.&lt;br /&gt;
&lt;br /&gt;
[https://www.pinterest.com/richardaky/laser-cut-joint-ideas/ Self locking joints] of all kinds. Good seeds for brainstorming.&lt;/div&gt;</summary>
		<author><name>BobG</name></author>
	</entry>
	<entry>
		<id>http://makernexuswiki.com/index.php?title=Laser_Cutters&amp;diff=2689</id>
		<title>Laser Cutters</title>
		<link rel="alternate" type="text/html" href="http://makernexuswiki.com/index.php?title=Laser_Cutters&amp;diff=2689"/>
		<updated>2020-10-14T18:45:49Z</updated>

		<summary type="html">&lt;p&gt;BobG: /* Techniques */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Different Machines =&lt;br /&gt;
&lt;br /&gt;
[[Laser Manufacturers]] list (and associated equipment) with any notes we have.&lt;br /&gt;
&lt;br /&gt;
= How To =&lt;br /&gt;
&lt;br /&gt;
* Test to determine the correct focal distance for your laser [https://www.youtube.com/watch?v=Eg6THrEdleo video]&lt;br /&gt;
&lt;br /&gt;
*A [https://www.youtube.com/channel/UCX4wA5KhEX6o8zZkHnPthUQ YouTube channel] with a lot of videos. Specializing in board game enhancements.&lt;br /&gt;
&lt;br /&gt;
= Techniques =&lt;br /&gt;
&lt;br /&gt;
== Wood Staining ==&lt;br /&gt;
&lt;br /&gt;
Use Minwax Water Based Wood Stain to color the wood before cutting. Available everywhere, including Ace Hardware stores. They add tint just like they would with a paint. I ignore the colors in the samples on the shelf. I asked to see the colors in the tint machine, there are about a dozen. For my red, I use the red tint straight, no other colors. The stuff works great. I brush it on with a foam brush, then wipe it with a cotton rag.&lt;br /&gt;
&lt;br /&gt;
== Cut for [[Vacuum_Forming|Vacuum_Forming]] ==&lt;br /&gt;
&lt;br /&gt;
I cut a 3 inch medallion positive to use in laser forming. I cut it out of 6mm Baltic Birch plywood. I set the 3d Stamp mode in the driver to Shoulder 45, Widening 0. This gave great relief. On the 120w laser I used 400 DPI, speed 40, power 90, Stucki, bottom up. I did two passes.&lt;br /&gt;
&lt;br /&gt;
== Fitting Parts to a Sheet ==&lt;br /&gt;
&lt;br /&gt;
=== SVGNest ===&lt;br /&gt;
&lt;br /&gt;
Sometimes you have a lot of irregular shapes you want to cut. Maximizing the use of a piece of material can be tough. The demo on this site is pretty cool: http://svgnest.com/&amp;amp;nbsp;&amp;amp;nbsp; It's open souce, source found here: https://github.com/Jack000/SVGnest&lt;br /&gt;
&lt;br /&gt;
I haven't tried SVGNest yet, but the sample images on his page are impressive.&lt;br /&gt;
&lt;br /&gt;
== Sudo 3D ==&lt;br /&gt;
&lt;br /&gt;
This web site shows a technique to create nice 3D chess pieces. He cuts the front profile then a bounding box. Then he rotates the piece 90 degrees to cut the other profiles. The results are very interesting. [http://imgur.com/a/Rt8kz http://imgur.com/a/Rt8kz]&amp;amp;nbsp;&amp;amp;nbsp; Thanks to Bruce for finding this.&lt;br /&gt;
&lt;br /&gt;
== Working with Inkscape and the Epilog Helix ==&lt;br /&gt;
&lt;br /&gt;
To vector cut/engrave an object or text: place the object in the workspace.  Select the object with the arrow pointer. Then: &amp;quot;Path | Object to Path&amp;quot;. Next, select &amp;quot;Fill and Stroke&amp;quot; and make sure that there is no fill and that lines are solid and 0.001&amp;quot; wide.  The difference between vector cutting and vector engraving is in the driver settings and not the Inkscape file.&lt;br /&gt;
&lt;br /&gt;
To raster engrave an object or text: place the object in the workspace.  Select the object with the arrow pointer. Then: &amp;quot;Path | Object to Path&amp;quot;. Next, select &amp;quot;Fill and Stroke&amp;quot; and make sure that there is a solid fill and no stroke.  The depth of the raster engraving is in the driver settings and not the Inkscape file.&lt;br /&gt;
&lt;br /&gt;
To align objects inside of other objects (e.g. to center vertically): &amp;quot;Object | Align and Distribute&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To both vector engrave and vector cut within one project, select different colors for the cut objects and for the engraved objects.  Make sure to note the full RGB settings for your color(s). In the Epilog driver, the vector settings will apply to any colors that are not specified in the &amp;quot;Color Mapping&amp;quot; tab.  In the Color Mapping tab, put in the settings for the color that you want to engrave.  Make sure to check the box to enable color mapping, select the color (double check that the RGB for the selected color are exactly what you set for the object in Inkscape), enter the settings and use the right arrow by the settings to transfer the settings into the color table.  Any color that is not set in the color settings will use the default vector/raster settings on the main driver tab.&lt;br /&gt;
&lt;br /&gt;
Settings that work well with 3 mm birch plywood are:&lt;br /&gt;
&lt;br /&gt;
- Raster engraving:  raster speed = 30%, raster power = 75%.&lt;br /&gt;
&lt;br /&gt;
- Vector engraving: vector speed = 50%, vector power = 50%, vector frequency = 2500 Hz.&lt;br /&gt;
&lt;br /&gt;
- Vector cutting: vector speed = 20%, vector power = 90%, vector frequency = 2500 Hz.&lt;br /&gt;
&lt;br /&gt;
= Materials =&lt;br /&gt;
&lt;br /&gt;
[https://www.ponoko.com/blog/materials/10-great-materials-for-laser-cutting/ Ponoko] has a fun list of 10 great materials to laser.&lt;br /&gt;
&lt;br /&gt;
== Baltic Birch Plywood ==&lt;br /&gt;
It comes in 5x5 foot sheets 3mm (1/8th inch) for about $18. I have them cut the boards into 24 inch strips so that they fit in my car. I then cut the strips into 24x18 panels at TechShop. The price per panel is about $2.50. It also comes in 6mm sheets. These prices are from 2014 at the now defunct Southern Lumber. We've found a supplier on the web: [http://ocoochhardwoods.com/plywood.php Ocooch Hardwoods] I've found that the glue in this plywood makes it harder to cut than plain wood. There are also some hidden hard spots in the plywood. I have to cut at a slower speed or else I'll have some places that do not cut through.&lt;br /&gt;
*Settings for 3mm 45watt: speed 8, power 90, frequency 500. If the laser is really clean then speed can go up to 12.&lt;br /&gt;
*Settings for 6mm&lt;br /&gt;
Another source for Birch Ply is Mayan Hardwoods In Paso Robles. [http://www.mayanhardwood.com/ http://www.mayanhardwood.com/] Mayan carries a full line of hardwood plywood and regular hardwood lumber by the board foot. They do not have a cutting service for sheets of plywood. They do have a chop saw to cut board down. They have the Baltic Birch in 5' X 5' sheets in both 1/8&amp;quot; (3 mm) and 1/4&amp;quot; (6 mm).&amp;lt;br/&amp;gt;They also have Birch Plywood in 4' X 8' sheets. The 5 X 5 sheets are a much better quality than the 4 X 8 sheets.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;They offer contractor prices&amp;lt;br/&amp;gt;&lt;br /&gt;
*Birch 1/8&amp;quot; 5 X 5 sheets for $17.77&lt;br /&gt;
*Birch 1/4&amp;quot; 5 X 5 sheets for $21.45&lt;br /&gt;
Mayan also has Oak 1/8&amp;quot;; and 1/4&amp;quot; plywood in 4' X 8' sheets.&lt;br /&gt;
&lt;br /&gt;
== Acrylic ==&lt;br /&gt;
Also known as Plexiglas. It comes in several thicknesses; usually specified in English units (1/8, 1/4) but actually manufactured in metric (3mm, 6mm). It is easy to laser cut with a nice finish on the cut edges. Etching also produces nice effects. While extruded is cheaper, we highly recommend cast acrylic for your projects.&lt;br /&gt;
&lt;br /&gt;
=== Cast Acrylic ===&lt;br /&gt;
Has a paper protective layer stuck to it with rubber cement. You can etch and cut through the paper. Has a very consistent thickness across the sheet. Superior etching results. It can warp if left in the sun on the dashboard of a car.&lt;br /&gt;
&lt;br /&gt;
=== Extruded Acrylic ===&lt;br /&gt;
Has a blue plastic protective layer. The protective layer is reported to be laser safe but etching through it may not be ideal. May have slight thickness variation across the sheet. If precise thickness is important to your design, you may want to work in smaller pieces, measuring each with calipers and adjusting your design before cutting. Goes soft at a lower temperature than cast acrylic. Is 15% cheaper than cast acrylic.&lt;br /&gt;
&lt;br /&gt;
=== Mirrored Acrylic ===&lt;br /&gt;
Mirrored acrylic has a thin reflective layer on one side. The mirror is seen when looking through the acrylic, the other side is a dull matte finish. You cannot cut or etch mirrored acrylic with the reflective side up (towards the laser). You can, however, cut mirrored acrylic with the dull side towards the laser. You can also get some interesting effects by etching the dull side, which removed the mirrored layer from areas.&lt;br /&gt;
&lt;br /&gt;
=== Cement ===&lt;br /&gt;
While many glues may hold acrylic for some time, by far the best option is [https://www.tapplastics.com/product/repair_products/plastic_adhesives/tap_acrylic_cement/130/296?gclid=EAIaIQobChMIt9im_rbB5AIVgv_jBx31xwjwEAQYASABEgLiwvD_BwE acrylic cement]. This is a very thin liquid that wicks into a joint between two pieces of acrylic and dissolves the two pieces to form a very strong molecular bond. The bond requires that the two pieces have good contact between them; the cement does not fill gaps. You should search YouTube for a video on how to use acrylic cement - it is filled with good tips.&lt;br /&gt;
&lt;br /&gt;
You can also use double sided tape or other similar methods.&lt;br /&gt;
&lt;br /&gt;
=== Sources ===&lt;br /&gt;
Tap Plastics is a well known supplier of acrylic. They will cut sheets to size while you wait. They also have a scrap bin that is often filled with cheap pieces of acrylic. The scrap bin will also have pieces of other plastics that are not laser safe. If you have a question about the material, ask their helpful staff if the piece you want to by is acrylic.&lt;br /&gt;
&lt;br /&gt;
== Worbla ==&lt;br /&gt;
&lt;br /&gt;
Feels like plastic, but is laser cutter friendly. One side is sticky. You can heat it with a heat gun and form it like clay. Works great to make costume parts. An internet search for warbla will show a plethora of cool examples.&lt;br /&gt;
&lt;br /&gt;
Worbla activates at 90 C.; I dipped in almost boiling water and was able to easily work it by hand. This is great stuff.&lt;br /&gt;
&lt;br /&gt;
You can buy it at [http://www.cosplaysupplies.com/store.php?s=UN4V CosPlay Supplies.]&lt;br /&gt;
&lt;br /&gt;
You can also [[Make_your_own_Worbla|make your own Worbla]]&lt;br /&gt;
&lt;br /&gt;
= Supplies =&lt;br /&gt;
&lt;br /&gt;
Also see the general [[Supply Sources]] page.&lt;br /&gt;
&lt;br /&gt;
== LaserBits ==&lt;br /&gt;
[http://www.laserbits.com/ http://www.laserbits.com/]&amp;lt;br/&amp;gt;I have not purchased from this company yet. Full line of engraving supplies.&amp;amp;nbsp; They have Color fills and seals. Engrave a piece of acrylic and then use this stuff to fill the engraving with a different color.&amp;lt;br/&amp;gt;[http://www.laserbits.com/laser-supplies/laserbits-pro-color-fill-sealer.html http://www.laserbits.com/laser-supplies/laserbits-pro-color-fill-sealer.html]&lt;br /&gt;
== Marking metal and glass ==&lt;br /&gt;
&lt;br /&gt;
=== Thermark ===&lt;br /&gt;
You spray this product onto a metal or glass surface, laser it, then wash off the part that was not hit with the laser. I saw this used at TSMP on metal and the result was very good. The woman using it recommended it. I got a 6oz bottle of the spray on Thermark Laser Marking Material LMM14 Black from the manufacturers web site [http://thermark.com Thermark] for $62 plus $11 shipping UPS. Not cheap. My settings: 60W laser, 600 DPI, Stucki, speed 5, power 90. &amp;amp;nbsp;Anything with less heat left the image susceptible to scratching off.&lt;br /&gt;
=== Dry Moly Lube ===&lt;br /&gt;
&lt;br /&gt;
(From [http://www.evilmadscientist.com/2013/laser-moly/ Evil Mad Scientist] web site) A can of &amp;quot;CRC Dry Moly Lube&amp;quot; sells for about $10. Clean your metal with isopropyl alcohol. Spray lube on your metal, let dry. Do this three times. They etched with 20-30% speed (laser power unspecified) which showed a big difference. Clean off the excess lube with alcohol. They say the finished image seems tough. I haven't tried this yet.&lt;br /&gt;
&lt;br /&gt;
[http://www.sawmillcreek.org/showthread.php?163305-Forget-Cermark-and-Plaster-of-Paris-try-this Sawmill Creek] also has a riff on this technique. He used &amp;quot;Sprayon LU200&amp;quot;, 2 coats from 4 inches high. 600 DPI, 3% speed and 100% power, air assist and two passes. He cleaned it by spraying with Krud Kutter and letting it sit for a few minutes.&lt;br /&gt;
&lt;br /&gt;
And... one commentator says that Cermark is so easy to use (one coat, water clean up) and fast to laser that the cost of the good stuff is not significant.&lt;br /&gt;
&lt;br /&gt;
== Interesting Projects ==&lt;br /&gt;
Things found on the web that would be interesting to try.&lt;br /&gt;
&lt;br /&gt;
[https://www.pinterest.com/richardaky/laser-cut-joint-ideas/ Self locking joints] of all kinds. Good seeds for brainstorming.&lt;/div&gt;</summary>
		<author><name>BobG</name></author>
	</entry>
</feed>