Skip to content

Instantly share code, notes, and snippets.

@fxprime
Created January 29, 2021 02:49
Show Gist options
  • Select an option

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

Select an option

Save fxprime/c8afe6197fb920a3a9bd8d4fa886048b to your computer and use it in GitHub Desktop.
#include <Arduino.h>
void setup() {
Serial.begin(115200);
}
void loop() {
String value = "This is string variable";
Serial.println(value);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment