Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
Because of un-manageable amounts of spam despite our use of CAPTCHAs, email authorization, and other tools, we have discontinued this forum (see the 700k+ registered users with validated email addresses at right?). Please email us any questions or post bug reports and feature requests on GitHub at https://github.com/jevois -- The content below remains available for future reference.
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.

Send information via USB

0 votes
Can we send information (e.g. classification result) via the USB rather than sending the image?
asked Sep 30, 2017 in Programmer Questions by Dextrous (240 points)

1 Answer

+1 vote
 
Best answer
yes, the easiest is to just use sendSerial() which is inherited by every module (defined in the jevois::Module base class) to send text strings.

While this may be a bit slow over the hardware serial port (115 kbps), it is very fast over USB (480 Mbps, but shared with possible video stream), so you should be able to send tons of messages before you start saturating your USB bandwisth.
answered Oct 2, 2017 by JeVois (46,580 points)
selected Oct 6, 2017 by Dextrous
...