Skip to main content

An Easy Mechanical Aside: Sears snowblower retrofit

Sometimes you have to leave the house, and where I live there tends to be a inconsistent amount of snow. Well, I purchased an old Sears Eager-1 5HP 22 inch snowblower (model 536.909400) from a good friend of mine last year, and never got to use it.



Needless to say, it was a bit hard to manage the snow this year, as it's got bad tires (no chains either) and a bad muffler (ouch).  It's got plenty of power, but it doesn't push so well.  Here's why:



Trying to replace these terribly round things proved difficult.  Not available from Sears Parts Direct.  Ebay it is.  Eventually, after much searching, came across these beasts:


11 x 4.00 - 4 Wheel, 2 Ply Tractor Tread, 3/4" ID w/ 2 Crossholes x 3-1/8" Symm
They might look a too big, but the originals (with no tread) are 9.5" dia, and these are 11".  I don't care.  The width is just about right, bore is 3/4", and they've actually got tread!  I won't have to utilize ramming speed anymore.

Then I needed a replacement muffler and gasket.  My elderly lady neighbor will be pleased.  Locating parts wasn't too hard, as the engine is a Tecumseh 143-687022.  Here's the beautiful parts diagram and PNs listing: http://www.partstree.com/parts/?lc=tecumseh&mn=143-687022+Craftsman&dn=1029167169B-EN
Sorry for the blurry muffler.  You can see why it's a bit loud.
The muffler is number 141 in the diagram, and scrolling down...  Tecumseh 33697A
Muffler (Front Discharge).  Shoot.  Not available.  Once again Ebay to the rescue, for both muffler and gasket: http://www.ebay.com/itm/350735034005

Tecumseh muffler and gasket combo.

I should be good to go (crossing fingers).  If there are issues, I'll post an update.

Comments

Popular posts from this blog

Atmega328PB Dev on Linux x64

The Atmega328PB is the greatest thing to come to the Arduino platform since the UNO.  Who wouldn't want more 16-bit PWMs and double all 3 serial protocols? The new unofficial Arduino Mini PB Pro! To get the IDE to support it, follow this guide: https://github.com/watterott/ATmega328PB-Testing Since the JSON file is incomplete for Linux, do the manual toolchain replacement.  This was a little tricky, and there isn't much on the internet on where the toolchain resides inside the Arduino base folder.  Here's what I did to make it work. I downloaded the latest Arduino build, and I will refer to the extracted base directory as "arduino-1.6.9".  Also download the "hardware.zip" and the "Arduino Toolchain (4.9.2)" Linux x64 version from the github links. 1. Replace the toolchain The builtin toolchain resides in "arduino-1.6.9/hardware/tools/avr/".  Rename the avr folder to "avr.old".  Extract the "Arduino Toolc...

PB Pro Mini

No, it isn't Lead, nor is it Peanut Butter.  It is the 'B' version of the prolific ATmega328P microcontroller which started all this maker craziness off! Top view of PB Pro Mini Description This is a minimal microcontroller board with only a voltage reg, crystal, I2C pull-ups, LEDs and the chip itself.  The goal here is to reduce costs while hosting the beefy 328PB! This is based on, and pin compatible with, the Arduino Pro Mini 5v/16MHz from  Sparkfun . Notable, not-so-minor improvements for the 'B' version: 2 UARTs 2 I2Cs (TWI) 2 SPI Qtouch 5 Timers (with OC, IC, and PWM) Everything else is about the same.  You should be aware the clock driver on the chip is a low-power version, but this board and crystal operate at 16MHz just fine at 5V.  The Arduino library I've been using for the PB has been working without a problem! Getting Started You'll need a FTDI Friend  or FTDI Cable  to program this as there is no seconda...

Geode LX800 cash-in

I discovered an AMD Geode processor lurking in a slim client SBC (single board computer) originally for a printer kiosk.  I wonder if I could fit a TinyGentoo  onto its 128MB compact flash card??? Introduction and overview I will utilize crossdev, and avoid any chrooting problems and mismatching CHOST/CFLAGS... Customize the target systems make.conf generated by crossdev. Compile and install packages into runtime tree. [picture of slim client and screen] >>>I'm writing this while my Gentoo system cross-compiles a i486-pc-linux-uclibc toolchain into /usr/i486-pc-linux-uclibc. There are many resources that I had to pull together to get this working: http://en.gentoo-wiki.com/wiki/Tiny_Gentoo  HOWTO guide to install a 5MB system on a USB flashdrive or similar http://www.gentoo.org/proj/en/base/embedded/handbook/index.xml?full=1  Gentoo Embedded Handbook details cross-compiling for various dev boards http://judepereira.com/blog/going-...