Arduino Serial Plotter Oscilloscope | Arduino Oscilloscope

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

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

  • @ryanlai9693
    @ryanlai9693 2 года назад +1

    Can you explain why this is happening with the graph and the latency with the strobing?

  • @qzorn4440
    @qzorn4440 4 года назад

    all new to me.. nice video.. thanks....:)

  • @LucaMucci13
    @LucaMucci13 5 лет назад +1

    It works, thanks!

  • @arduinocablestudio874
    @arduinocablestudio874 5 лет назад

    Great project

  • @Nutan.K
    @Nutan.K 6 лет назад +2

    how did you got that formula

    • @yogggo0gratt
      @yogggo0gratt 5 лет назад +2

      maximum in volt = 5V; maximum in bytes = 1023. 1023/5 = 204.6 (trivial)

  • @alloc7260
    @alloc7260 3 года назад

    why 204.6 ?

  • @status_pertama
    @status_pertama 6 лет назад

    nice

  • @wael8466
    @wael8466 5 лет назад +2

    Code please

    • @LucaMucci13
      @LucaMucci13 5 лет назад +3

      void setup() {
      Serial.begin(115200);
      }
      void loop() {
      int analogvalue;
      float voltage;
      analogvalue = analogRead(A0);
      voltage = analogvalue/204.6;
      Serial.println(voltage);
      }