Infineon Team
Published © MIT

Never get your Hands dirty again with the Radar Shield2Go!

Don't touch a thing! Let Infineon's Radar Shield2Go do it for you. Learn how to automate a trash can with the XMC2Go and Arduino IDE!

IntermediateFull instructions provided8 hours650

Things used in this project

Hardware components

S2GO RADAR BGT60LTR11
Infineon S2GO RADAR BGT60LTR11
×1
XMC2GO - industrial microcontroller kit
Infineon XMC2GO - industrial microcontroller kit
×1
S2GO HALL TLE4964-3M
Infineon S2GO HALL TLE4964-3M
×1
MG995 Tower Pro Servo Motor (360°-continuous version)
The servo motor used in this project was continuous
×1
Breadboard (generic)
Breadboard (generic)
×1
RC Winch Servo Add-On
×1
M2 Screw
To fasten the Servo in its position and to attach the Base of the Servo Tower with the Servo Tower (4x M2 screws come with the Servo)
×8
M3 Screw 8mm
Comes with the RC Winch module
×1
6V Power Supply
6V Power Supply used for the Servo Motor
×1
Power Bank
A Power Bank with a Micro-USB Output with 5V for the XMC2Go
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

3D Printer (generic)
3D Printer (generic)
Hot glue gun (generic)
Hot glue gun (generic)

Story

Read more

Custom parts and enclosures

3D Files with Assembly

This folder contains the 3D files used in this project and assembly videos

Schematics

Wiring Diagram

All the connections of the Boards used in this project

Code

Trash Opener

Arduino
This is the Code for the whole application
#include <StopWatch.h>
#include <bgt60-ino.hpp>
/* Include Arduino platform header */
#include <bgt60-platf-ino.hpp>


#ifndef TD
#define TD  4  
#endif

#ifndef PD
#define PD  8
#endif

// #define BUTTON1 24
#define pwm 1 //8 or 1 on XMC2Go //9 On relax Kit
#define freq 50
#define hall 5


/* Create radar object with following arguments:
 *  TD : Target Detect Pin
 *  PD : Phase Detect Pin */
Bgt60Ino radar(TD, PD);

//Init with no Motion to record new states
// Bgt60::Motion_t motion            = Bgt60::NO_MOTION  ; No need to add motion as no it is interpreted as departing if not approaching and TD is low
Bgt60::Direction_t curdirection   = Bgt60::NO_DIR     ;
Bgt60::Direction_t prevdirection  = Bgt60::NO_DIR     ;

StopWatch stopwatch   ;
// StopWatch stopwatch_c ; //Stopwatch for closing

bool isOpen   = false;
bool closing  = false;

uint32_t waitingTime=20000;

uint32_t time = 0;



void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
  //enable stopwatch for inconsistency of hold time, as radar is very sensitive!
  stopwatch.setResolution(StopWatch::MILLIS);
  // stopwatch_c.setResolution(StopWatch::MILLIS);

  // Init Radar
  radar.init();

  // Set pinModes for PWM Pin and Hall-Sensor Pin
  pinMode(pwm,OUTPUT);
  pinMode(hall,INPUT);

  //Sets the analogwrite frequency to 50Hz (20 ms window for the Servo)
  setAnalogWriteFrequency(pwm,freq);
 
}

void loop() {
  // put your main code here, to run repeatedly:
  
  //program refresh rate
  delay(20);

  Error_t err = radar.getDirection(curdirection);

  if(err==OK)
  {
    if(stateChanged()== true)
    {
      if(prevdirection==Bgt60::NO_DIR)
      {
        
        if(curdirection==Bgt60::DEPARTING)
        {
          Serial.println("from no_dir to departing: Motor do nothing here");
          ;
        }
        else
        {
          Serial.println("from no_dir to approach or no_dir is not a possible transition, departing first"); //do nothing
          ;

        }
      }

      else if(prevdirection==Bgt60::APPROACHING)
      {
        if(curdirection==Bgt60::DEPARTING)
        {
          Serial.println("from approach to departing: Motor wait for 20 secs and close if its open");
          
          if(isOpen==true) //Comment out this condition if you want to purely rely on the Radar to determine when to close
          {
            delay(waitingTime); //wait for 20 secs

            closing=true;
            analogwrite_ms(2.5);
            stopwatch.start();
          }
          else
          {
            ; //do nothing because closing will not be true if i was approaching first
          }
          
        }
        
        else
        {
          Serial.println("There is no other state possible other than DEPART")
          ;
        }
      }

      else //if previously departing
      {
        if(curdirection==Bgt60::NO_DIR)
        {
          Serial.println("from depart to no_dir: close the lid if it's still open"); //lid would probably be closed if delay < TD hold time, but if(isOpen==true) close it
          
          if(isOpen==true)
          {
            closing=true;
            analogwrite_ms(2.5);
            stopwatch.start();
          }
          else
          {
            ; //do nothing if its already closed
          }
        }

        else //APPROACHING
        {
          if(isOpen==false)
          {
            Serial.println("Open Sesame!");
            closing=false;
            analogwrite_ms(0.5);
            stopwatch.start();
            
            tillOpen();
            analogwrite_ms(0);
          }

          else if(closing==true)
          {
            Serial.println("from depart to approaching: Motor stop and rotate for same duration it was closing");

            analogwrite_ms(0);

            delay(100);
            
            closing=false;

            analogwrite_ms(0.5);
            stopwatch.start();
            
            tillOpen();
            analogwrite_ms(0);
          }

          else
          {
            ;
          }
        }
        
      }
    }
    else //if previous direction is same as current direction
    {
      if(closing==true)
      {
        Serial.println("Normal Closing!");

        if(stopwatch.elapsed()>=time || stopwatch.elapsed()>=2000) //by testing out the full speed Servo, it won't take more than two seconds to close the lid
        {
          Serial.print("Elapsed time: ");
          Serial.println(stopwatch.elapsed());
          analogwrite_ms(0);

          stopwatch.stop();
          stopwatch.reset();
          
          time=0;
          closing=false;
          isOpen=false;
        }
        
      }
      else
      {
        ;
      }
    }
    prevdirection=curdirection;
  }

  

}
//-----------END OF LOOP()-------------------------------------------------




//-----------CUSTOM FUNCTIONS----------------------------------------------

/*
  @brief  This function is basically the endstop for the lid. When the TLE4964 Hall Sensor notices a magnet nearby it gives a LOW signal to the XMC2Go

  @param  void

  @return void
*/
void tillOpen()
{
  while(true)
  {
    if(digitalRead(hall)==LOW)
    {
      isOpen=true;
      Serial.println("I should Stop now!");
      time=stopwatch.elapsed();
      Serial.print("to open:");
      Serial.println(time);
      if(time==4000){ //if motor is running for 4 seconds emergency stop!
        break;
      }
      stopwatch.stop();
      stopwatch.reset();
      break;
    }
    else
    {
      continue;
    }
  }
}


/*
    @brief        ROTATES MOTOR CW OR CCW. TO ROTATE CW USE A PULSE BETWEEN 0.5 - 1.3 ms WITH 0.5 BEING THE FASTEST ROTATION POSSIBLE
                                         TO ROTATE CCW USE A PULSE BETWEEN 1.5 - 2.5 ms WITH 2.5 BEING THE FASTEST ROTATION POSSIBLE
    
    @param        ms IS THE PULSE DURATION IN MILLISECONDS
    
    @return       TRUE IF EVERYTHING WENT ALRIGHT WITH THE analogWrite() FUNCTION (for error tracking purposes)

*/
bool analogwrite_ms(float ms)
{
  int window = 1000 / freq;
  int duty_c=ceil((ms / window) * getAnalogWriteMaximum());
  int ret=analogWrite(pwm,duty_c);

  Serial.print("ANALOG WRITTEN: ");
  Serial.println(duty_c);
  Serial.print("RETURN CODE: ");
  Serial.println(ret);

  if(ret==0){return true;}
  else{return false;}
}


/*
  @brief    To track the state of the PD pin of the Radar S2Go

  @param    void

  @return   true if change in state,false if not.
*/
bool stateChanged(){
  bool dirChanged = false;

  if(prevdirection != curdirection)
    dirChanged = true;
  else
    dirChanged = false;

  return dirChanged;
}
//--------------END OF CUSTOM FUNCTIONS-------------------------------------

Infineon Radar BGT60LTR11 Arduino Library

Credits

Infineon Team
100 projects • 157 followers
Contact

Comments

Please log in or sign up to comment.