As part of my code I get the ICCID from the electron… the following code worked fine at 0.6.4 but since the latest update to 0.7.0 I get garbage characters…
Are you using SYSTEM_THREAD(ENABLED) or a non-AUTOMATIC mode?
This could mean a race condition between powering up the cellular module and your code hitting that block.
You can check for Cellular.ready() or just add some extra delay after Cellular.on() before requesting the info. SYSTEM_MODE(SEMI_AUTOMATIC) comes with the cellular modem off, so you need to switch it on first and wait for it to power up.