TUTORIAL TINKERCAD ARDUINO O CONTROLE DE BRILHO DE UM LED COM POTENCIÔMETRO

Поделиться
HTML-код
  • Опубликовано: 17 дек 2024

Комментарии • 10

  • @wandersonsilva-fx1cs
    @wandersonsilva-fx1cs Год назад +1

    Parabéns professor! simples mais altamente didatico!

  • @Vanw00
    @Vanw00 Год назад +1

    Muito bom video!! Aprendi muitoo 😁

  • @Alexandre64842
    @Alexandre64842 3 года назад +1

    Muito bom professor!
    Faz muito tempo que eu não estudo linguagem de programação, pois eu gostava de ficar fazendo experiências com o Arduino. Preciso voltar aos estudos, pois, o pouco que aprendi já esqueci muita coisa.

  • @simaoaraujo5462
    @simaoaraujo5462 Год назад +3

    // C++ code
    //
    const int analogInPin = A0;
    const int analogOutPin = 6;
    int sensorVaule = 0;
    int outputVaule = 0;
    void setup() {

    Serial.begin(9600);
    }
    void loop() {
    sensorVaule = analogRead (analogInPin);
    outputVaule = map(sensorVaule, 0, 1023, 0, 255);
    analogWrite(analogOutPin, outputVaule);
    Serial.print ("Sensor= ");
    Serial.print( sensorVaule);
    Serial.print ("t\ output=");
    Serial.println(outputVaule);
    delay (2);

    }

  • @lucasrodrigues1405
    @lucasrodrigues1405 2 года назад +6

    O código não funciona, da erro

    • @crossrazerYT
      @crossrazerYT 3 месяца назад

      // C++ code
      //
      const int analogInPin = A0;
      const int analogOutPin = 6;
      int sensorVaule = 0;
      int outputVaule = 0;
      void setup() {

      Serial.begin(9600);
      }
      void loop(){
      sensorVaule = analogRead (analogInPin);
      outputVaule = map(sensorVaule, 0, 1023, 0, 255);
      analogWrite(analogOutPin, outputVaule);
      Serial.print ("Sensor= ");
      Serial.print( sensorVaule);
      Serial.print ("t\ output=");
      Serial.println(outputVaule);
      delay(2);

      }

  • @julio_cmdte
    @julio_cmdte 2 месяца назад

    peguei esse código e coloquei o led nao brilha

  • @ParisSaintGermainstmNews
    @ParisSaintGermainstmNews Год назад

    o codigo foi disponibilizado?

  • @manochaoss6706
    @manochaoss6706 7 месяцев назад

    eu fiz exatamente igual e não deu certo :(

    • @crossrazerYT
      @crossrazerYT 3 месяца назад

      // C++ code
      //
      const int analogInPin = A0;
      const int analogOutPin = 6;
      int sensorVaule = 0;
      int outputVaule = 0;
      void setup() {

      Serial.begin(9600);
      }
      void loop(){
      sensorVaule = analogRead (analogInPin);
      outputVaule = map(sensorVaule, 0, 1023, 0, 255);
      analogWrite(analogOutPin, outputVaule);
      Serial.print ("Sensor= ");
      Serial.print( sensorVaule);
      Serial.print ("t\ output=");
      Serial.println(outputVaule);
      delay(2);

      }