'I can't figure out how to send a single data from my Arduino to a single column on the excel?
I'm sending a data from my Arduino color sensor to excel using data streamer but whenever I see my data all three numbers(the red, blue and green values) appear on the same column. How can I make them appear on separate column? Thank you!
Solution 1:[1]
Got it, I just add
Serial.print(",");
before every
Serial.print(color);
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | kvd |
