Archive for October, 2009
Gasifier Experimentation
by Moogle on Oct.18, 2009, under Stuff
so i made a gasifier today :)
made it as small as possible

Once I put the fan on top you could light the smoke that came out of the pop bottle :)

more photos later when everything cools off
Video Of xBox360 game
by Moogle on Oct.14, 2009, under Game Programing
do to popular demand here is the latest video of the pre Alpha of Dont Poop on my house
Pocket Avr Programer Broke and fixed again
by Moogle on Oct.14, 2009, under Arduino / AVR
I managed to break the little usb connector off my pocket avr programmer
so i fixed it :)
Now water proof lol
Humidity sensor + arduino + VB.net
by Moogle on Oct.14, 2009, under Arduino / AVR
So I found a TDK CHS humidity sensor in a old router power supply and I wired it up to an arduino
The arduino then gets the reading from the sensor and outputs it to the serial. Vb.net reads the serial and make a graph in real time :)
What showed after I breathed on the sensor
Tiny Tiny Bread in Mooglelib.lbr
by Moogle on Oct.11, 2009, under Arduino / AVR
Leave a Comment more...Illuminato Hidden Feature :)
by Moogle on Oct.10, 2009, under Arduino / AVR
After looking at the schematic a bit I realized that the bling can be controlled directly with Port 42!
On top of that it has PWM capabilities :)
Code running in this video
void setup()
{
for (int x=0; x< 43; x++)
{
pinMode(x, OUTPUT);
digitalWrite(x, LOW);
}
}
void loop()
{
for (int x=0; x< 255; x+=1)
{
analogWrite(42, x);
delay(2);
}
delay(100);
for (int x=255; x> 0; x-=1)
{
analogWrite(42, x);
delay(2);
}
delay(100);
}
A better Charger :)
by Moogle on Oct.08, 2009, under Arduino / AVR
Based on the Sparkfun lipo charger
http://www.sparkfun.com/commerce/product_info.php?products_id=726
I designed this board for use in future projects :)
Here is the schematic
Tiny Tiny Bread update
by Moogle on Oct.08, 2009, under Arduino / AVR
Wiki Is now more secure, spam bots attacked it, you need to register to add info now.
I've Been HackADayEd!!
by Moogle on Oct.08, 2009, under Stuff
As a result the theme has been removed to reduce bandwidth usage and lower load times (it will return once traffic goes down)
WOOT! I’ve been HackADayEd!!!
Crazy Idea Ethernet ISP adapter :)
by Moogle on Oct.05, 2009, under Arduino / AVR
With this you can have ethernet on any device you have that has a free ISP port :)
Some details to work out still







