Monday, June 10, 2013

Little Wire

As usual, I've been all sorts of busy, with little time to blog about it.

I did recently score a cache of small, nay, tiny AVR chips recently, and my wife had an interest in making something with them (maybe I can get her to guest-blog about it). Anyways, I was at a local hacker meeting this evening and the subject of programming Attinys came up. As it happens, I just built a couple of Little Wire devices, but couldn't remember the name at the time. For some reason, the name makes me think of Jimi Hendrix. It's an Attiny85 based device that combines USBTiny with VUSB. The really cool think about it is that you can make an AVR programmer for roughly $3 USD worth of parts (and considerably more labor, but it's not work if you love it right?)

Here's one of my rat-nested Little Wire AVR-ISP devices:
Well she's walking through the clouds....

The Attiny 85 has a neat feature that I had overlooked until I built this in that it has a built in PLL that lets you run the system off the internal RC oscillator at around 16Mhz. Many other AVR's lack that PLL, and can only run at 8Mhz maximum without an external crystal.

I like saving my AVR Dragon for when I need to debug or do JTAG.

The easiest way to use Little Wire is with avrdude (I copied the avrdude executable and conf files from the arduino instalation into thier own folder). I then run:

avrdude -c usbtiny -p t84 -U flash:W:<path to my hex file>:i

To burn AVRStudio built hex files into (in the above case) an Attiny 84 chip.


--P

Thursday, May 9, 2013

Random updates.


  • My robot project has stalled somewhat, I just need to set aside time for it. It's been on the verge of awesome for several months.
  • I'm working on a new website, that I hope will let me be more involved with the maker/tinkerer community. 
    • Not ready for prime time yet
    • I've never really done heavy website work before, if Drupal/PHP/css can even be considered "heavy". 
    • rest assured, unwashed masses, this blog isn't going away. I still have a goal of one post per week, though rarely ever meet that goal. 
  • I recently invested in a Laser Cutter, that should, along with my CNC mill/printer, really let me make stuff I never thought possible a few years ago.
  • I'm helping my wife with her first microcontroller project, yes it involves blinking LED's :)
  • I'm currently building my own "Little Wire" AVR programmers, I want to make some quick and dirty no-fuss bulk programmers maybe.
    • I got the idea for this post when going back to my Indictron post, to check how I wired up the USB (I can't get enough detail from the blog pictures, I'll have to dig into my private notes.) I still use the build monitor at work, though it's been having PC software side issues lately.
--P

Tuesday, April 23, 2013

Eggbot and sparking the inner geek in kids.

For the past few years, my wife has taken on the task of organizing our local "spring party", usually themed around eggs, and targeted at preschool and younger elementary school-aged children in the neighborhood. This year we were vacationing in beautiful Costa Rica over the Easter break from school so we held the traditional party a little late - this past weekend. It worked out great because we got a lot of eggs at fire-sale prices!

My wife has an engineering background, and she's getting ready to go back to school for a Masters degree in education, so she can't help but mix the two passions. This year's party was about science, engineering, and of course, eggs:

That's my gal, droppin science!

Wednesday, April 17, 2013

TechShop

I learned today that TechShop RDU is closing.

I live in Cary, North Carolina, part of the "Research Triangle" known for the prevalence of Tech and Biotech companies. It's part of why I decided to relocate here almost 8 years ago, from the Virginia suburbs of Washington.

I'm saddened by this turn of events, even though I never did anything to help TechShop stick around. I liked the fact that it was here, even if the pricing of it was a little higher than I could justify spending on a hobby.

I should resolve to try harder to be involved in local hacker efforts. It's not been a matter of desire, but of free time.

--P

Monday, March 25, 2013

CNC controller case.

Though I don't think I'll have Apple banging down my door to design their next iHipTM device, I'm slightly proud of the fact that I turned this:


Into this:

Wednesday, March 20, 2013

Stainless steel is tough to work with.

Not only does stainless steel foil not cut well, stainless steel plates do not solder well with basic lead-tin solder. resin flux, and a cheapo 25 watt iron.

From the Internet, I have learned that you either need hydrochloric acid, or silver based solder and a much higher wattage iron or even a torch. I don't like using or keeping dangerous chemicals, and HCl is fairly high up in the danger scale.

I attempted to use a butane lighter to heat the stainless steel which I had sanded/roughed after my first failed attempt with an iron. The lead solder formed a ball and slid around on the surface of the plate, resembling mercury. It refused to bond, however.


This is for a probe attachment for my CNC. I've decided to skip the soldering, I will just bend at right angle in a new strip of stainless, and drill a screw hole and attach a lead wire to the screw.

--P

Wednesday, March 13, 2013

Seeding the standard C random number generator on AVR chips.

The rand() function in C gives your a pseudo-random number generator. To purists, it's got a lot of flaws, but I'm glossing over that for this post. In many cases, it is "good enough" to get the job done. A lot of times, I don't care that the distribution is not strictly even when you do something like.

int foo = rand() % 10;

Many times, just a rough approximation like above is enough to make something "feel random".

The rand() function uses a formula that calculates new "random" numbers based on a formula that includes the previously generated value(s).

So where do you get the "starting point" for the first number in the formula?

The standard C library maintains an internal state for the random number generator, and you can "seed" this state with the "srand(unsigned int)" function.

So what do you pass to it?

Well for any given "seed", you will generate the same sequence of pseudo-random numbers. For instance:

srand(42);
int a = rand() % 10;
int b = rand() % 10;
int c = rand() % 10;

will yield the same sequence for a,b, and c every time it is run. What if that is undesirable? It's almost like you need a random number to seed the random number generator, a "catch 22".

On desktops, seed values are often taken from some system time register, on Linux systems, it's sometimes generated from a timer that measures the time between a user typing keys.

On microcontrollers, you often don't have inputs, and system up-time timers don't work because the time will likely have the same value in the power up initialization sequence.

It can be difficult to get these miracle computing machines to be non-deterministic when you want them to.

A trick you may be able to use, depending on your setup is to use the ADC (analog digital convert) built in to most AVR's (on other brand) micros to read a voltage level on a pin that is "floating" or otherwise not tied well to a particular voltage. Here's a short example of how that looks on an AtTiny85:

#include <avr/io.h>
#include <stdlib.h>


void setup_seed()
{
unsigned char oldADMUX = ADMUX;
ADMUX |=  _BV(MUX0); //choose ADC1 on PB2
ADCSRA |= _BV(ADPS2) |_BV(ADPS1) |_BV(ADPS0); //set prescaler to max value, 128

ADCSRA |= _BV(ADEN); //enable the ADC
ADCSRA |= _BV(ADSC);//start conversion

while (ADCSRA & _BV(ADSC)); //wait until the hardware clears the flag. Note semicolon!

unsigned char byte1 = ADCL;

ADCSRA |= _BV(ADSC);//start conversion

while (ADCSRA & _BV(ADSC)); //wait again note semicolon!

unsigned char byte2 = ADCL;

unsigned int seed = byte1 << 8 | byte2;

srand(seed);

ADCSRA &= ~_BV(ADEN); //disable ADC

ADMUX = oldADMUX;
}

In my case, PB2 was connected to a resistor, which was then connected through an LED to ground. When the pin is in a "high z" state (eg, not driven by the CPU), this approximates "floating" close enough to give me nice erratic values. Notice that I use the "low bits" of the ADC. The low bits represent smaller voltage differences, and exhibit greater variance, so they're more likly to swing a lot on a floating pin.

I'm not sure if it was really needed to scale the IO clock down by 128x, I just added it for flourish, thinking more time would mean more variance. I have no scientific evidence that is true though.

Enjoy!

--P

Thursday, March 7, 2013

Updates, random bits.

Here are some things in the works for future posts.

  • My Zen Toolworks CNC is nearly complete for CNC functionality. I have all the parts and materials for 3D printing, I just haven't tired to do it yet, I'm still mastering CNC functionality, and tweaking my Marlin based firmware as I realize I want particular functionality.
  • I have a complete failed project started and scrapped in the space of two weeks, a record for me. I'll write it up later, but one of my goals was "to succeed, or else fail fast", mission accomplished. I did learn *a lot* though, so it was not wasted time at all.

Here are some things I learned recently:

Wednesday, February 20, 2013

Excuse me sir, your voxels are showing.

This occurred to me today, as I listened to a podcast at my day job, and the word "voxel" was mentioned, and explained to someone on the show.

Let's play a game.

pixel --> "picture element"
voxel --> "volumetric pixel" or "volumetric picture element"

But 2-dimensional  is to picture as 3-dimensional is to .....volumetric picture?

That just doesn't feel right. Imagine saying, "Hey Sven, that's a nice volumetric picture of The Battle of Gettysburg you built in your dining room, how did you get your wife to agree to that?".

I submit that 2D is to picture as 3D is to model. I don't remember what I got on my verbal SAT, other than it was respectable, and surprising to linguistically challenged dude like myself, but I think that would pass as a feasible answer.

I'd like to propose that henceforth, a three-dimensional counterpart to the pixel be known as a moxel, "model element".

They don't call me Pedantite for nothin'

--P

[UPDATE] After they read this post, ETS contacted me to inform me they are retroactively reducing my verbal SAT score.


Wednesday, February 13, 2013

Milling Hotend Nozzle Mount

How's *that* for a racy post title!

My Zen CNC is fairly usable now, so I've turn my attention to getting the 3D printer functionality. One glaring task is how to mount the nozzle to the extruder. You know what they say, the 7th time's a charm:

I'm not 100% sure that the most recent one will work, either. But I did actually have a lot of fun designing and figuring out how to design and mill parts. The parts above are ordered chronologically from left to right. #5 and #6 were milled using a cheapo 1/8" "Roto-zip" bit, since I was worried about the wear and tear on my one and only carbide end mill. I also experimented with various feed rates. #5 was milled at 1000mm / minute horizontal feed rate, with the cheap bit. I could actually see the bit flex as it moved.

The result was not pretty, you can see how bad it looks. I also think the bit was probaly not the appropriate shape for the job, cheapness aside.

I'm pretty pleased with the final one:

Ugg, what's up with the shadow? Would it kill me to take a decent picture?

The "burrs" on the edges are non-structural, and rub off with your fingernail, I believe its just an artifact of MDF.

--P



Thursday, January 31, 2013

CNC update

I hit a milestone with my CNC project tonight, I made my first cut!

Here's the current state of it configured for milling:



I'm using the Zen Toolworks 12x12 , F8 edition. The F8 edition has an extended Z-axis travel on the gantry, which is needed to be able to use the device for 3D printing. One thing I didn't realize initially were that: 1) configured as a milling machine, the spindle will not reach down to the bed, and 2) the extra Z axis travel does not benefit milling as much, because the gantry clearance is one of the limiting factors. The two possible approaches to address the first issues are to either re-work(ie invent your own) the spindle mount to lower it close to the bed, or to build an elevated platform as your new work area. I decided to do that because it reportedly reduces error due to frame torsional forces. I could always build a new mount and remove the table. The Zen is pretty flexible in that way, a good deal of the design can be up to you.

Tuesday, January 15, 2013

CNC progress pic.

Just a quick shot of my cnc build in progress, I'll post more about it later. I had a slow start waiting for all the parts, I think I'll avoid ordering big stuff around Christmas next year.
Tonight I'm working on end stops and the y-axis of thr Zen Toolworks chassis.

Thursday, January 3, 2013

New Project - CNC/3D printing

While physical computing has captured my fancy the past few years, one thing that seems to have frustrated me is the physical construction for my projects. I have a degree in Mechanical Engineering, though I went into Software Engineering professionally, so that struck me as odd. I think I've grown accustomed, spoiled even, on the fantastic availability of free and low cost tools available in the software world. I'm used to having as powerful tools to develop software as a hobby as the professionals use. Not so with hardware. Things are getting better though.

I've decided to take it to the next level, and I'm investing in a small CNC that will also be capable of 3D printing. I'll document my progress on ByteCruft. (My robot project is not stalled, but I'm putting the CNC project first, since there's a long lead time with getting up to speed.) I currently know very little about milling beyond what I remember from school almost 20 years ago. I expect my progress to go faster than my typical  'epic' level project, since I'm focusing less on trying to do lot of design myself. I'm mostly cherry picking various kits and packages and making them work together.

Wednesday, December 5, 2012

Zaethira Progress.

I've been doing a lot lately. Often, when I've had a choice between posting something, and working on something, I've chosen the latter. I noticed recently that I missed the month of November entirely, my bad! To top it off, my last post was a bit of a crotchety vent about haters, and we all know haters are gonna hate.

I've been working a lot on my robot autonomous vehicle, Zaethera. I've also got a ton of other projects in various stages of planning, that I'm keeping mum about for now.

In my last post, I posted a color-coded high level view of the architecture. There's a lot more green now, I'll post an updated chart in my next post. I don't think I dropped any subsystem from the original, and much of the left-hand side is built assembled, and ~50% coded.


I'm beginning to enjoy this electronics hobby thing.
The parts in the Sparkfun box in the back are the rear/side
IR proximity sensors, and the compass module. Near the top,
on the red, black, and blue wires is the IR remote control receiver.

Thursday, October 25, 2012

Rant time, a very special episode of Bytecruft.

It's rant time..

I know it's so usual for us nerd/engineering types to get cranky online about something, so this may come as a shock....

I came across a post today on Hack a Day today about a guy who got the .Net Micro Framework running on a STM32F4 Discovery Board, something I have done, and briefly mentioned here.

Original link.

Mr [Singular Engineer] did a fantastic write up by the way, I wish that had existed when I was trying to get up and running, it sounds like his experience was slightly smoother than mine.

Anyways, as I read the comments section on the Hack a day article, I felt compelled against better judgement, to reply to some of the general criticisms against the .Net Micro framework. As my reply grew in the volume of prose, I thought, maybe it would be better presented on my blog. So here ya go:


Saturday, October 20, 2012

Robot update.

I haven't posted in a while. The lulls usually happen when I'm busy. I've failed you, my adoring fans, and for that I blame... um squirrels..

I have been happily jamming away for the past couple months on my robot, Zaethira. (Which is a concatenation of my kids' and wife's names, and happens to sound geek awesome, the geekiness of the whole is greater than the geek sum of the parts).

Anyway, I could have written a 20 page blog post about how things are coming along, but I think a diagram does a much better job. I made the below because I needed to get a handle on where I needed to focus and what I planned to do. This diagram made me realize how flipping complex this project is.


Thursday, September 13, 2012

Introducing Zaethira - One word: Robots

So I've finally gotten around to one of my dream projects. I'm making a robot.

I'm relinquishment a little bit on my must-do-everything-myself approach I've taken to many of my projects, and I'm using some kits and some pre-fabricated circuit boards. After my experience on my Bench Power Supply, I wanted to boost my odds of getting results and focus on the fun stuff. I really think for this project, despite being something very physical, the software is going to be the most fun part, I am a software guy at heart, after all.

Monday, September 3, 2012

Shortest post ever.

I'm not sure why I have not tried to build a robot sooner. Already the most fun I've ever had on an electronics project, and it's still very early in development.

That is all.

--P

Wednesday, August 22, 2012

Rudimentary benchmarks for the Parallax Propeller.


I'm in the early stages of a big new, ambitious project, that I've wanted to do for a long time. I've got some Propeller chips from Parallax that I've had sitting around for quite a while, so I thought I'd try to incorporate the 'Prop' as one of the many microcontrollers this project will have.

The Propeller is quite a unique processor, I'd even so far as to say it's design is exotic. What it lacks in specialized hardware found in most other MCU's it makes up for with having 8, that's eight, cores. You want I2C, you just dedicate a core to doing it in software. One of the few exceptions is something not found on many other MCU, it's has dedicated video generation circuitry.

A custom language, "Spin" has historically been the primary high level language used on the chip. Parallax has designed into the ROM a byte-code interpreter. You can also use assembly, especially for performance-critical code. C/C++ had for years been an experimental language on the chip, but that has changed in the past year or so. There is a full fledged GCC port for it. I decided I'd give it a try.

Monday, August 20, 2012

Seeeduino Stalker Waterproof Solar kit review PART 2

In my last post, I covered the Seeeduino Stalker board itself, I wanted to get into some of the other aspects of the kit.

The hardware (continued)