From reading the kickstarter electron page it states the following about text or SMS messaging.
How about voice and text messages?
While the hardware will technically support both voice and text
messages, the Electron will not be PTCRB certified for voice, and our
SIM cards won’t support either voice or text messages. If you want to
send text messages, we recommend using a web service like Twilio.
I realise sms is part of the 2G/3G mobile evolution and things are (slowly) moving away to all IP, however I still believe there is a market that want and would still demand this feature for updates/alerts (without using services like twilio).
Will the Australia Telstra sim card I receive (when I receive it with the Electron) also not allow sending SMS? I am guessing this is how the sim cards are being provisioned as part of Particle being the MVNO.
Is there any chance in the future that the capability of sending SMS's be added/provisioned (for those who would like to avoid services like Twilio)? If so would this incur an extra cost?
If I decide to purchase my own prepaid sim card with the capability of sending sms, how confident can I be (without testing before hand) the Electron will be able to send sms's?
The product we intend to sell will be mainly directed towards Australian farmers. We do plan to develop an android/ios application and also are advertising the ability to send email notifications, however; out of the 15 farmers or so we have spoken to so far nearly all of them seem inclined towards sms as the primary method of notification.
I guess it’s like that uncle/aunty/mother or father you know who only learnt how to send sms and can’t live without it.
Understood, but isn’t that what, for example, Twilio does? It send you an SMS, if you trigger it over the internet. You just move the ‘burden’ of sending that text away from the device, into the cloud.
Your customers won’t see the difference. Besides, it’s then much easier to manage all the texts, since that gets handled in one system, rather than per device.
Hi @Ben86! Great question, and I have an easy answer for you
Yes the Electron will support sending native SMS with your 3rd party SIM that has SMS capabilities.
Out of the box though, there is no Cellular.sendSMS() API that would allow you to do this.
There is however a Cellular.command() API that allows you to send AT commands and receive & parse responses. From here it would be fairly straight forward to create an in user application API like sendSMS("Hello World")
Did you manage to get this working on your end?
I’m also based in Australia trying to leverage the Telstra network to send SMS’s.
Would be great if you could share any code you have please on triggering the SMS - I checked out the ublox page… but got a bit lost (may have been in the wrong spot… but got lost when it started talking about binary messaging formats)
Hi @Cameron, I just saw your post, I am not sure how relevant this is and it may well be late, but I’ll offer it anyway. I got the Telstra API working with sending SMS’s triggered by the Photon (not Electron). I described it here: Garage Door Minder - SMS Alert for Garage Door Left Open This is a Twilio style of service. As far as I know it is currently free, but comes with some limitations (eg the sending SMS phone number is not constant). Not sure if Telstra offer a paid/better service than the free one.
That is a really good find! Telstra have some great stuff sometimes, but so hard to find!
I’ll certainly use this on some of my other projects during dev stage (saves me the Twilio fees each month!) thank you!
I’m still trying to figure out how to get the uBlox device to send SMSs direct from the device - the application we are developing for needs to have a very high up time. So if the webhooks or API service stop working, we had wanted to use the local SMS service. I’ll do some more forum searches.
Hello to all , is it possible to receive phone calls in particle electron 3g in Australia , not voice is required ,i am using either a Vodafone sim card or telstra sim card prepaid both and i simply want the electron to identify the mobile number that calls it.
The Particle SIM card does not support voice, but you can use a 3rd-party SIM card that does. The Electron does not support hardware voice (I2S) as the data lines are not connected. However neither of these will be issues for your application.
You can probably set up voice using Cellular.command, but the problem is that ring notification occurs with the RING URC. There is currently no way for user firmware to subscribe to cellular URCs, so there’s no way to know when the ring occurs.
You’d need to make a custom system firmware build that supports the RING URC and it would probably work, but this is not a supported use case of the Electron.
A bit late in reading this, but I have a set up that does this…
It monitors the RI_UC line and goes off and interrogates the modem via AT commands for incoming dialled-call CLI (nominally an incoming ‘voice’ call, but if you are only wanting to check the CLI, you don’t actually answer it). The RI_UC line is asserted for one second on incoming call (ring) and SMS events. I have used it with both Vodafone and Telstra SIMs.
I simply use the CLI to ‘authorise’ the caller and for the application to take an action for authorised calls - the call itself is rejected with an AT command.
There are some caveats on SMS handling when in ‘cloud data connected’ (blue-breathing) mode as the OS is also talking to the modem via AT commands. @rickkas7 is probably hinting at this in his response.