using PLX DAQ to write to different Excel cells from an Arduino
PeteA
Posts: 2
I'm trying to write to varying cells in Excel from an Arduino Uno but can't find how to do it - or if it's possible.
Serial.print((String)"CELL,SET,",A6,50);
writes the value 50 into cell A6 with no problem but as soon as I try to use a string in place of A6 it bombs out.
Might be that I'm not getting the syntax correct or might be that it's not possible.
Can anyone help?
Serial.print((String)"CELL,SET,",A6,50);
writes the value 50 into cell A6 with no problem but as soon as I try to use a string in place of A6 it bombs out.
Might be that I'm not getting the syntax correct or might be that it's not possible.
Can anyone help?
Comments
Many thanks for your help.