Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. int analogIn = A0;
  2. void setup()
  3. {
  4. pinMode(A0, OUTPUT);
  5. Serial.begin(9600);
  6. }
  7.  
  8. void loop()
  9. {
  10. float Iout = (15/100);
  11. Serial.println(Iout);
  12. delay(300);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement