Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
1 vote
2 answers
266 views

Confusion about String handling

I am trying to execute some webbased calls, but my string keep "disappearing", and I am highly confused about why. I can println a string directly, but if I have it in a variable, it will disappear :...
Nils Munch's user avatar
0 votes
4 answers
4k views

iterate through values in an array of strings to print

I (think I) am trying to iterate through the values of an array and print the string to a tft. I have declared the array of 4 strings, and that works fine. But when I try to print it, I get garbage. ...
John's user avatar
  • 3
0 votes
1 answer
693 views

How to get string parts from string? [duplicate]

I have this method: void getWeatherData() { String resp = ""; Process p; p.begin("python2.7"); p.addParameter("/root/weather.py"); p.run(); while (p.available() > 0) { ...
EC In Va's user avatar
-1 votes
1 answer
20k views

arduino program got error expected //primary-expression before ')' token error: //expected ';' before '}' token E

#include "pulse-sensor-arduino.h" #include "Arduino.h" #define PulseSensorbegin int pulsePin = 0; int blinkPin = 13; int fadePin = 5; int fadeRate = 0;...
Karthi Keyan's user avatar