Hey guys, I haven’t given up on gadgeteer yet. I made a little video here of a game that took me 30 minutes to make. I haven’t programed in pressing it too soon or late will end it but its pretty cool I think. I think I might just make it one button and throw in a tunes module. I haven’t programmed the credits in yet either
One idea I had also was to take an .wav and convert the waveforms of it to chip tune noise, but I couldn’t find out how to do it in c# for the desktop, so I gave up, if anyone has any insights, like a way to get to the “sound” of a file, please do tell me
When I buy the next bunch of things, ill get the proper mounting kit that goes with this guys, you wont need to deal with my impromptu things for much longer. A practical thing id like to make is a thing that can control your tv, using 2 buttons somehow(one for on off/mute and one for up a channel). An infrared led is 1$ so why not.
Also: is it possible to burn an iso with netmf? is the ram large enough? I could have one usb with the file and another with the usb flash drive I want iso’d
Mass produce flashdrive OS, cause cheap flashdrives
whats the difference between these:
http://www.robotshop.com/ca/en/net-gadgeteer-g248-accelerometer.html
http://www.robotshop.com/ca/en/ghi-accelerometer-module.html
And lastly: Why does roboshop have lots of stuff out of stock there? I cant even get a LCD
http://www.robotshop.com/ca/en/net-gadgeteer-16x2-lcd-display-blue-back-light.html
Sorry for the text wall, I hate waiting 40 minutes for Vimeo:
Debug.Print("Program Started");
button.ButtonPressed += button_ButtonPressed;
button2.ButtonPressed += button2_ButtonPressed;
cycleLED(true, timy);
}
int timy = 250;//sleep between led
void button2_ButtonPressed(Button sender, Button.ButtonState state)
{
cycleLED(false, timy);//trial and error
timy -= 10;
}
void button_ButtonPressed(Button sender, Button.ButtonState state)
{
cycleLED(true, timy);
timy -= 10;
}
void cycleLED(bool left, int wait)
{//sorry if its actually right moving, its hard to find the direction, and it dosent mater much
if (left)
{
for (int i = 0; i < ledStrip.LedCount ; i++)
{
try
{
ledStrip.SetLed(i - 1, false);
}
catch { }
ledStrip.SetLed(i, true);
Thread.Sleep(wait);
}
}
else
{
for (int i = ledStrip.LedCount -1; i >= 0; i--)
{
try
{
ledStrip.SetLed(i + 1, false);
}
catch { }
ledStrip.SetLed(i, true);
Thread.Sleep(wait);
}
}