Offline
Full Member
Karma: 0
Posts: 161
|
 |
« on: March 11, 2012, 01:39:36 am » |
Hello everyone. First of all, I'm new at this and this is an amazing technology and supporting community!  For the last month I've been reading stuff and working on my 1st project and the amount of info given here is great. Now for my question (I've looked around but wasn't able to find answers): Using the Knob sketch I'm building a Follow Focus for my camera. what I'm trying to figure out is how be able to add a "Record" function to the code. What I mean is to have the ability to to push a button telling to Arduino to record my potentiometer data (as I move it, the servo of course moves and changes the focus on my camera), than "stop" the recording and play it back causing the servo to repeat (once) the movement and timing of my "focus pulling". I would appreciate any advice, or if someone could point me to a relevant link.
|
|
|
|
|
Logged
|
|
|
|
|
New Jersey
Online
Edison Member
Karma: 26
Posts: 2455
|
 |
« Reply #1 on: March 11, 2012, 07:44:36 am » |
Look at arrays. As a precursor, write a sketch with an array initialized with some potentiometer values. Iterate through them to make the servo move to different positions. Don't forget to allow some time between each or the servo will appear to immediately go to the last value.
Then you need to adapt that code to take potentiometer values and store them in the array when you set a switch to tell it to. Be careful - it will be easy to overflow the bounds of the Arduino's memory if you don't check your array bounds.
Does the playback have to be at the same speed that you did it? If so, it's going to be a little more complicated.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Full Member
Karma: 0
Posts: 161
|
 |
« Reply #2 on: March 11, 2012, 08:03:12 am » |
Hey wildbill, thanks for the reply. Indeed I want the playback to be at the same speed as the real event... This seems too complicated for my stage at this  As for the first part of your answer, is there a sample of a sketch that utilizes the technique you mentioned? I'm a real noob at this...
|
|
|
|
|
Logged
|
|
|
|
|
New Jersey
Online
Edison Member
Karma: 26
Posts: 2455
|
 |
« Reply #3 on: March 11, 2012, 08:48:09 am » |
Here's the knob sketch so adjusted: #include <Servo.h> Servo myservo; // create servo object to control a servo int potpin = 0; // analog pin used to connect the potentiometer int val; // variable to read the value from the analog pin int potvalues[10]={100,900,200,800,1000,50,900,500,0,1023};
void setup() { myservo.attach(9); // attaches the servo on pin 9 to the servo object } void loop() { // val = analogRead(potpin); // reads the value of the potentiometer (value between 0 and 1023) - left in so you can see what replaced it for(int i=0;i<10;i++) { val = map(potvalues[i], 0, 1023, 0, 179); // scale it to use it with the servo (value between 0 and 180) myservo.write(val); // sets the servo position according to the scaled value delay(200); // wait for the servo to get there } delay(3000); // wait before starting the sequence again } Compiled, not tested. It illustrates the principle, but it isn't very good code. The use of all those manifest constants, particularly 10, is a sin. The use of delay too, is handy here, but not recommended generally.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Full Member
Karma: 0
Posts: 161
|
 |
« Reply #4 on: March 11, 2012, 08:53:43 am » |
wildbill thanks a lot! Will read, understand, try and reply! 
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Full Member
Karma: 0
Posts: 161
|
 |
« Reply #5 on: March 15, 2012, 02:27:17 pm » |
My project is slowly progressing (actually I should say I'M slowly progressing...) and my 3 questions are: 1. Is it possible to store the pot data into an array while at the same time send it over to the servo? This way I can both see what I'm doing and "record" the info for later retrieval. 2. In this project I'm expanding on the Knob sketch, adding the array in order to record. I want to be able to begin , stop and playback this recording using buttons. This means putting some "If" structures into the main loop of the sketch. Will this make my reading from the pot and writing to the servo slower (because the code will check to see if the button is pressed)? Should I use another structure? Is Interrupt better suited for this? 3. By other structure I mean maybe 2 loops that can be switched between by a button. Is that even possible?
Thanks
|
|
|
|
« Last Edit: March 16, 2012, 04:11:41 am by Soffer »
|
Logged
|
|
|
|
|
Offline
Full Member
Karma: 0
Posts: 161
|
 |
« Reply #6 on: March 17, 2012, 05:17:38 am » |
update: 1. Yes I can. 2&3 - would still appreciate a pointer or two. 
|
|
|
|
|
Logged
|
|
|
|
|
New Jersey
Online
Edison Member
Karma: 26
Posts: 2455
|
 |
« Reply #7 on: March 17, 2012, 08:58:09 am » |
2. Not appreciably. The Arduino is lightning fast compared to any actions you're taking, so it'll take finite time to execute the extra steps, but you won't notice. Interrupts? No.
3. Not sure what you mean. You can have multiple different functions called from loop & vary which are called based on button presses. You can't have multiple functions called loop though.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Full Member
Karma: 0
Posts: 161
|
 |
« Reply #8 on: March 19, 2012, 02:44:16 am » |
Hey. I guess phase 1 is done. I'm able to control, record, play in reverse and play in original order. Now it's controlled through serial monitor and my next phase is to control it with 4 switches.
I'm attaching the code and would appreciate remarks. Remember - I'm a complete noob, so please don't be too hard on me.. Edit - code attached as should be in my next post...
|
|
|
|
« Last Edit: March 19, 2012, 05:55:28 am by Soffer »
|
Logged
|
|
|
|
|
Gosport, UK
Offline
Faraday Member
Karma: 19
Posts: 3117
|
 |
« Reply #9 on: March 19, 2012, 03:39:23 am » |
Can you modify your post to use [code] tags, instead of [quote]. It looks like you aren't using array indexing to store the servo position, but that could well be because the [i] is being converted to an italic tag.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Full Member
Karma: 0
Posts: 161
|
 |
« Reply #10 on: March 19, 2012, 03:51:39 am » |
whoops, let me try again...  // Controlling a servo position using a potentiometer (variable resistor) // with the option of recording the movement, playing it in reverse and in original order. // Adi Soffer 19.3.12
#include <Servo.h> Servo myservo; // create servo object to control a servo char buffer [5]; //variable to hold keystrokes int potpin = 0; // analog pin used to connect the potentiometer int val; // variable to read the value from the analog pin int servoPos[300]; //create array 300 values for servo position int incomingByte; //declare variable to hold incoming letter
void setup() { Serial.begin(9600); Serial.flush(); myservo.attach(3); // attaches the servo on pin 3 to the servo object }
void loop () { if (Serial.available( ) > 0) { incomingByte = Serial.read ( ); if (incomingByte == 'F') { Serial.println ("Free mode"); while (incomingByte == 'F') { val = analogRead (potpin); val = map(val, 0, 1023, 0, 179); myservo.write (val); delay (10); if (Serial.available ( ) > 0) { incomingByte = Serial.read ( ); if (incomingByte == 'R') { Serial.println ("Record inside"); // if so - prints record inside for checkup delay(15); for (int i=0;i<299;i++) //for loop to store 300 values of pot { val = analogRead(potpin); // reads the value of the potentiometer (value between 0 and 1023) val = map(val, 0, 1023, 0, 179); // scale it to use it with the servo (value between 0 and 180) myservo.write(val); // sets the servo position according to the scaled value servoPos [i]=val; // stores val in array "servoPos delay(15); // waits for the servo to get there Serial.println(val); // print values for checking } } else if (incomingByte == 'H') { Serial.println ("Home inside"); //delay(15); for (int i=299;i>0;i--) { myservo.write (servoPos[i]); //reads values from array in reverse to servo delay(15); Serial.println (servoPos[i]); } } else if (incomingByte = 'P') { Serial.println ("Playback inside"); // if so prints for checkup //delay(15); for (int i=0;i<299;i++) { myservo.write (servoPos[i]); //reads values from array in original order to servo delay (15); Serial.println (servoPos[i]); } } } } } else if (incomingByte == 'R') // checks if input was capital R { Serial.println ("Record"); // if so - prints record delay(15); for (int i=0;i<299;i++) //for loop to store 300 values of pot { val = analogRead(potpin); // reads the value of the potentiometer (value between 0 and 1023) val = map(val, 0, 1023, 0, 179); // scale it to use it with the servo (value between 0 and 180) myservo.write(val); // sets the servo position according to the scaled value servoPos [i]=val; // stores val in array "servoPos delay(15); // waits for the servo to get there Serial.println(val); // print values for checking } } else if (incomingByte == 'H') { Serial.println ("Home"); //delay(15); for (int i=299;i>0;i--) { myservo.write (servoPos[i]); //reads values from array in reverse to servo delay(15); Serial.println (servoPos[i]); } } else if (incomingByte = 'P') { Serial.println ("Playback"); //delay(15); for (int i=0;i<299;i++) { myservo.write (servoPos[i]); //reads values from array in original order to servo delay (15); Serial.println (servoPos[i]); } } } }
|
|
|
|
« Last Edit: March 19, 2012, 03:56:32 am by Soffer »
|
Logged
|
|
|
|
|
Offline
Edison Member
Karma: 5
Posts: 1168
If you're not living on the Edge, you're taking up too much space!
|
 |
« Reply #11 on: March 19, 2012, 12:08:04 pm » |
I have a similar problem. I'm trying to get the data from 3-D animation software into the Sketch to move the servos. I have the output movement working, but the process of loading it is tedious. Maybe I should try pots? I want the movement to look natural like a human body moving.
|
|
|
|
|
Logged
|
If you fall... I'll be there for you! -Floor
Skype Brighteyes3333 (262) 696-9619
|
|
|
|
Offline
Full Member
Karma: 0
Posts: 161
|
 |
« Reply #12 on: March 19, 2012, 12:20:53 pm » |
sbright33, that sounds extremely interesting, and quite close to my field of interest  Are you using arrays to store the values from the software?
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Full Member
Karma: 0
Posts: 161
|
 |
« Reply #13 on: March 20, 2012, 02:47:14 am » |
And here again is the code, more organised, using functions... // Controlling a servo position using a potentiometer (variable resistor) // with the option of recording the movement, playing it in reverse and in original order. // Adi Soffer 19.3.12
#include <Servo.h> Servo myservo; // create servo object to control a servo char buffer [5]; //variable to hold keystrokes int potpin = 0; // analog pin used to connect the potentiometer int val; // variable to read the value from the analog pin int servoPos[300]; //create array 300 values for servo position int incomingByte; //declare variable to hold incoming letter
void setup() { Serial.begin(9600); Serial.flush(); myservo.attach(3); // attaches the servo on pin 3 to the servo object }
void loop () { if (Serial.available( ) > 0) { incomingByte = Serial.read ( ); if (incomingByte == 'F') { Serial.println ("Free mode"); while (incomingByte == 'F') { val = analogRead (potpin); val = map(val, 0, 1023, 0, 179); myservo.write (val); delay (10); if (Serial.available ( ) > 0) { incomingByte = Serial.read ( ); if (incomingByte == 'R') { recordFunction ( ); } else if (incomingByte == 'H') { reverseFunction ( ); } else if (incomingByte = 'P') { playBackFunction ( ); } } } } else if (incomingByte == 'R') // checks if input was capital R { recordFunction ( ); } else if (incomingByte == 'H') { reverseFunction ( ); } else if (incomingByte = 'P') { playBackFunction ( ); } } }
void playBackFunction ( ) { Serial.println ("Playback Function"); for (int i=0;i<299;i++) { myservo.write (servoPos[i]); //reads values from array in original order to servo delay (15); Serial.println (servoPos[i]); } }
void reverseFunction ( ) { Serial.println ("Home function"); for (int i=299;i>0;i--) { myservo.write (servoPos[i]); //reads values from array in reverse to servo delay(15); Serial.println (servoPos[i]); } } void recordFunction ( ) { Serial.println ("Record function"); // if so - prints record delay(15); for (int i=0;i<299;i++) //for loop to store 300 values of pot { val = analogRead(potpin); // reads the value of the potentiometer (value between 0 and 1023) val = map(val, 0, 1023, 0, 179); // scale it to use it with the servo (value between 0 and 180) myservo.write(val); // sets the servo position according to the scaled value servoPos [i]=val; // stores val in array "servoPos delay(15); // waits for the servo to get there Serial.println(val); // print values for checking } }
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Edison Member
Karma: 5
Posts: 1168
If you're not living on the Edge, you're taking up too much space!
|
 |
« Reply #14 on: March 21, 2012, 06:07:03 pm » |
@Soffer- Yes, but we have not determined which software to use for motion easing. Is there one you like best? Can it export these values to a text file?
|
|
|
|
|
Logged
|
If you fall... I'll be there for you! -Floor
Skype Brighteyes3333 (262) 696-9619
|
|
|
|
|