Skip to main content

Questions tagged [c-string]

A "C string" is an array of characters that ends with a 0 (null character) byte. The array, not any pointer, is the string.

Filter by
Sorted by
Tagged with
1 vote
1 answer
1k views

I have to handle a String coming in over UART containing a bunch of information, part of it is a MAC-address that I get by using String.substring(a, b) returning a 12-char String representing a mac-...
Harald Lesan's user avatar
0 votes
2 answers
852 views

I am newbie in Arduino and writing a program where I want to control the flow by using Serial monitor input (PI controller). I've read that using String() although easier it is slower than using char. ...
Ognyan Petkov's user avatar
12 votes
6 answers
5k views

I've been reading a lot over the years why we should not use the notorious String class and how heap fragmentation is bad practice and not professional and we should never use it in our programs or we'...
Nino's user avatar
  • 411
1 vote
2 answers
1k views

I have following function for my Arduino: String readLine() { String received = ""; char ch; while (myFile.available()) { ch = myFile.read(); if (ch == '\n' or ch == '\r') { ...
sharkyenergy's user avatar
-1 votes
1 answer
1k views

I have a mobile app (done using MIT App Inventor) storing some values to a Firebase database. App inventor stores all the values as strings (i.e. with quotes, and strings have quotes enclosed within ...
Somasundharam Sampath's user avatar
0 votes
1 answer
450 views

I don't understand why the formatted string is displaying ?? instead of float values. My code: #include <Arduino.h> #include <Wire.h> #include "SparkFunCCS811.h" #include <...
Zaffresky's user avatar
  • 183
1 vote
0 answers
602 views

I know this is Arduino Forum but I think this question is related to programming, I am using ESP8266 for the project. I need to convert the string incoming on the serial through UART lines and ...
Naren2312's user avatar
0 votes
2 answers
627 views

I know it's bad to use Strings due to the memory problems that can occur. I've tried to remove all instances of strings from my code. But I'm not sure about this line: http.getString().toCharArray(...
David Klempfner's user avatar
0 votes
1 answer
3k views

I am trying to publish json object into string with following snippet JSONVar data; data["chipid"] = chipId; data["co2_equivalent"] = co2_equivalent.c_str(); data["tvoc"] = tvoc.c_str(); data["...
rp346's user avatar
  • 113
0 votes
1 answer
728 views

I am still not sure what should be the exact Title for this question, because I don't know where the problem is. I am using #include <MQTTClient.h> mqtt library to subscribe on a topic. This ...
Anum Sheraz's user avatar
2 votes
1 answer
2k views

Libraries NTPClient Board Olimex ESP32-POE board Behaviour I have written a code that connects the board to a local NTP Server (which is an embedded board). I tried assigning the IP Address of the ...
Shan-Desai's user avatar
10 votes
5 answers
69k views

I wander what is the best option for formatting strings in Arduino for output. I mean what's a preferable way in the point of view of performance, memory usage – things like that. I see, people ...
zhekaus's user avatar
  • 459
0 votes
2 answers
3k views

I want to check the water level and have an SMS sent via a GSM module. Reed switches are connected to four Arduino analog inputs. I am unable to add a string and tank level (TKLVL) in program. The ...
Nikhil P's user avatar
0 votes
1 answer
2k views

I'm running a sketch whith a quite big, constant three dimensional char array (or simply, a table of strings). As this takes lots of RAM I'd like to store it in programm memory in order to keep the ...
tr01's user avatar
  • 117