Skip to content

Instantly share code, notes, and snippets.

@arduinothai
Created May 18, 2018 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arduinothai/63374a15e932a6a95ef083381f71bcae to your computer and use it in GitHub Desktop.
Save arduinothai/63374a15e932a6a95ef083381f71bcae to your computer and use it in GitHub Desktop.
int temt6000Pin = A0;
void setup()
{
Serial.begin(9600);
}
void loop()
{
int value = analogRead(temt6000Pin);
Serial.println(value);
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment