Red line | VCC | power supply input positive pole |
Black line | GND | power ground wire |
Yellow line | RX | UART receiving data line |
white line | TX | UART transmitting data line |
My apologies Klaus, I think I replied to the entire forum thread when I meant to reply to your response, but the information I provided is in this and should clear up some things you talked about. Thank youHi,
let´s say you have two cell phones. One is defective the other is good. You bring the good one to the repair?
According your headline and description the sensor is the problem.
But your picture only shows the working circuit ...
So neither in the description nor in the picture we see how you connected your sensor.
***
Also we don´t see your test code.
We don´t know what you did for debugging the circuit. (Checking power supply, checking data transfer regarding timing and voltage levels...)
Klaus
press the [ C O D E ] button ..Not sure the best way for sending code,
Here is one code I tried using. Let me know if that works. Thank you.press the [ C O D E ] button ..
pictures: press the [insert image] button. .png file format for screenshots, .jpg for photos. (don´t post code as picture, sine we can´t do search nor compile the code)
Klaus
#define COM 0x55
void setup() {
Serial.begin(115200); // USB serial monitor
while (!Serial); // Wait for connection
Serial1.begin(115200); // UART connection to sensor (TX on sensor → RX1 = pin 0)
Serial.println("Listening for distance from UART sensor...");
}
void loop() {
Serial1.write(COM); // Send 0x55 to request data
delay(100);
if (Serial1.available() >= 4) {
byte header = Serial1.read();
if (header == 0xFF) {
byte highByte = Serial1.read();
byte lowByte = Serial1.read();
byte checksum = Serial1.read();
int distance = (highByte << 8) | lowByte;
byte calcChecksum = (0xFF + highByte + lowByte) & 0xFF;
if (checksum == calcChecksum) {
Serial.print("Distance: ");
Serial.print(distance);
Serial.println(" mm");
} else {
Serial.print("Checksum mismatch! Got 0x");
Serial.print(checksum, HEX);
Serial.print(", expected 0x");
Serial.println(calcChecksum, HEX);
}
} else {
Serial.print("Unexpected header: 0x");
Serial.println(header, HEX);
}
} else {
Serial.println("Waiting for response...");
}
}
Seems to follow vendor example code, I assume that 0x55 is expected start trigger, despite of timing diagram showing a single pulse.The diagram provided shows a single LOW pulse repeated not faster than 19ms.
Your "0x55" results in 5 LOW pulses within 80 us ... surely way different than the timing diagram shows.
--> I´d start with 0x00, that results in a single 80s LOW pulse.
how do you know it´s VENDOR example code?Seems to follow vendor example code,
it's copied from product Wiki of sensor manufacturer.how do you know it´s VENDOR example code?
According to distributor info, e.g. Mouser, dfrobot is the manufacturer.I can´t even find the manufacturer´s name...
I didn't notice. Software is actually sending 0x55, but without connection, measurement won't be triggered.You say you're sending no TX data to the sensor.
>>I am then getting about 3.3v out of the yellow and white sensor wire. yellow line | RX | UART receiving data line |
white line (photo shows disconnected) | TX | UART transmitting data line |
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?