Oleksii
Member
- Joined
- Mar 18, 2020
- Messages
- 105
Hi all !
Owners of YR1035+ could see in Menu an entry "6. RS232" and probably wondered why is this for?

I figured it out !
(let me note that right here that Add: must be 00, otherwise data will be missing. And Baud can be changed, but it will not be saved when you turn device off/on)
If open it you will see this PCB:

There is once place where some chip supposed to be soldered, but it's missing:

If look on PCB traces you will see that 2 bottom go to USB D+ and D- (using 2nd PCB layer).
And 2 traces on left go to a main square chip. If touch one (which I marked by black as T) by oscilloscope, you will see some data transmitted each half a second.
I figured out that missing chip is well known CP2102, which is serial -> usb converter, when you connect it to PC and have virtual COM port appearing.
Here is more close look:

I marked KEY by red where chip KEY pin should be.
Here are pin names from datasheet:

Where to take the chip itself?
You can by a cheap converter (there are tons of such in market) and unsolder it, here an example:

On mine were not any marks on top (actually almost not visible white dot was), so it was hard to understand where is key pin after you unsolder it.
But bottom is such kind of mark on square corner:

Solder it manually (it was really hard as the ship is not for manual soldering):

and it appeared as serial port and I could read serial data !!! Wooohooo !
You can spot that I also soldered a small capacitor C11 on the PCB, which kind of needed according to typical schematic (C2 on it) and should be 0.1mF

That's all what I did.
Read data time!
Connect t USB and see a virtual com port!
I'm many years Linux user so here is my way how I did it. Example output data when I removed/inserted a 18650 cell a few times:
prepare port (some Linux magic) and see prints:
You can see some garbage at the end of each line. It's there indeed, some not ASCII bytes which I don't take care of. They should be some checksum, I guess.
Attaching also raw capture of the data, if someone needs it, find it in attachments.
I have to say that there no any software for it to read the data. I also tried read data using software for another IR meter - RC3563, but it cold not parse it correctly, so data formats are different.
Based on my success support of YR1035+ was added to Mega Cell Monitor and you can use it there.
Owners of YR1035+ could see in Menu an entry "6. RS232" and probably wondered why is this for?

I figured it out !
(let me note that right here that Add: must be 00, otherwise data will be missing. And Baud can be changed, but it will not be saved when you turn device off/on)
If open it you will see this PCB:

There is once place where some chip supposed to be soldered, but it's missing:

If look on PCB traces you will see that 2 bottom go to USB D+ and D- (using 2nd PCB layer).
And 2 traces on left go to a main square chip. If touch one (which I marked by black as T) by oscilloscope, you will see some data transmitted each half a second.
I figured out that missing chip is well known CP2102, which is serial -> usb converter, when you connect it to PC and have virtual COM port appearing.
Here is more close look:

I marked KEY by red where chip KEY pin should be.
Here are pin names from datasheet:

Where to take the chip itself?
You can by a cheap converter (there are tons of such in market) and unsolder it, here an example:

On mine were not any marks on top (actually almost not visible white dot was), so it was hard to understand where is key pin after you unsolder it.
But bottom is such kind of mark on square corner:

Solder it manually (it was really hard as the ship is not for manual soldering):

and it appeared as serial port and I could read serial data !!! Wooohooo !
You can spot that I also soldered a small capacitor C11 on the PCB, which kind of needed according to typical schematic (C2 on it) and should be 0.1mF

That's all what I did.
Read data time!
Connect t USB and see a virtual com port!
I'm many years Linux user so here is my way how I did it. Example output data when I removed/inserted a 18650 cell a few times:
prepare port (some Linux magic) and see prints:
read it then in more nice view:# tio -b 9600 /dev/ttyUSB0
# cat < /dev/ttyUSB0 | strings
022.5mR 3.5065Vxw
022.5mR 3.5065Vxw
022.5mR 3.5065Vxw
022.5mR 3.5065Vxw
022.6mR 3.5065Vw3
022.5mR 3.5065Vxw
022.5mR 3.5064Vy
022.5mR 3.5065Vxw
022.5mR 3.5065Vxw
022.5mR 3.5065Vxw
022.5mR 3.5065Vxw
022.5mR 3.5065Vxw
022.5mR 3.5065Vxw
01.47mR 3.5065V
OL mR 3.5966V
OL R 3.4558V
OL R 3.3377V
07.35 R 3.3377V5
OL R 3.0777V
OL R 2.9724V8
OL R 2.8733VV
OL R 2.7767V
OL R 2.5944V
OL R 2.5944V
OL R 2.5136Vx
OL R 2.3494V
OL R 2.2725V
OL R 2.1950Vh
OL R 2.1277V
OL R 2.0530V
OL R 1.9908V
00.00 R 1.9215V}
0.000 R 3.5065V
002.0mR 3.5065Vjy
020.9mR 3.5065V@e
021.5mR 3.5065V}
021.7mR 3.5065Vv
021.8mR 3.5065VF
022.5mR 3.5065Vxw
022.5mR 3.5064Vy
022.5mR 3.5065Vxw
022.6mR 3.5065Vw3
024.9mR 3.5065VN
OL R 3.5543V
OL R 3.4703V
OL R 3.4962VE
OL R 3.0845V
OL R 3.0845V
OL R 2.9823V9
OL R 2.8851V
OL R 2.6958V
OL R 2.6075V|q
OL R 2.5174V8
OL R 2.4388V1f
OL R 2.3573V
OL R 2.2769V
OL R 2.1300V{d
OL R 2.0641V
133.6 R 2.0641VX
00.00 R 1.9953V=
0.000 R 3.5065V
002.0mR 3.5065Vjy
020.6mR 3.5065Vpq
021.2mR 3.5065Vg
021.6mR 3.5064Vs`
021.7mR 3.5065Vv
021.9mR 3.5065VB
You can see some garbage at the end of each line. It's there indeed, some not ASCII bytes which I don't take care of. They should be some checksum, I guess.
Attaching also raw capture of the data, if someone needs it, find it in attachments.
I have to say that there no any software for it to read the data. I also tried read data using software for another IR meter - RC3563, but it cold not parse it correctly, so data formats are different.
Based on my success support of YR1035+ was added to Mega Cell Monitor and you can use it there.
Attachments
Last edited: