All public logs
From wikiluntti
Combined display of all available logs of wikiluntti. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 16:46, 29 November 2024 Mol talk contribs created page Arduino Potentiometer Simple Code (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 ==")