I currently have a camera iI am trying to run off an arduinoArduino. I am new to arduinoArduino and I have had trouble figuring out what serial and myserial really do. I also dontdon't understand why, when iI have something like
serial.write(0x56)
serial.write(0x56) I will get the output in the serial monitor to be V in hex, but If I have the arduinoArduino also connected to an oscilloscope, I wontwon't be able to see the signal.
Yet if I have
myserial.write(0x56)
Yet if I wonthave myserial.write(0x56), I won't see anything in the serial monitor, but will see the bits on on my oscilloscope be sent.
Also, if iI send a command to my camera, my camera should send back some hex values if the write command is sent.
I I understand I can send it commands via myserial.write(0x56)myserial.write(0x56), but how would iI read the hex values the camera would send back?