Advertisement
JonD1988

RoboticArmControlsRemoteTestTxRev0

Dec 22nd, 2021
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Code to Test Robotic Arm Remote Control Transmitter (Remote) - Written by Jonathan DeWitt
  2.  
  3. #include <Servo.h>
  4. #include <SoftwareSerial.h>
  5. #include <Wire.h> //Not that this was actually needed.  Was used in Reference 1
  6.  
  7. SoftwareSerial HC12(8,7); // Arduino Pin 8 Rx to Tx on HC-12, Arduino Pin 7 Tx to Rx on HC-12
  8.  
  9. // Servo Servo1;
  10. // Servo Servo2;
  11. // Servo Servo3;
  12. // Servo Servo4;
  13. // Servo Servo5;
  14. // Servo Servo6;
  15.  
  16. // int J1 = 5; //J1 Servo Signal Wire Attached to Pin 5
  17. // int J2 = 6; //J2 Servo Signal Wire Attached to Pin 6
  18. // int J3 = 9; //J3 Servo Signal Wire Attached to Pin 9
  19. // int J4 = 10; //J4 Servo Signal Wire Attached to Pin 10
  20. // int J5 = 11; //J5 Servo Signal Wire Attached to Pin 11
  21. // int J6 = 3; //J6 Servo Signal Wire Attached to Pin 3
  22.  
  23. int PotPin1 = A0; //Joint 1 Potentiometer is Tied to Pin A0
  24. int PotPin2 = A1; //Joint 2 Potentiometer is Tied to Pin A1
  25. int PotPin3 = A2; //Joint 3 Potentiometer is Tied to Pin A2
  26. int PotPin4 = A3; //Joint 4 Potentiometer is Tied to Pin A3
  27. int PotPin5 = A4; //Joint 5 Potentiometer is Tied to Pin A4
  28. int PotPin6 = A5; //Joint 6 Potentiometer is Tied to Pin A5
  29.  
  30. //Note: Do I want to initialize PotVals and angles to 0?
  31. int PotVal1 = 0; //Stores Potentiometer 1 Value
  32. int PotVal2 = 0; //Stores Potentiometer 2 Value
  33. int PotVal3 = 0; //Stores Potentiometer 3 Value
  34. int PotVal4 = 0; //Stores Potentiometer 4 Value
  35. int PotVal5 = 0; //Stores Potentiometer 5 Value
  36. int PotVal6 = 0; //Stores Potentiometer 6 Value
  37.  
  38. int angle1 = 0; //Stores Angle to Move Servo 1 To
  39. int angle2 = 0; //Stores Angle to Move Servo 2 To
  40. int angle3 = 0; //Stores Angle to Move Servo 3 To
  41. int angle4 = 0; //Stores Angle to Move Servo 4 To
  42. int angle5 = 0; //Stores Angle to Move Servo 5 To
  43. int angle6 = 0; //Stores Angle to Move Servo 6 To
  44.  
  45. //The following variables are needed only to receive data from the HC-12 remote control
  46. String input;
  47. int boundLow;
  48. int boundHigh;
  49. const char delimiter = ',';
  50.  
  51. void setup() {
  52.   // put your setup code here, to run once:
  53.   Serial.begin(9600);
  54.  
  55.   pinMode(PotPin1, INPUT); //Sets Pin Potentiometer 1 is Tied to To an Input
  56.   pinMode(PotPin2, INPUT); //Sets Pin Potentiometer 2 is Tied to To an Input
  57.   pinMode(PotPin3, INPUT); //Sets Pin Potentiometer 3 is Tied to To an Input
  58.   pinMode(PotPin4, INPUT); //Sets Pin Potentiometer 4 is Tied to To an Input
  59.   pinMode(PotPin5, INPUT); //Sets Pin Potentiometer 5 is Tied to To an Input
  60.   pinMode(PotPin6, INPUT); //Sets Pin Potentiometer 6 is Tied to To an Input
  61.  
  62.   // Servo1.attach(J1); //Calls this is like a pinmode command but also does more from the servo library
  63.   // Servo2.attach(J2); //Calls this is like a pinmode command but also does more from the servo library
  64.   // Servo3.attach(J3); //Calls this is like a pinmode command but also does more from the servo library
  65.   // Servo4.attach(J4); //Calls this is like a pinmode command but also does more from the servo library
  66.   // Servo5.attach(J5); //Calls this is like a pinmode command but also does more from the servo library
  67.   // Servo6.attach(J6); //Calls this is like a pinmode command but also does more from the servo library
  68.  
  69.    HC12.begin(9600); //Start the HC-12 Module
  70.    delay(2000); //I assume this delay is to give the HC-12 time to read
  71. }
  72.  
  73. void loop() {
  74.   // put your main code here, to run repeatedly:
  75.  
  76.   PotVal1 = analogRead(PotPin1); //Reads Voltage Between 0 and 5 V and Gives Number Between 0 and 1023 Where 2^8 = 1024.  Starts at 0 therefore 1023.
  77.   PotVal2 = analogRead(PotPin2); //Reads Voltage Between 0 and 5 V and Gives Number Between 0 and 1023 Where 2^8 = 1024.  Starts at 0 therefore 1023.
  78.   PotVal3 = analogRead(PotPin3); //Reads Voltage Between 0 and 5 V and Gives Number Between 0 and 1023 Where 2^8 = 1024.  Starts at 0 therefore 1023.
  79.   PotVal4 = analogRead(PotPin4); //Reads Voltage Between 0 and 5 V and Gives Number Between 0 and 1023 Where 2^8 = 1024.  Starts at 0 therefore 1023.
  80.   PotVal5 = analogRead(PotPin5); //Reads Voltage Between 0 and 5 V and Gives Number Between 0 and 1023 Where 2^8 = 1024.  Starts at 0 therefore 1023.
  81.   PotVal6 = analogRead(PotPin6); //Reads Voltage Between 0 and 5 V and Gives Number Between 0 and 1023 Where 2^8 = 1024.  Starts at 0 therefore 1023.
  82.  
  83.   Serial.print("PotVal1: ");
  84.   Serial.print(PotVal1);
  85.   Serial.print(", ");
  86.   Serial.print("PotVal2: ");
  87.   Serial.print(PotVal2);
  88.   Serial.print(", ");
  89.   Serial.print("PotVal3: ");
  90.   Serial.print(PotVal3);
  91.   Serial.print(", ");
  92.   Serial.print("PotVal4: ");
  93.   Serial.print(PotVal4);
  94.   Serial.print(", ");
  95.   Serial.print("PotVal5: ");
  96.   Serial.print(PotVal5);
  97.   Serial.print(", ");
  98.   Serial.print("PotVal6: ");
  99.   Serial.print(PotVal6);
  100.   Serial.println(".");
  101.   // scale the numbers from the pot
  102.   angle1 = map(PotVal1, 0, 1023, 20, 150); //Scales Converted Values Between 0 and 1023 to Angles Setting Servo Range
  103.   angle2 = map(PotVal2, 0, 1023, 110, 150); //Scales Converted Values Between 0 and 1023 to Angles Setting Servo Range - Default Value 100 to 170 - But if leave at 100 it cannot lift the arm back up
  104.   angle3 = map(PotVal3, 0, 1023, 100, 180); //Scales Converted Values Between 0 and 1023 to Angles Setting Servo Range
  105.   angle4 = map(PotVal4, 0, 1023, 0, 140); //Scales Converted Values Between 0 and 1023 to Angles Setting Servo Range
  106.   angle5 = map(PotVal5, 0, 1023, 10, 140); //Scales Converted Values Between 0 and 1023 to Angles Setting Servo Range
  107.   angle6 = map(PotVal6, 0, 1023, 50, 120); //Scales Converted Values Between 0 and 1023 to Angles Setting Servo Range
  108.   // print out the angle for the servo motor
  109.   Serial.print("Angle 1: ");
  110.   Serial.print(angle1);
  111.   Serial.print(", ");
  112.   Serial.print("Angle 2: ");
  113.   Serial.print(angle2);
  114.   Serial.print(", ");
  115.   Serial.print("Angle 3: ");
  116.   Serial.print(angle3);
  117.   Serial.print(", ");
  118.   Serial.print("Angle 4: ");
  119.   Serial.print(angle4);
  120.   Serial.print(", ");
  121.   Serial.print("Angle 5: ");
  122.   Serial.print(angle5);
  123.   Serial.print(", ");
  124.   Serial.print("Angle 6: ");
  125.   Serial.print(angle6);
  126.   Serial.println(".");
  127.  
  128.   //This section transmits the angle readings to the HC-12 Module
  129.   HC12.print(angle1);
  130.   HC12.print(",");
  131.   HC12.print(angle2);
  132.   HC12.print(",");
  133.   HC12.print(angle3);
  134.   HC12.print(",");
  135.   HC12.print(angle4);
  136.   HC12.print(",");
  137.   HC12.print(angle5);
  138.   HC12.print(",");
  139.   HC12.print(angle6);
  140.   HC12.println(""); //the println line is absolutely necessary because the receive code looks for a new line character to know when the message has finished being received
  141.  
  142.   delay(100); //Delay from Reference 1 Transmit Code
  143. }
  144.  
  145. //Notes
  146. //Restrict Joint 1 from 20 to 150 degrees.  It can go down to 0 degrees but buzzes.  I haven't taken it over 150.  It might go further
  147. //Restrict Joint 2 from 110 to 150 degrees.  It can go down to 110 degrees but buzzes a little.  Any lower it can really buzz.  Over 150 it really buzzes.
  148. //Restrict Joint 3 from 100 to 180 degrees.  100 seems to be very high up position (arm raised).  180 seems to be the arm lowered.
  149. //Restrict Joint 4 from 0 to 140 degrees.  It can comfortably do this
  150. //Restrict Joint 5 from 10 to 140 degrees.  It can 0 to 150 (I tested these)
  151. //Restrict Joint 6 from 50 to 120 degrees.  50 is closed gripper.  120 is fully open.  
  152.  
  153. //A good resting pose
  154. //  Servo1.write(90); //Moves Specified Servo to Specified Angle
  155. //  Servo2.write(110); //Moves Specified Servo to Specified Angle
  156. //  Servo3.write(120); //Moves Specified Servo to Specified Angle
  157. //  Servo4.write(50); //Moves Specified Servo to Specified Angle
  158. //  Servo5.write(50); //Moves Specified Servo to Specified Angle
  159. //  Servo6.write(120); //Moves Specified Servo to Specified Angle
  160.  
  161. //Reference 1 https://rootsaid.com/long-range-remote-controller/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement