Don’t know why roborealm is not launching if the path is correct and the API is installed correctly it should work?
As for the file, included in the zip is a .robo file called hexvisionblue.robo it is an example and should get you up and running but you can create any filter that ends with the production of COG coordinates. Let me know if that helps.
start it befor hexcontrol. show api is running an cam pictures are ready with cog box. then start Hexcontrol.
other quastion. has somebody a RR file for perfect face tracking?
that RR find the Head, or he found eyes and mouth and then he makes COG box over the Head. how its possible?
In an effort to recoup some of their software development investment time Steven has decided to start charging for Roborealm. We have it on the website. lynxmotion.com/Product.aspx? … egoryID=15
Thats a shame, understandable, but a shame all the same.
I suppose you can’t begrudge someone wanting to make a living from doing something they love and have put a lot of effort into.
I probably would have gone off on one, but I noticed that the RR website has my rover project at the number one spot on the resources page so I’d better keep my mouth shut
I am sure you could swing a lasso with a hex but the current hexcontrol has no code for scripting moves like that. I think Zenta’s PEP program might be better for scripting sequences. I’d love to see a video if you can pull it off.
Just a little update on the progress of the program:
I am working to implement config files (so you don’t have to edit the code to set up your hexapod anymore!) This was my post on Xan’s thread earlier:
"Just to give some more background to this decision, I am working on encapsulating that massive (and slightly overwhelming) list of variables at the begining of the code in a hexapod object class and I want to allow people to be able to modify the setup of the hexapod without going into the code to make the changes. Thus…the config file.
The question I am facing is whether to set the config file up as 1) an INI (as suggested by LikWidChz) which would allow for easy .txt based editing or 2) as XML (allows for the easiest and most intuitive saving…but requires that people set up the hexapod through a series of menus in the program.)
If I run the INI route, the file will look very similar to Xan’s new 2.0 config file…which is an added bonus."
I wanted to mention that I’ve had people request a program that would automatically configure the comm port. What I thought I would do is create a simple app that would iterate through the active comm ports and send a VER command. If it returned a version number then the app would know it found an SSC32 and would automatically create the configuration file. I thought about making it a console app so that it could be kicked off in command line mode by any program. It would then do the job of creating or updating the config file. Then other programs would only need to have logic to read the config file. Of course anyone could manually update the config file with an XML editor if they preferred.
I really like the idea of saving the comm setup/other program defaults to an XML config for the program. If you work on that, can I implement it in the next release?
For the robot config file, I think I’ve decided to go XML also.
Currently all the robot variables will be stored in a class called “hexapod” which will contain a “state” and a “characteristics” class.
States contains well…state variables for while the robot is running. The characterisitcs class will contain all the hardcoded physical information about the robot and this section of the class is what will serilzie to XML.
Console application that searches for an SSC32 and displays the serial port and baud rate that the SSC32 is using.
The application takes three optional command line arguments:
Name, Category, Model
ServoMaticSerialPortConfig.exe “My Cool Phoenix” “Hexapod” “Phoenix”
It also creates a serial port configuration settings file that can be read by other applications. The file is located in the documents directory under “My SSC32\SerialPortConfig.xml” and also creates an XML Schema SerialPortConfig.xsd.
The application implements the class SerialPortConfig.vb that can be copied for use in other applications to both read from and write to the configuration file.
Yes, it starts at 115000 and iterates through the active comm ports in the order below.
{“115000”, “36000”, “28800”, “14400”, “9600”, “4800”, “2400”, “1200”, “600”, “300”}