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.

Transmiting data through COM-port

0 votes

Hello, I purchased a JeVois, but I'm junior in programming. Can you talk me, how I can recieve data from camera (exp. QR-code data or converted number from tracking) to virtual terminal or transmit to Arduino this data? Describe my steps, please.

asked Jul 14, 2017 in Programmer Questions by Deatherkill (210 points)

1 Answer

0 votes

Have a look at these:

http://jevois.org/tutorials/UserArduinoIDE.html to learn about how to connect to JeVois using a serial terminal

once you are connected, you can send commands to JeVois:

http://jevois.org/doc/UserCli.html (there are more instructions on how to connect from PC, Mac, Linux on that page too)

To turn on serial messages, you just need to instruct JeVois where to send them:

setpar serout Hard

will send to the 4-pin port, and

setpar serout USB

will send to the serial-over-USB connection. You can also use setpar serout All to send to both.

Finally, you can select the verbosity of the messages, using parameter serstyle, see here:

http://jevois.org/doc/UserSerialStyle.html

Fo that last one to work, you need to flash the latest microSD from http://jevois.org/start

Also have a look at this tutorial, where we go over setting parameters in more details:

http://jevois.org/tutorials/UserParameters.html

answered Jul 18, 2017 by JeVois (46,580 points)
...