Saturday, Feb. 27th, 2016
I was out of town for a few days working at a customer's location. This gave me some time to think about the issues of the robot steering and also how to make the L.E.D. panel by the buttons work.
So, today being Saturday, and me not really having anything pressing to work on, I started on the LED testing. I also found that the Motion Sensor was mounted up there and so I took that out and tested it too.
The panel where the keypad is also contains a row of 8 red LED's and one green LED. The green one is for power on, so that one will be fairly easy to work with. The other 8 however will have to be tied to different functions and used when necessary. They have to be in a matrix like the keypad (kind of) and so I got started with a test routine to see if I could make them work.
After some testing with the meter, I determined that they were all on one ground line and I separated the signal lines for each of them so that I could put them into an array of sorts in the code. To make an LED work, you have to tie one end to a pullup resistor to make sure it has only the voltage necessary to work and not so much that you will burn it out, but it is a diode so you have to put them in the right order.
I made a series of connections on a small breadboard to make sure the ideas would all work out. If they do, then I can solder all the connections to a small circuit board and place it inside the robot's head.

I was able to connect everything on this little breadboard with 8 1k Ohm resistors to test up the lights. In the picture you can see the 1st red light is on. That was encouraging so I wrote some more code and got all of them to work. You can see that in the video below.
How about that cyclon pattern with the LED's?!
So, having the LED's working, I decided to test the motion sensor. This sensor came with the Hero Jr. robot and was made somewhere between 1982-1984. I mention that to say that it might not be up to the standards of the current technology and I will probably mount other sensors on the robot later after the original work properly.

This is a pretty good shot of the Colorado Electro-Optics OSM motion sensor.
The good thing about the sensor is that there are really only 3 connections. Power, ground, and the signal line. In this case I used a digital signal line since there was one provided. There seems to be a connection for an analog sensor as well, and I might try testing that at some point to see if I can gauge distance with it, but there are much more efficient sonar ranging sensors now that I think sticking with the digital on/off one was easier to replicate the original functionality. I checked the circuit board and wiring on the original and that is what it used.
I connected the 3 wires and then created a little code to see if I could get it to detect motion when I passed my hand over it or just moved about.
You can see from the shot on the right above that on the computer, it detected motion!
So, today being pretty successful, I will post the code for the two projects here that I used to test with and then go see about designing a circuit board for the LED's possibly for tomorrow's project. Once those are done, I might be able to mount the control Arduino in the head and mount the head back on the robot!
Code for the LED Testing:
/* This is a test for the LED's on the front panel of the Hero Jr. Robot.
The pins will all be connected from the main board where they are mounted
to a small perfboard with some 1k Ohm resistors and then routed to the
Arduino on pins 22-36 (even).
GSS 2/27/2016
*/
int led0 = 22;
int led1 = 24;
int led2 = 26;
int led3 = 28;
int led4 = 30;
int led5 = 32;
int led6 = 34;
int led7 = 36;
int state0 = 1;
int state1 = 1;
int state2 = 1;
int state3 = 1;
int state4 = 1;
int state5 = 1;
int state6 = 1;
int state7 = 1;
int state;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(led0, OUTPUT);
pinMode(led1, OUTPUT);
pinMode(led2, OUTPUT);
pinMode(led3, OUTPUT);
pinMode(led4, OUTPUT);
pinMode(led5, OUTPUT);
pinMode(led6, OUTPUT);
pinMode(led7, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("LED Test...");
testLEDs();
delay(4000);
Serial.println("Cylon LED testing...");
cylon(6);
}
void led(int number1) {
switch (number1) {
case 0:
state0 = !state0;
digitalWrite(led0, state0);
break;
case 1:
state1 = !state1;
digitalWrite(led1, state1);
break;
case 2:
state2 = !state2;
digitalWrite(led2, state2);
break;
case 3:
state3 = !state3;
digitalWrite(led3, state3);
break;
case 4:
state4 = !state4;
digitalWrite(led4, state4);
break;
case 5:
state5 = !state5;
digitalWrite(led5, state5);
break;
case 6:
state6 = !state6;
digitalWrite(led6, state6);
break;
case 7:
state7 = !state7;
digitalWrite(led7, state7);
break;
}
}
void cylon(int times) {
digitalWrite(led0, 1);
digitalWrite(led1, 1);
digitalWrite(led2, 1);
digitalWrite(led3, 1);
digitalWrite(led4, 1);
digitalWrite(led5, 1);
digitalWrite(led6, 1);
digitalWrite(led7, 1);
for (int i = 1; i < times; i++){
digitalWrite(led0, 0);
delay(100);
digitalWrite(led0, 1);
digitalWrite(led1, 0);
delay(100);
digitalWrite(led1, 1);
digitalWrite(led2, 0);
delay(100);
digitalWrite(led2, 1);
digitalWrite(led3, 0);
delay(100);
digitalWrite(led3, 1);
digitalWrite(led4, 0);
delay(100);
digitalWrite(led4, 1);
digitalWrite(led5, 0);
delay(100);
digitalWrite(led5, 1);
digitalWrite(led6, 0);
delay(100);
digitalWrite(led6, 1);
digitalWrite(led7, 0);
delay(100);
digitalWrite(led7, 1);
digitalWrite(led6, 0);
delay(100);
digitalWrite(led6, 1);
digitalWrite(led5, 0);
delay(100);
digitalWrite(led5, 1);
digitalWrite(led4, 0);
delay(100);
digitalWrite(led4, 1);
digitalWrite(led3, 0);
delay(100);
digitalWrite(led3, 1);
digitalWrite(led2, 0);
delay(100);
digitalWrite(led2, 1);
digitalWrite(led1, 0);
delay(100);
digitalWrite(led1, 1);
}
digitalWrite(led0, state0);
digitalWrite(led1, state1);
digitalWrite(led2, state2);
digitalWrite(led3, state3);
digitalWrite(led4, state4);
digitalWrite(led5, state5);
digitalWrite(led6, state6);
digitalWrite(led7, state7);
//Serial.println(">");
}
void testLEDs () {
Serial.println("Test L E Ds");
digitalWrite(led0, state0);
digitalWrite(led1, state1);
digitalWrite(led2, state2);
digitalWrite(led3, state3);
digitalWrite(led4, state4);
digitalWrite(led5, state5);
digitalWrite(led6, state6);
digitalWrite(led7, state7);
// #1
digitalWrite(led0, 1);
delay(1000);
digitalWrite(led0, 0);
delay(1000);
digitalWrite(led0, state0);
// #2
digitalWrite(led1, 1);
delay(1000);
digitalWrite(led1, 0);
delay(1000);
digitalWrite(led1, state0);
// #3
digitalWrite(led2, 1);
delay(1000);
digitalWrite(led2, 0);
delay(1000);
digitalWrite(led2, state0);
// #4
digitalWrite(led3, 1);
delay(1000);
digitalWrite(led3, 0);
delay(1000);
digitalWrite(led3, state0);
// #5
digitalWrite(led4, 1);
delay(1000);
digitalWrite(led4, 0);
delay(1000);
digitalWrite(led4, state0);
// #6
digitalWrite(led5, 1);
delay(1000);
digitalWrite(led5, 0);
delay(1000);
digitalWrite(led5, state0);
// #7
digitalWrite(led6, 1);
delay(1000);
digitalWrite(led6, 0);
delay(1000);
digitalWrite(led6, state0);
// #8
digitalWrite(led7, 1);
delay(1000);
digitalWrite(led7, 0);
delay(1000);
digitalWrite(led7, state0);
}
Code for the Motion Sensor Testing:
/*
Digital Read Testing
Reads a digital input on pin 3, prints the result to the serial monitor
This example code is in the public domain.
GSS 2/27/2016
*/
int ledPin = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
pinMode(ledPin, OUTPUT);
// make sure the LED is not on by default.
digitalWrite(ledPin, LOW);
}
// the loop routine runs over and over again forever:
void loop() {
// if the digital value is high, turn on the LED and notify the serial monitor:
// the value will be high if motion is detected...
if (digitalRead(3) == HIGH) {
digitalWrite(ledPin, HIGH); // turn on the yellow LED
Serial.println("I detect motion...");
}
else {
// if no motion is detected...
digitalWrite(ledPin, LOW); // turn off the yellow LED
Serial.println("...");
}
delay(1); // delay in between reads for stability
}