all_sensors = sensor1 + "," + sensor2 + "," + sensor3;
Serial.println(all_sensors);
ln is end of line \n or Byte 10
Bluetooth DelimiterByte: 10
In the application pass that string to list using list from csv
all_sensors = sensor1 + "," + sensor2 + "," + sensor3;
Serial.println(all_sensors);
ln is end of line \n or Byte 10
Bluetooth DelimiterByte: 10
In the application pass that string to list using list from csv