Provides two different features: An EZB Uart Serial Parser, SerialTcpBridge (Connect EZ-Robot Camera via USB)
How to add the Serial Toolbox robot skill
- Load the most recent release of ARC (Get ARC).
- Press the Project tab from the top menu bar in ARC.
- Press Add Robot Skill from the button ribbon bar in ARC.
- Choose the Misc category tab.
- Press the Serial Toolbox icon to add the robot skill to your project.
Don't have a robot yet?
Follow the Getting Started Guide to build a robot and use the Serial Toolbox robot skill.
How to use the Serial Toolbox robot skill
Provides two different features: An EZB Uart Serial Parser, SerialTcpBridge (Connect EZ-Robot Camera via USB)
Version 2
New Feature: EZB Uart Serial Parser
Results:
//TODO: Improve details
This plugin requires:
- Extra hardware
1.1) Teensy 3.2 Micro-controller
https://www.pjrc.com/store/teensy32.html
http://www.robotshop.com/en/teensy-32-usb-microcontroller-development-board.html
1.2) JST 2.0 PH 6-Pin Male Connector
https://www.digikey.com/product-detail/en/jst-sales-america-inc/B6B-PH-K-S(LF)(SN)/455-1708-ND/926615
1.3 ) JST 2.0 PH 6-Pin Female Connector with cable (Optional)
- Extra Knowledge: One time only, needed to program the micro-controller
2.1) Arduino IDE 1.6 or higher
https://www.arduino.cc/en/Main/Software
2.2) Teensy (Micro-Controller) driver & add-on for Arduino IDE
https://www.pjrc.com/teensy/loader_win10.html
- Target Audience
DIY users with hardware experience.
Teensy Setup (One time only)
Firmware code:
void setup() {
Serial.begin(3333333);
Serial1.begin(3333333);
Serial1.attachRts(2);
Serial1.attachCts(18);
}
void loop() {
if (Serial1.available() > 0) {
byte b = Serial1.read();
Serial.write(b);
}
while (Serial.available() > 0)
{
byte b = Serial.read();
Serial1.write(b);
}
}
Wiring:
How to use
Download and Install this plugin
Connect Teensy usb port (MicroB) to your Desktop/Mini PC usb port
Start ARC
add the plugin to your project:
configure the usb serial port (teensy):
connect/disconnect:
setup the camera url:
Notes: 2424 is the default TCP Port The url port must be equal to the plugin Configuration's Local port.Ez-Script: connects the usb camera and then starts the camera control.
Disclaimer
The information contained here is for general information purposes only. The information is provided by PTP (Forum Member) and while I try to keep the information up to date and correct, I make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the website or the information, products, services, or related graphics contained here for any purpose. Any reliance you place on such information is therefore strictly at your own risk. In no event will we be liable for any loss or damage including without limitation, indirect or consequential loss or damage.
To PTP, its been a long while since we seen you on Synthiam. I want to again thank you for all your time making this Skill and helping me get the Teensy 3.2 working for me. I really appreciate it! Hope to see you back. That said, I only had one Teensy 3.2 and did not know how to program that chip.. Anyway I found a link posted by Fxrtst which I used and got my other EZB camera working, Link below and a picture how to set it up and the USB cable part needed... I believe you could us an Arduino mega also,. but I have not tried that yet.
https://synthiam.com/Community/Questions/Usb-To-Serial-Connection-Camera-Option-3975/comments

@DJ. If you think I should not have posted this please delete or move. PS. @Fxrtst thank you for the information.Just use the camera device directly. This robot skill is unnecessary. The camera device supports com/uart connections. Check the camera device manual. Here’s the camera device link again: https://synthiam.com/Support/Skills/Camera/Camera-Device?id=16120
@DJ. The other camera is an EZB Camera. Maybe I should been Clearer as to type of camera I was referring.
Thanks
The camera device accepts uart/com cameras. So if you are trying to use an ezrobot camera with a uart USB adapter, it will work with the camera device directly. Just select the com port. The manual explains more and here’s a link to it: https://synthiam.com/Support/Skills/Camera/Camera-Device?id=16120
Thanks DJ. I guess I’m always doing it the hard way.;)
The uart USB adapter is required for a com connection. I’m not confident that it’ll work though because that cameras wasn’t designed for a uart usb connection. Only one person has had success and it wasn’t reliable.