コード例 #1
0
ファイル: Main.cs プロジェクト: palortoff/hacs
        public static void Main(string[] args)
        {
            SMS77Gateway SMS = new SMS77Gateway("username", "password");

            SMS.SendSMS("00491xxxxxxx", "Das ist ein Test!", "00491xxxxxxxx", true, true, SMSType.basicplus);
        }
コード例 #2
0
ファイル: AlarmingThread.cs プロジェクト: palortoff/hacs
 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);
 }