1DOF Haptic

From RobolaboWiki
Jump to: navigation, search

Note: The electronics of the robot are based on a Arduino Due board: https://www.arduino.cc/en/Main/ArduinoBoardDue Moreover, the motor control is done through a H-Bridge board from ST: http://www.st.com/en/ecosystems/x-nucleo-ihm04a1.html

Configuring the environment


Setting up the Arduino Software

  • Download the Arduino IDE according to your operating system from: https://www.arduino.cc/en/Main/Software .
  • Install the Arduino IDE
    • If you have chosen to download the installer, run the installer and install the software in a path of your convenience.
    • If you have chosen to download the sources (Linux or zip on Windows), uncompress the software in a path of your convenience
  • Open/run Arduino IDE, so it will create all the folders needed

Installing Tools and Libraries

  • The 1DOF haptic robot uses a Arduino DUE board, so the Arduino IDE support must be installed. Open Boards configurator:
  • Tools → Boards → Boards' Manager
    

    Install support for SAM Boards - (32-bits ARM Cortex-M3

  • Download the DueTimer.zip library from: https://github.com/ivanseidel/DueTimer/releases
  • Install the library:
  • Program → Include library → Add Zip library
    
  • Select the zip file that has been downloaded
  • Installing FTDI drivers

    If you are using Linux or Mac, skip this step. If you are using Windows, power up the robot and connect it to your computer. Windows should ask you to install some FTDI drivers to be able to connect to the robot.

    Hello World example

    We have created a helloWorld example to test the communication with the robot. Please download it from [here ] in your prefered destination. Untar the file:

    tar -xvzf helloWorld.tgz
    

    Compiling the code

  • Open Arduino IDE and load the .ino file in your environment:
  • File → Open → <HELLOWORLD_EXAMPLE>
    
  • Select the Arduino DUE board:
  • Tools → Board → Arduino Due
    
  • Compile the program:
  • Program → Verify/Compile
    

    Downloading the code to the robot

    The Arduino Due has two usb ports. The one that is closer to the power jack is the programming port and the one used with the 1DOF Haptic Robot.

    Select the correct port to download the binaries: In Linux, typically:

    tools → Port → /dev/ttyUSBX
    

    In Windows, typically:

    tools → Port → COMX
    

    where X depends on your system and the number of peripherals on it

    Upload your code to the board:

    Program → Upload
    

    The IDE will notify that it is uploading and after some seconds it will say uploaded .

    Playing with HelloWorld

    This example allows you to see the functionality of some of the functions handcoded. Once the software has been loaded, the robot should move 1 second counterclockwise and 1 second clockwise. After those 2 seconds it should stop.

    Once the code have been loaded, you can open the serial port:

    Tools → Serial Monitor
    

    You should see in real time the information provided by the helloworld example, basically:

    • Count: The communication time, in timer ticks
    • Pos: The position, in encoder pulses units
    • Vel: The speed, in encoder pulses units

    Practice 2 Template (P2)

    For the implementation of Practice 2 of the "Control and Robotics in Medicine" subject of the "Master on Bioengineering" of the UPM, we have created a students template. You can download the template from [here ]

    Structure

    The template has 5 different block of files:

    • encoder.{c,h} : where functions related to the measurement of the encoder are developed.
    • motor.{c,h} : where functions related to the movement of the motor are developed.
    • comm.{c,h} : where functions related to the serial port communication are developed.
    • controller.{c,h} : where specific controllers could be developed. It will not be used on P2
    • P2-Template.ino : The place where the practice should be developed.

    Methods

    This Section provides important information for the resolution of Practice2. It is based on the explanation of different methods to control the robot, but it does not explain the complete set of methods. To get and exahustive description of all methods all fies must be studied.

    Given some restrictions to the Arduino software structure, some function prototypes are defined in the main file. However, sections related to the header files refer to its implementation.

    Encoder

    This library is in charge of calculating the movement of the motor related to the encoder. The functions to control the encoder are defined as follows:

    void ENCODER_Init (void)
    

    It configures the pinout of the encoder and launches the interrupts related to channel A and B.


    void ENCODER_StartSpeedCalculation  ( long l_sampling_time )
    

    It configures a timer in charge of calculating the speed average of the motor.

    • long l_sampling_time : It defines the sampling period in milliseconds.


    long ENCODER_GetCount ( void )
    

    It returns the actual count of the encoder, that is, the position of the motor related to its initial condition.

    • return : It returns a long value related to the pulses of the encoder, positive or negative, related to the initial position of the encoder.


    long ENCODER_GetCountInSpeedInterval ( void)
    

    It returns an averge speed, expressed in counts per second.

    • return : It returns a long value related to the pulses per second of the encoder, positive or negative.


    IMPORTANT: The encoder available on Practice 2, is a 48 quadrature Counts Per Revolution (CPR) encoder. This means that ENCODER_GetCount (void) and ENCODER_GetCountInSpeedInterval (void) functions return a value related to the encoder counts. That means that for every turn on the motor axis, there are 48 values (1 pulse every 7.5 degrees). This value must be multiplied by the reduction ratio of the motor to check the position outside the motor axis.

    Motor

    This library is in charge of moving the motor. The motor is moved based on a PWM which is executed at a sampling period.

    The functions to control the motor are defined as follows:

    void MOTOR_Init ( void )
    

    It configures the pinout of the H-bridge to control the motor and inits the PWM peripheral to control it.


    void MOTOR_SetVoltage ( float f_voltage )
    

    It sets up a voltage to be sent to the motor. Remember the motor is controlled through a PWM, so it really sets up a PWM to controlthe H-Bridge.

    • flot f_voltage : This is the value of the voltage to be applied to the motor. It can be positive or negative, and the function limits the maximum and minimum values according to the MOTOR_MAX_VOLTAGE variable defined in motor.h



    Communication

    This library is in charge of managing periodic communications through the serial port. The functions are defined as follows:


    void COMMUNICATION_Init ( int speed );
    

    It configures the serial port at a specific speed.

    • int speed : The speed, in bauds, to configure and open the serial port.


    void COMMUNICATION_Start ( long l_sampling_time )
    

    It starts a timer to handle periodically the communications. This timer calls the COMMUNICATION_ROB function at l_sampling_time

    • long l_sampling_time : It defines the sampling period in milliseconds.


    void COMMUNICATION_Stop ( void )
    

    It stops the timer in charge of calling COMMUNICATION_ROB , so communication stops.


    Controller

    This library is in charge of managing a periodic timer to implement the controller developed. The functions are defined as follows:

    void CONTROLLER_Start ( long l_sampling_time )
    

    It starts a timer to handle periodically the communications. This timer calls the CONTROLLER_ROB function at l_sampling_time

    • long l_sampling_time : It defines the sampling period in milliseconds.



    P2-Template.ino

    void COMMUNICATION_ROB ( void )
    

    This function should implement which is the information you want to send through the serial port, to obtain specific data and plot some graphs.

    void CONTROLLER_ROB ( void )
    

    This function should implement the controllers.

    Important : It is important that the helloworld and template files are studied before starting Practice 2.

    Moreover, it is recommended that before arriving to the laboratory, two functions to convert encoder counts to position (in radians) and speed (in radians/second) are already programmed, to save time and get a basic understanding of the robot electronics.