Author Topic: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera  (Read 1488 times)

0 Members and 1 Guest are viewing this topic.

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« on: February 25, 2024, 03:14:08 am »
I spent 40 $ get a Thermal Network Bullet Camera. To be honest, I was shocked when I received it.
It was very heavy. The system that connects to the network is truvision.
It's not a traditional Hikon system, which is interesting. And then I took it apart.
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #1 on: February 25, 2024, 03:49:37 am »
The interior is divided into three parts
Thermal imaging module, motherboard, power board.
It's too long to hold a motherboard.
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #2 on: February 25, 2024, 03:50:55 am »
a hole?
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #3 on: February 25, 2024, 03:52:32 am »
Thermal imaging movement is 12um, very low power consumption, very suitable for portable devices.
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #4 on: February 25, 2024, 03:53:34 am »
adv7393
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #5 on: February 25, 2024, 03:55:38 am »
motherboard cvbs
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #6 on: February 25, 2024, 03:57:25 am »
So I put together an esp32 to rs232 little thing. It can control the stop and activate the cvbs function, and power the movement.
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #7 on: February 25, 2024, 03:58:46 am »
esp32--rs232
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #8 on: February 25, 2024, 04:18:38 am »
However, I finally encountered a problem that I did not understand.
The cvbs output of the motherboard was completely normal, but there was a problem with the cvbs output of the movement, which I could not solve.


 :scared: :scared: :scared: :scared: :scared:

module cvbs output normal speed


module cvbs output 1/10 speed




« Last Edit: February 25, 2024, 04:23:58 am by isuzulake »
 
The following users thanked this post: Fraser

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #9 on: February 25, 2024, 04:20:52 am »
motherboard output cvbs

 
The following users thanked this post: Fraser

Offline An0v0meo~

  • Newbie
  • Posts: 3
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #10 on: March 01, 2024, 08:25:32 am »
 How do you control this core?  Send some command through the serial port? I'm a little curious about what the interface of this core is
 

Offline isuzulakeTopic starter

  • Contributor
  • Posts: 14
  • Country: cn
Re: teardown DS-2TD2138-7/QY Thermal Network Bullet Camera
« Reply #11 on: March 03, 2024, 01:21:31 pm »
rs232,control it.for example nuc


unsigned char b[7]={0xF0,0x03,0x36,0x11,0x00,0x47,0xFF};

void setup(){
  Serial.begin(19200);
  pinMode(2, INPUT_PULLUP);
 
}

void loop(){
  if (digitalRead(2) == LOW) {
    if (digitalRead(2) == LOW) {
      while (digitalRead(2) == LOW) {
      }
      Serial.write(b,7);

    }
    delay(500);

  }

}
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf