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.

sending/reading a variable over serial

0 votes
Hi

I was wondering if there is a guide/tutorial for sending/writing a variable over serial port like from a jevois a33 to a rpi over usb. i made a modul for matchtemplate opencv and i wanted to send a signal over to a rpi if it found a match

Regards

Emil
asked May 20, 2019 in Programmer Questions by Fadds (120 points)

1 Answer

0 votes
How about this one to start:

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

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

basically you use jevois.sendSerial() to send from JeVois to Pi. From Pi to JeVois you would implement parseSerial() in your JeVois module, see

http://jevois.org/doc/ModulePythonTutorial.html
answered May 29, 2019 by JeVois (46,580 points)
...