Fun with Arduino 12 Analog Input, analog.Read() - Chane Range, map()

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ม.ค. 2025

ความคิดเห็น • 9

  • @G_Threepwood
    @G_Threepwood ปีที่แล้ว

    Rudy, I'm very late to this party -but this is the most fantastic series of videos

  • @clairemacare1921
    @clairemacare1921 4 ปีที่แล้ว +1

    Thank you for teaching the map function so clearly.

  • @drdbbajpai
    @drdbbajpai 4 ปีที่แล้ว +1

    very good explanation of code formations, evaluation of code is very essential in arduino programs, thanks for your contribution in code learning, thanks

  • @benbenameur8429
    @benbenameur8429 4 ปีที่แล้ว

    When removing the in put read analog from arduino he still show noise number , how i can eliminate thus noise ?

  • @umargul5644
    @umargul5644 3 ปีที่แล้ว

    Well done

  • @abhirupbera804
    @abhirupbera804 ปีที่แล้ว

    Can we make a pid function with analogue value?

    • @rudyshobbychannel
      @rudyshobbychannel  ปีที่แล้ว

      I'd say yes we can. The feedback signal can be read via an analog input. To make a predictable PID in software you need to have a stable sampletime. This could be done with a millis() timer, or with an external input with a stable and known frequency, that triggers an interrupt routine that takes care of the I and D. The result can be sent to an analog out (which is PWM, but if what it connected is slow enough it functions as analog).