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.
We have moved to a new forum at http://jevois.usc.edu, please check it out. The forum at jevois.org/qa will not allow new user registrations but is maintained alive for its useful past questions and answers.

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)
...