"How can I let panda show "Target Locked"?


#1

I need Panda to say “Target Locked” when it identifies a target while turning around itself. I couldnt find any solution yet. Any help would be awesome. Thank you


#2

How do you define “identifying a target”?

Anyway, sound like coordinate calculation does the trick.


#3

Well i actually wrote the code that turns the robot around. When it identifies an object it stops. But when it stopped, i want him to say “Target Locked”. Thats where im having problem


#4

@MbotUser,

Add the “Target Locked” immediately after the stop command. Something like this,

IF (TargetFound is true)
[STOP]
[say “Target Locked”]
END IF

If this does not help, please upload your code so folks can have a look.

Mike