i use jack 3.5 mm. to send and get value from blood pressure when i send some text it show "------" on the LCD display but it show "-----" for 10 sec and Disappear like blood pressure get some value and when i swap RX and TX i send some this to blood pressure monitor by Serial.write frist it show "------" and when i send something while "------" it show ERROR
Show us a circuit diagram. We can’t follow wiring looking at pictures.
Only 2 wires to the converter module DB9 connector? Missing a ground perhaps?
What Arduino are we using here? Looks like you are using an UNO and trying to use the hardware serial port used for debugging to also talk to the blood pressure monitor.
That won’t work, you’ve got 3 devices on the same serial connection: Arduino, USB to serial adapter on the Uno board, and TTL/RS232 adapter connected to the monitor. Try software serial for the blood pressure monitor.
Cross-posting is against the rules of the forum. The reason is that duplicate posts can waste the time of the people trying to help. Someone might spend 15 minutes (or more) writing a detailed answer on this topic, without knowing that someone else already did the same in the other topic.
Repeated cross-posting will result in a timeout from the forum.
In the future, please take some time to pick the forum board that best suits the topic of your question and then only post once to that forum board. This is basic forum etiquette, as explained in the sticky "How to use this forum - please read." post you will find at the top of every forum board. It contains a lot of other useful information. Please read it.
Cross-posting is against the rules of the forum. The reason is that duplicate posts can waste the time of the people trying to help. Someone might spend 15 minutes (or more) writing a detailed answer on this topic, without knowing that someone else already did the same in the other topic.
Repeated cross-posting will result in a timeout from the forum.
In the future, please take some time to pick the forum board that best suits the topic of your question and then only post once to that forum board. This is basic forum etiquette, as explained in the sticky "How to use this forum - please read." post you will find at the top of every forum board. It contains a lot of other useful information. Please read it.
Thanks in advance for your cooperation.
i sorry about that i think my post is about project guild
i so sorry to you
Yeah, don’t use pins 0 and 1 on the Arduino Uno.
They are for the hardware serial port redirected via the USB for the debugger.
Use a software serial to connect to the blood pressure monitor, use the hardware serial in the debugger to monitor/echo what is going on.
pcbbc:
Yeah, don’t use pins 0 and 1 on the Arduino Uno.
They are for the hardware serial port redirected via the USB for the debugger.
Use a software serial to connect to the blood pressure monitor, use the hardware serial in the debugger to monitor/echo what is going on.
Software serial example
Note the example just echoes everything from the PC to the software serial port and back the other way.
Just where I’d be starting.