Hello everyone, my first post here.
So I'm looking to build a robot car that uses ir sensor to follow the black line on the floor to 3 tables in a room. It would have 5 spots total: 3 desks, 1 resting spot (where it would be charging up bateries) and 1 spot for taking water.
My idea is that it should stand on resting spot, then when some of those 3 desks call them(voice? but that is probably too hard so maybe just a button on the desk that sends signal to the car) it goes to them and then we put empty glass on it (it would have designed spot for it) and it goes to the water dispensary(it would be designed for that car so no worries about that) and it brings it back, after that it goes to the resting spot.
Thats how it should work. I've done few small projects in arduino few years ago so I'm a bit noob but I'm CS student so I can understand it. My question here is is this possible, if it is can someone guide me to some site or anything that will be useful in doing this, I've seen a lot of line following obstacle avoiding robots and I will probably use them but how would I make it remember these spots and go to them when called?
Well, the first thing is that "line following" robots can track a line, but handling branches is automatically a problem. And your arrangement of branches particularly with a "cross" junction is going to be a particular problem.
How did these "line following obstacle avoiding robots" manage to do both at once?
How long should it remember? You may want to consider using an SD card for the memory.
Do you know how many turns of the wheels your car makes? Do you have any method of measuring distance traveled?
If so, you can record the time in milliseconds for each movement and store that data in a separate file for each destination. Then is you ALWAYS start in the same location and follow the same line, your car should get to the requested destination.
Paul
Well they use infra red sensors to guide themselves on the line and then using ultrasonic sensor it will see the obstacle in front of himself and try to turn lets say left first and if there is no obstacle in the way it would go forward and then go right to come back on the line.
Yeah I made that picture in like a minute. I will try to find separate ways so they dont interact with each other but I think that it will still need to be crossroad on water dispensary, right? Maybe if I make 3 separate entrances that would work.