Skip to content

Instantly share code, notes, and snippets.

@fxprime
Last active January 29, 2021 02:26
Show Gist options
  • Select an option

  • Save fxprime/fd16c0998c14dbfd0169edcfe9c6ff6c to your computer and use it in GitHub Desktop.

Select an option

Save fxprime/fd16c0998c14dbfd0169edcfe9c6ff6c to your computer and use it in GitHub Desktop.
void setup() {
Serial.begin(115200);
}
void loop() {
float pressure = 10013.0;
float temperature = 31;
Serial.print("Pressure : ");
Serial.print(pressure);
Serial.print(", Temperature : ");
Serial.print(temperature);
Serial.println(" degC");
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment