void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println(F("Hello Worldddddddddddddd"));
char buf[200];
memcpy_P(buf, PSTR("HI THERE!!!!!!!!!!!!!!!!!!toot"), sizeof("HI THERE!!!!!!!!!!!!!!!!!!toot"));
Serial.println(buf);
}
void loop() {
// put your main code here, to run repeatedly:
}