Raspberry,
I have a raspberry pi 3 model B. Mi goal is to take pictures and get the gps longitude and latitude. I got three cameras to test and a gps. All of them get connected using USB ports.
I am using Python to get this data. The problem is that the devices get not recognized
And I get the following error for the camera:
raise SerialException("could not open port %s: %s" % (self._port, msg))se
SerialException: could not open port /dev/ttyACMO: [Errno 2] No such file or directory: '/dev/ttyACMO'
The gps throws a similar error.
I know the cameras and GPS are Raspberry compatibles but i think something changed
I have done a lot of research and it looks i have to do changes to the UART:
http://raspberrypi.stackexchange.com/questions/45570/how-do-i-make-serial-work-on-the-raspberry-pi3
But still i do not know if this is the correct path.
My Mac and Raspberry miss the /dev/ttyACMO.
Thanks in advance.