Ejemplo n.º 1
0
        public static void Main()
        {
            // Bluetooth command interface on 'O Molecule' device. You may need to choose a different serial port for your device.
            var fonaPort = new SerialPort("COM2", 9600, Parity.None, 8, StopBits.One);
            _fona = new FonaDevice(fonaPort);
            _fona.ResetPin = _resetPin;
            _fona.RingIndicatorPin = _ringIndicatorPin;
            _fona.PowerStatePin = _powerStatePin;
            _fona.OnOffKeyPin = _keyPin;

            // Make sure we are powered on
            if (!_fona.PowerState)
                _fona.PowerState = true;

            // Reset the device to a known state
            _fona.Reset();

            // Make sure we get the local tower time, if available
            if (!_fona.RtcEnabled)
                _fona.RtcEnabled = true;

            //            _fona.FactoryReset();

            // Watch for ringing phones and manual changes to the power state
            _fona.Ringing += FonaOnRinging;
            _fona.PowerStateChanged += FonaOnPowerStateChanged;

            _fona.EnableCallerId = true;
            _fona.CallerIdReceived += FonaOnCallerIdReceived;
//            if (!_fona.EnableSmsNotification)
//                _fona.EnableSmsNotification = true;
            _fona.SmsMessageReceived += FonaOnSmsMessageReceived;

            Debug.Print("IMEI = " + _fona.GetImei());

            FonaDevice.NetworkStatus status;
            do
            {
                status = _fona.GetNetworkStatus();
                if (status.RegistrationStatus == FonaDevice.RegistrationStatus.Searching)
                {
                    Debug.Print("Searching...");
                }
                if (status.RegistrationStatus != FonaDevice.RegistrationStatus.Home && status.RegistrationStatus != FonaDevice.RegistrationStatus.Roaming)
                    Thread.Sleep(1000);
            } while (status.RegistrationStatus != FonaDevice.RegistrationStatus.Home && status.RegistrationStatus != FonaDevice.RegistrationStatus.Roaming);

            Debug.Print("SIM CCID = " + _fona.GetSimCcid());

            //_fona.SendSmsMessage("0000000000", "Hello there\nThis is a test.");

            Debug.Print("We are currently connected to : " + status.RegistrationStatus.ToString());
            if (status.LocationAreaCode!=null)
                Debug.Print("   Location area code : " + status.LocationAreaCode);
            if (status.CellId!=null)
                Debug.Print("   Cell ID : " + status.CellId);

            Debug.Print("Current RSSI : " + _fona.GetRssi());

            var count = _fona.GetSmsMessageCount();
            Debug.Print("There are " + count + " received sms messages in the store");

            Debug.Print("These are your unread messages");
            var messages = _fona.GetSmsMessages(SmsMessageStatus.ReceivedUnread, false);
            foreach (var message in messages)
            {
                Debug.Print("   Index        : " + message.Index);
                Debug.Print("   Phone number : " + message.Number);
                Debug.Print("   Address Type : " + message.AddressType);
                Debug.Print("   Status       : " + message.Status);
                Debug.Print("   Timestamp    : " + message.Timestamp);
                Debug.Print("   Body         : " + message.Body);
                Debug.Print("");
            }

            Debug.Print("These are your read messages");
            messages = _fona.GetSmsMessages(SmsMessageStatus.ReceivedRead, false);
            foreach (var message in messages)
            {
                Debug.Print("   Index        : " + message.Index);
                Debug.Print("   Phone number : " + message.Number);
                Debug.Print("   Address Type : " + message.AddressType);
                Debug.Print("   Status       : " + message.Status);
                Debug.Print("   Timestamp    : " + message.Timestamp);
                Debug.Print("   Body         : " + message.Body);
                Debug.Print("");
            }

            Debug.Print("Battery Voltage : " + _fona.GetBatteryVoltage());
            Debug.Print("Battery charge state : " + _fona.GetBatteryChargeState());
            Debug.Print("Battery charge percentage : " + _fona.GetBatteryChargePercentage() + "% of fully charged.");
            Debug.Print("ADC Voltage : " + _fona.GetAdcVoltage());

            _fona.Apn = "internet";
            _fona.GprsAttached = true;

            var gprsState = _fona.GprsAttached;
            Debug.Print("GPRS is " + (gprsState ? "Attached" : "Detached"));

            // This is a bit of a hack. The http interactions are complex and async and if other commands
            //   are sent, it can break the protocol between us and the Fona. The fix in FonaDevice will be
            //   a bit involved, so I am using this hack in the meantime to suspend the time query in the
            //   loop below until the http request completes.
            _httpRequestInProgress = true;
            _fona.HttpResponseReceived += FonaOnHttpResponseReceived;
            _fona.SendHttpRequest("GET", "http://hell.org/", false);

            bool state = true;
            int iCount = 0;
            while (true)
            {
                _onboardLed.Write(state);
                state = !state;
                Thread.Sleep(500);
                if (!_httpRequestInProgress)
                {
                    if (++iCount == 20)
                    {
                        Debug.Print("Current time = " + _fona.GetCurrentTime().ToString());
                        if (_fona.GprsAttached)
                            Debug.Print("GPRS is currently attached");

                        iCount = 0;
                    }
                }
            }
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            if (args.Length < 1)
            {
                Console.WriteLine("Usage: fonatest COMX (for example: fonatest COM1)");
                return;
            }

            var port = new SerialPort(args[0], 9600, Parity.None, 8, StopBits.One);
            var fona = new FonaDevice(port);

            fona.Reset();

            bool done = false;
            do
            {
                Console.WriteLine();
                Console.Write("Fona test> ");
                var command = Console.ReadLine();
                var tokens = command.Split(new[] {' ', '\t'});
                if (tokens.Length > 0)
                {
                    try
                    {
                        switch (tokens[0].ToLower())
                        {
                            case "?":
                            case "help":
                            case "h":
                                ShowHelp();
                                break;
                            case "quit":
                            case "q":
                                done = true;
                                break;
                            case "reset":
                                fona.Reset();
                                Console.WriteLine("hard reset completed");
                                break;
                            case "getsimccid":
                                Console.WriteLine("SIM ccid : " + fona.GetSimCcid());
                                break;
                            case "getimei":
                                Console.WriteLine("IMEI : " + fona.GetImei());
                                break;
                            case "unlock":
                                string code;
                                if (tokens.Length > 1)
                                {
                                    code = tokens[1];
                                }
                                else
                                {
                                    Console.Write("unlock code:");
                                    code = Console.ReadLine();
                                }
                                if (!string.IsNullOrEmpty(code))
                                    fona.UnlockSim(code);
                                break;
                            default:
                                Console.WriteLine("Unrecognized command. Type 'help' for a list of commands.");
                                break;
                        }
                    }
                    catch (Exception exc)
                    {
                        Console.WriteLine(exc);
                    }
                }

            } while (!done);
        }