Two Temperature Sensor Module MAX6675 with Arduino

Sdílet
Vložit
  • čas přidán 4. 10. 2019
  • In this video you can see how I am using two K-Type temperature sensor Module MAX6675 with Arduino.
  • Věda a technologie

Komentáře • 26

  • @daniarif8511
    @daniarif8511 Před 4 lety

    Thanks for your video sir, I will try it next time.❤️

  • @vov4ikog991
    @vov4ikog991 Před 2 lety

    Thank you! This video helping me!!

  • @Presso99
    @Presso99 Před rokem

    Hi, with this design, can you read 2 separate temperature readings simultaneously over to the computer Excel?

  • @vienphattrienvaungdungvatl9994

    hey sir do y think connect 2 senssors with arduino basing on matlab plot resutls ?

  • @juancarlos-bq6ew
    @juancarlos-bq6ew Před 4 lety

    hey, i cant find the servo code in your web page is already uploading ?

  • @hondat7435
    @hondat7435 Před 3 lety

    Is it possible if I use this with LabVIEW Linx?

  • @emanueljohnson1894
    @emanueljohnson1894 Před 4 lety

    Hello - this is very interesting stuff - you mentioned that the code would be posted on your website - what is your url?

  • @emanueljohnson1894
    @emanueljohnson1894 Před 4 lety +1

    Found your website - Would you be able to post the code for the 2 and 3 thermocouple examples - what would be the maximum number of TC's for an UNO board? Thank you!

  • @maximusanelo8163
    @maximusanelo8163 Před 4 lety

    Heyyy i love your videos. I need some help please
    i have 2 electric motors each 12v
    Then i have a LED light strip also 12v
    And then theres one more UV light also 12v.
    I have the breadboard
    A arduino uno
    A Drok timer delay controller 12v-24v
    And A dsd tech hc-05 bluetooth module
    My goal is to use my phone to set a shutoff time for the 12v LED lights and the the 12v electric motor is there any way that you can make avideo of something like this

  • @user-em4oz8ub5h
    @user-em4oz8ub5h Před rokem

    спасибо

  • @Dibazz
    @Dibazz Před 3 lety +2

    Can you share the arduino sketch code? Please 🙏

  • @vishnucharansrivenkatesh2846

    Can you please share the wire diagram and code please? Im doing the exact same thing for my project ineed it asap

  • @Kp_yadav_799
    @Kp_yadav_799 Před 3 lety

    i want wiring and moduel how to get

  • @snsamma2998
    @snsamma2998 Před 4 lety +3

    Sir sent me a wiring diagram along with Arduino code

  • @ilhaminefes
    @ilhaminefes Před 6 měsíci

    Can you share the arduino sketch code?

  • @amalcs324
    @amalcs324 Před 2 lety

    CAN YOU SHARE THE CODE AND CIRCUIT DIAGRAM

  • @harivignesh7374
    @harivignesh7374 Před 2 lety

    Pl share the Arduino code bro

  • @codigokidararuama7740
    @codigokidararuama7740 Před 4 lety

    great. please share the wire diagram.

  • @sunnychhabra3582
    @sunnychhabra3582 Před 4 lety

    what is your email id?
    I am not able to connect with you. Need some information

  • @user-ri9qb7dk4i
    @user-ri9qb7dk4i Před 2 lety +1

    fake

  • @adrianescamillacaballero252
    @adrianescamillacaballero252 Před 2 měsíci +2

    #include
    double readCelsius(uint8_t cs) {
    uint16_t v;

    digitalWrite(cs, LOW);
    v = SPI.transfer(0x00);
    v = 3;
    return v*0.25;
    }
    void setup() {
    SPI.begin();
    pinMode(10, OUTPUT);
    pinMode(9, OUTPUT);
    digitalWrite(10, HIGH);
    digitalWrite(9, HIGH);
    Serial.begin(115200);
    }
    void loop() {
    Serial.print(readCelsius(10));
    Serial.print(" ");
    Serial.println(readCelsius(9));
    delay(1000);
    }