Monday, December 22, 2008

12/22

list of things i have to do when i get back from vacation:
-put a code on the roomba
-write a code
-change/fix the code i wrote

Wednesday, December 17, 2008

Tuesday, December 16, 2008

12/16

today i looked at codes for the roomba and i am starting to learn how to write them. next class i plan to write my own code and test it.

Monday, December 15, 2008

"the big picture"

my overall goal is to create a program in Interactive C and program a programming block. with it.
the first step in doing this is to learn the language and make a few sample projects.
second i have to put a programming block together with 2 motors. my set back is i cant find 2 motors. after i complete this part of my project i have to test the program, and make small changes to make it work right. at some point i would like to program for the Roomba.

Thursday, December 11, 2008

12/11

today, i need to put one my the programs Ive all ready written on to a programming brick with two motors since my programss use 2 motors, and two wheels, a wheel for each motor. i need to test my code and see what i can change or fix to make it better.

Friday, December 5, 2008

daily writing 12/5

what did i accomplish this week?
This week i started using interactive C. I learned a few basic commands such as forward, backwards, sleep and off. I also learned how to start the code. I made a couple sample codes but i haven't put them on a programming brick yet.

what do i need for next time?
Next time i will need a programing brick with 2 motors to out my code on and test. After i test my codes, i will need to fix or change them. i also need to put the codes i wrote up online.

Tuesday, December 2, 2008

Today 12/2

Today i created a sample program in interactive C.

void main()

{
fd(1);
bk(2);
printf("heyy\n");
sleep(3.0);
bk(1);
fd(2);
sleep(5.0);
fd(1);
bk(2);
printf("bye\n");
off(1);



}

Monday, December 1, 2008

This week 12/1-12/5

This week my goal is to learn interactive C. Today i want to start to find sources were i can learn the language, and possibly start learning it. For the rest of the week i want to learn basic parts of interactive C. Hopefully by the end of the week i will know the basics of Interactive C.