What's on your Ctrl+V?

/* James Bonham, P09273365, Challange 3: please refure to the bullet points
*/
#define NUM_REP 6

int move_time, turn_time;
task main()
{
turn_time = 600; // sets time of turn
move_time = 800; // inital turn time

OnRev(OUT_C);
Wait(840);
Off(OUT_C);
repeat(NUM_REP)
{
SetSensor(SENSOR_1,SENSOR_TOUCH); // defines sensor
OnFwd(OUT_A+OUT_C);
until (SENSOR_1 == 1); // replaced the first wait
OnRev(OUT_A+OUT_C);
Wait(move_time);
Off(OUT_C);
Wait(turn_time);
move_time -= 100; // subtracts move time
turn_time /= 2;
}
OnRev(OUT_C);
Wait(840);
Off(OUT_C);
}

I have been playing with my lego robots again ^.^
 
While Rooney was pondering the fall-out from several hours of high-level talks at Old Trafford, a 40-strong group of United supporters, many wearing balaclavas and hooded tops, had travelled to his home in Prestbury, Cheshire to warn him off any move to Manchester City. Witnesses reported a gathering outside his house, with a banner reading "If you join City you're dead".
 
EGLL 220713Z 2207/2312 25010KT 9999 SCT035 TEMPO 2207/2208 8000 BECMG 2218/2221 19013KT BECMG 2301/2304 7000 -RA BKN012 TEMPO 2302/2305 4000 RA BKN009 BECMG 2304/2306 25012KT 9999 BKN016
 
Back
Top Bottom