Off Topic > Creativity
Lego Stuff
Shadowed999:
wow guys stop being lazy and post stuff ;(
ArmyUnit:
The legs are rather bad (and I don't blame you, legs can be hard). The torso is neat though.
--- Quote from: Shadowed999 on August 20, 2012, 01:38:18 AM ---wow guys stop being lazy and post stuff ;(
--- End quote ---
kk
These are all pretty old, and I might have posted some before:
Alien Spaceships ftw
Monster mech thing
Based off of the Mechwarriors MadDog/Vulture
I dunno
Based off of the Mechwarriors MadCat Mk II
RockRaiders mining mech.
Sorry for the low quality pictures :S
Shadowed999:
1. Yeah, Im ordering technic pieces for the legs
2. Army, post more low quality pictures more often. The Rock Raiders mech is my favorite since Rock raiders was my third lego set after Life on Mars and Arctic.
Spartan923:
Guys, give this thing a head, I dont know what to do for it
aludane:
Lego NXT 2.0 Brick running NXC/NBC
--- Code: ---// Text to sound.
string Message = "A"; //The message.
safecall inline void ProcessMessage()
{
int Incr = 0;
string Display;
string Overall;
if(StrLen(Message) < 40)
{
while(Incr <= StrLen(Message))
{
Display = SubStr(Message, Incr, 1);
TextOut(0, LCD_LINE3, Display);
switch(Display)
{
case "A":
PlayTone(200,300);
break;
case "B":
PlayTone(205,300);
break;
case "C":
PlayTone(210,300);
break;
case "D":
PlayTone(215,300);
break;
case "E":
PlayTone(220,300);
break;
case "F":
PlayTone(225,300);
break;
case "G":
PlayTone(230,300);
break;
case "H":
PlayTone(235,300);
break;
case "I":
PlayTone(240,300);
break;
case "J":
PlayTone(245,300);
break;
case "K":
PlayTone(250,300);
break;
case "L":
PlayTone(255,300);
break;
case "M":
PlayTone(260,300);
break;
case "N":
PlayTone(265,300);
break;
case "O":
PlayTone(270,300);
break;
case "P":
PlayTone(275,300);
break;
case "Q":
PlayTone(280,300);
break;
case "R":
PlayTone(285,300);
break;
case "S":
PlayTone(290,300);
break;
case "T":
PlayTone(295,300);
break;
case "U":
PlayTone(300,300);
break;
case "V":
PlayTone(305,300);
break;
case "W":
PlayTone(310,300);
break;
case "X":
PlayTone(315,300);
break;
case "Y":
PlayTone(320,300);
break;
case "Z":
PlayTone(325,300);
break;
case " ":
PlayTone(490,300);
break;
default:
PlayTone(400,300);
break;
}
if(Incr == StrLen(Message))
{
PlayTone(600,600);
TextOut(0, LCD_LINE3, "Finished.");
}
TextOut(0, LCD_LINE4, Message);
Wait(1000);
Incr = Incr + 1;
}
}
else
{
TextOut(0, LCD_LINE4, "Str too long.");
}
}
task main()
{
ProcessMessage();
Wait(5000);
}
--- End code ---
My first mini program for the device. It uses none of the Lego sensors yet. But I plan on integrating them in other projects. Currently the code runs very fast. I also inserted pauses to stop it from running too fast.
Anyone else got a modded NXT brick?