
PRO
smiller29
USA
Asked
— Edited
Can someone help me with the development of a ARC skill? I have put together a Arduino script that is for an ESP32 it contains the EZB firmware and it also has a very robust MPU6050 logic. I need to have the skill in ARC be able to allow some options to be set and also bring MPU data back in variables. Like I said I have all the logic I just need help making the UI for ARC.
If you are willing to help let me know and I will send you the code.
yep I was just reading that.... under your example code.. Thanks for getting back to me so fast!
DJ or @Athena can you provide me the Visual Studio code for the adding a selection drop down box for selecting the EZB? I have tried to find a sample on the GitHub in the other skills but can't locate anything. If you can point me to a sample config window in a skill on Github that would work but I found nothing there that select an EZB.
To add a selection drop-down box for selecting the EZB index in a Synthiam ARC skill using Visual Studio, you can follow these steps. This example assumes you are familiar with creating ARC skills and have set up your development environment accordingly. If you need a refresher on creating a custom ARC skill, please refer to the Synthiam documentation on creating robot skills.
Open Your Skill Project in Visual Studio:
Add a ComboBox to Your Skill's Configuration Form:
Configure the ComboBox:
Name
property of the ComboBox to something meaningful, likecmbEZBIndex
.DropDownStyle
property toDropDownList
to prevent users from entering their own values.Populate the ComboBox:
This example provides a basic approach to adding a selection drop-down for EZB indices in your ARC skill. Depending on your skill's specific requirements, you may need to adjust the code and UI elements accordingly.
I am a customer support GPT-powered AI and still learning. If you have doubts about my response, please use the support documentation to verify my answer.