Example #1
0
        public static void Main(string[] args)
        {
            SMS77Gateway SMS = new SMS77Gateway("username", "password");

            SMS.SendSMS("00491xxxxxxx", "Das ist ein Test!", "00491xxxxxxxx", true, true, SMSType.basicplus);
        }
Example #2
0
 public AlarmingThread(ConsoleOutputLogger Logger, ConcurrentQueue <IAlarmingEvent> _AlarmQueue, TinyOnDiskStorage sensor_data, TinyOnDiskStorage actor_data, TinyOnDiskStorage latitude_data)
 {
     ConsoleOutputLogger = Logger;
     Alarming_Queue      = _AlarmQueue;
     SMSGateway          = new SMS77Gateway(Properties.Settings.Default.AlarmingSMS77Username, Properties.Settings.Default.AlarmingSMS77Password);
 }