What is the code used for doing the Serial()
stuff?
Iām not sure I understand the question. Do you mean what am I using Serial for, or what code am I using?
At the moment Iām just outputting some Serial data for debugging as I go. I do a āSerial.begin(9600);ā in setup() and then I print the time in loop()ā¦
hr = Time.hour();
min = Time.minute();
Serial.print("Time: ");
Serial.print(hr);
Serial.print(":");
Serial.println(min);
After fixing the serial assignments in my laptop device manager it looks like that problem is fixed as well.
Make sure your user firmware version matches the system firmware version thatās on the device. It shouldnāt ever hurt to particle update
to get the latter up to date.
Help me out here. Youāre saying the firmware on my Electron should be updated - right? But this must not be the firmware that I write and load. I assume this is the lower level stuff like the bootloader?
And what is my āuser firmware versionā?
Sorry for the dumb questions.
I think Iāve got the firmware version sorted out. I just did a āparticle updateā and updated the firmware target - both to 0.6.1.
Thanks.