Guest User

Untitled

a guest
Aug 16th, 2025
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. void setup() {
  2. Serial.begin(115200);
  3. analogReadResolution(12);
  4. }
  5.  
  6. void loop() {
  7. int value = analogRead(A0);
  8. Serial.println(value);
  9. delay(50);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment