This is a free snippet of code for you to use. Please credit me for this. When I started this I thought it was going to be a nightmare to manually do every character. But I soon realized it was easier to make a list with the instructions that were generated by a quick program I whipped up in Java. The pattern is nothing special. It consists of a loop going through each pixel in a 7*5 matrix and placing the pen up and down. The following is a break down of what a pattern looks like. To start off we have the first 2 characters, Concisting of an identifier to say the character is in this example, A. So we have "A:" as the first 2 characters. The rest of the data in the string is the path it will follow to replicate what you wish for it to say. Below is a table of what everything means: Path Instruction set - Z = Pen Up - X = Pen Down - L = Left 1 Pixel - R = Right 1 Pixel - U = Up 1 Pixel - D = Down 1 Pixel
@computercandy :D Note: I have only had the time to put in letters A-E. It does take time to replicate the letter in to an array of 35 charaters, 35 * 36 is a lot.