Asked — Edited

Is This Description Wrong?

Hi, I'm in a little bit hammed here. While I'm waiting for my EZ-Robot kit (2), I'm trying to learn how to use EZ- Builder But right of the bat I get hit with this. Could it be that this description is swapped?

I do not know anything about scripting, but that description does not seem right...

User-inserted image


ARC Pro

Upgrade to ARC Pro

ARC Pro is your passport to a world of endless possibilities in robot programming, waiting for you to explore.

United Kingdom
#1  

Your image isn't showing up because it has ARC as part of the filename (for future reference).

But, the descriptions and examples you have mentioned are correct other than servo speed example being set at 25 when the limit is 10;

Quote:

ServoSpeed (servoPort, speed) Set the speed of servo. This is the speed of which the servo will move between positions. The servo speed is a number between 0 (fastest) and 10 (slowest) Example: ServoSpeed(D14, 25)
Should be

ServoSpeed(D14,10)

Quote:

ServoSpeedRandom (servoPort, lowSpeed, highSpeed) Set the servo speed to a random value The servo speed is a number between 0 (fastest) and 10 (slowest) Example: ServoSpeedRandom(D14, 10, 20)
Should be

ServoSpeedRandom(D14,0,10)

Quote:

ServoUp (servoPort, count) Increment the servo position value by specified count Servo position is between 0 and 100 Example: ServoUp(D14, 1)
This is correct, it will increment the servo position up by 1. i.e. if it was at position 47 it would move it to 48.

Quote:

ServoDown (servoPort, count) Decrement the servo position value by specified count Servo position is between 0 and 100 Example: ServoDown(D14, 1)
This is correct, it will decrement the servo position down by 1 i.e. if it was at position 47 it would move to 46.

#2  

Thank You for your explanation (ServoUp , ServoDown). It really helps me understand what it does or how to use it. I'll keep reading.

Thanks, Sanmarchav