TinkerCad Sensors and Actuators

Sdílet
Vložit

Komentáře • 39

  • @matrixjohnson9215
    @matrixjohnson9215 Před 6 lety +7

    Thanks, I really needed this! God bless you!

    • @nata2468
      @nata2468 Před 3 lety

      Amen I always love seeing people saying God bless you it warms my heart

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

    Thanks a lot, you were very specific! This is amazing!

  • @jean-paulpetillon7802
    @jean-paulpetillon7802 Před 2 lety +1

    Excellent tuto. You are great!

  • @GMCRaptor
    @GMCRaptor Před rokem

    Very well presented and commentated 👍🇦🇺thankyou

  • @krisztinahalasz2998
    @krisztinahalasz2998 Před 4 lety

    you are a hero thank you !! and you can explain it soo well wauw respect

    • @IainMurray
      @IainMurray  Před 4 lety

      Thanks, glad these are of some use

  • @mikerosal7393
    @mikerosal7393 Před 2 lety +1

    Thanks Iain, Now I can mimic the Actuator using Arduino

  • @elnainamorata6734
    @elnainamorata6734 Před 3 lety +1

    thanks a lot! it really works

  • @faresalnagei3549
    @faresalnagei3549 Před 4 lety

    thank you mr. murray

  • @jeson1793
    @jeson1793 Před 4 lety

    gracias era pa mi clase

  • @diegoarias7921
    @diegoarias7921 Před 3 lety

    Any chance you can do this with a push button?

  • @lollo4711
    @lollo4711 Před 4 lety

    really cool! tnx

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

      Glad you like it, we have lots more in our edX MOOCs see www.edx.org/micromasters/curtinx-internet-of-things-iot . Its free!

  • @Time4yes
    @Time4yes Před 4 lety

    Does it i2c modules?

  • @shubhamankush6682
    @shubhamankush6682 Před 4 lety

    hello,
    please tell me how to add sound sensor in tinkercad
    i am not able to find sound sensor in tinkercad

  • @pisondave7847
    @pisondave7847 Před 4 lety

    sir can you upload a link to your tinker project so we can tinker it it would be a great help thank you

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

    Sir how can we add The pulse or ecg sensor as they arent available. I want to design a prototype for my model

    • @omprabhudesai
      @omprabhudesai Před 3 lety

      Hii were you able to do it or can you tell me how you did it

    • @shavezrizvi3932
      @shavezrizvi3932 Před 3 lety

      @@omprabhudesai noooo actually on tinkercad the wifi module has been removed, hence no success

  • @ARTSTARCHANNEL
    @ARTSTARCHANNEL Před rokem +2

    #include
    int reading = 0;
    Servo servo_11;
    void setup()
    {
    pinMode(A0, INPUT);
    pinMode(A1, INPUT);
    pinMode(10,OUTPUT);
    pinMode(12,INPUT);
    servo_11.attach(11);
    }
    void loop()
    {
    if(digitalRead(12) == 0){
    reading = analogRead(A0);
    analogWrite(10,(reading*0.18));
    servo_11.write((reading*0.25));
    }else{
    reading = analogRead(A1);
    analogWrite(10,(reading*0.75 - 15.09));
    servo_11.write((reading*0.53-10.65));
    }
    delay(10);
    }

  • @manjulareddy3047
    @manjulareddy3047 Před 3 lety

    Please share more videos with block coding

  • @venkatahegde4412
    @venkatahegde4412 Před 4 lety

    Hey. Nice video.
    I've made a garbage level indicator using ultrasound sensor. I am facing certain problems. Can you help me with it.

  • @olooololllo5426
    @olooololllo5426 Před 5 lety +1

    pleade i need code file for download on ardiuno

  • @abhishekkrishna5978
    @abhishekkrishna5978 Před 6 lety +1

    please share the circuit so that i can duplicate and tinker it

  • @utkarshpahare3336
    @utkarshpahare3336 Před 4 lety

    HEY, WHEN I TRIED TO DO THE SAME IT DOES'T WORK. ONLY THE TEMPRATURE WORK WITH THE LED AND THE POTENTIOMETRE AND THE SERVO DOESN'T WORK.

  • @eshettesfa346
    @eshettesfa346 Před 4 lety

    THIS VIEDO have good but please relase effective viedo

    • @IainMurray
      @IainMurray  Před 4 lety

      not quite sure what you are asking. This was used in our free on line course on edX (Internet of things, CurtinX)

    • @TCSweatyAce
      @TCSweatyAce Před 4 lety

      @@IainMurray I think he means make the video shorter

  • @bibekmagar723
    @bibekmagar723 Před 4 lety

    what are we making

  • @mateusfonteles4254
    @mateusfonteles4254 Před 5 lety

    Mine did not work fine.. When using the potentiometer it worked as in the video, when using the temperature sensor it did not move the Micro Servo (left it at 0) and turned the light to maximum, changing the temperature did nothing. Thank you!