Arduino Potentiometer Simple Code: Revision history

From wikiluntti

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

29 November 2024

  • curprev 16:4616:46, 29 November 2024Mol talk contribs 240 bytes +240 Created page with "== Introduction == Potentiometer == Code 1 == <syntaxhighlight lang="C"> int potVal = 0; void setup() { Serial.begin(9600); } void loop(){ potVal = analogRead(A0); Serial.println( potVal ); } </syntaxhighlight> == Code 2 =="