Asked — Edited

Script Sample Page In The Disscusion Forum

Hi All, It would be really cool if there was a page in the Disscusion Forum just on script samples for all of us still trying to work out what it all means. I have gone through the different samples DJ has included in the EZB, and have trawlled through the comments in the disscusion forum for any helpful hints. I have managed to get some really cool script's doing this.
It would be great though if I could just go to a page, look up say; How to make your omnibots eyes blink, or How to make your omnibot shake hands and voila there it is.

I know that there are a few guys out there who believe that creating script is part of what makes the EZB special and I would defintely agree - if I knew how to do it;)

What does everyone else think?


ARC Pro

Upgrade to ARC Pro

With Synthiam ARC Pro, you're not just programming a robot; you're shaping the future of automation, one innovative idea at a time.

#1  

Hello,

I begin and it is a good idea.

Canada
#2  

The examples are already in ARC, why the need to duplicate that?

If you have a question about a script or feature, post your script attempt and everyone else will try to help you out.

I learned 90% of scripting from copying DJ's and others examples (EZ-Cloud). The other 10% was with the help of others on the board here.

#4  

I do go through the cloud and check out everyones script - and yes it defintely does help to get an understanding, but you still have to go through everything before you find what you need. I'm talking about something a little easier to navigate and search through. A single place to have them instead of looking for them in the comments and the cloud.

PRO
Synthiam
#5  

Ask what you'd like to do and people can help:) For advanced scripting, there is the c# and vb controls. For those examples, check the EZ-SDK. We're all here to help. That's what this is all about:D

#6  

But wouldn't it great if I asked the community about a script, I get some help and then that script is available to all in an easy to navigate section on the forum page.

Just a thought.

PRO
Synthiam
#7  

Every EZ-Robot is unique and different; which is why your EZ-Script will be specific to your needs. Ask and people will help:)

The EZ-Community was created as a support group to share ideas and concepts. The forum is the place to do so. If you have a question to have your robot do something, ask and people will help.

What you are asking for already exists, and you're using it. Instead of using the forum to ask for a script forum, use the forum to ask for help with your goal:)

For example:

Quote:

I would like my robot to perform a dance routine. How may i do that?

And someone will respond with something like...

Quote:

You can control your robot with commands like Forward(), Left(), Right(), Stop(), Reverse() as a starting point. Then use the Sleep() command to pause between movements. For example:

Forward() Sleep(2000) Stop()

That will move your robot forward for 2 seconds