コード例 #1
0
        private static void CreateDevicesOutOfDatapoints()
        {
            Stopwatch stopwatch = new Stopwatch();

            stopwatch.Start();
            DoLog("Creating devices from datapoints...", false);
            foreach (Datapoint datapoint in CI.datapoints)
            {
                Homie.devices.Add(Homie.CreateDeviceFromDatapoint(datapoint));
            }
            DoLog("OK", 3, false, 10);
            DoLog($"{stopwatch.ElapsedMilliseconds}ms", 3, true, 14);
            stopwatch.Reset();
            DoLog($"Total number of devices: ", false);
            DoLog($"{ Homie.devices.Count}", 3, true, 10);
        }
コード例 #2
0
        static void Main(string[] args)
        {
            // Handling CLI arguments
            foreach (string arg in args)
            {
                bool mm = false;
                bool im = false;
                switch (arg)
                {
                case "-?":
                case "--?":
                case "--h":
                case "/h":
                case "/?":
                case "-m": { mm = true; break; };

                case "-h": { im = true; IllegalArguments = true; break; };

                case "-def": { Settings.DefaultSettings(); break; };

                case "-nope": {; break; };

                case "-debug": { Settings.GENERAL_DEBUGMODE = true; break; };

                default:
                {
                    Console.WriteLine("Unknown argument: " + arg);
                    Console.WriteLine("Try -h for a list of available arguments.");
                    IllegalArguments = true;
                    break;
                }
                }
                if (mm)
                {
                    Menu.MainMenu();
                }
                if (im)
                {
                    Menu.InfoMenu();
                }
            }
            if (IllegalArguments)
            {
                return;
            }

            Menu.MainMenu();


            DoLog("Starting BachelorPad...", 4);
            if (Settings.GENERAL_FROM_FILE == false)
            {
                DoLog("Using default settings!", 4);
            }

            //if(Settings.DEBUGMODE) { Console.WriteLine(Settings.GetSettingsAsJSON()); Console.ReadLine(); }

            // For easier switching between developer machine and the Raspberry Pi meant for production use.
            if (System.Net.Dns.GetHostName().ToUpper() == "ORION")
            {
                Console.WriteLine("YOU ARE NOW RUNNING ON THE DEVELOPER MACHINE!");
                Settings.MQTT_BASETOPIC = "debugdata";
                if (ImportDatapointsFromFile("C:\\misc\\" + Settings.GENERAL_DATAPOINTS_FILENAME))
                {
                    CreateDevicesOutOfDatapoints();
                    MQTT.RunMQTTClientAsync().Wait();

                    MQTT.PublishDeviceAsync(Homie.CreateDeviceFromDatapoint(CI.datapoints[4])).Wait();
                    Console.WriteLine($"Publications: {MQTT.PublicationCounter}");
                    CI.FakeData(new byte[] { 0x0D, 0xC1, 0x05, 0x70, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0x32, 0x10, 0x0B }).Wait();
                    //CI.FakeData(new byte[] { 0x0D, 0xC1, 0x31, 0x62, 0x17, 0x00, 0x00, 0xC9, 0x00, 0x00, 0x44, 0x24, 0x01 }).Wait();
                    while (StayAlive)
                    {
                        // Nada!
                    }
                    ;
                }
                ;
                Console.WriteLine("---------------------------------------------------------");
                while (StayAlive)
                {
                    // Nada!
                }
                ;
                return;
            }
            ;


            BootWithoutError = ImportDatapointsFromFile(Settings.GENERAL_DATAPOINTS_FILENAME);
            if (BootWithoutError)
            {
                CreateDevicesOutOfDatapoints();
            }
            if (BootWithoutError)
            {
                MQTT.RunMQTTClientAsync().Wait();
            }
            if (BootWithoutError)
            {
                CI.ConnectToCI().Wait();
            }
            if (BootWithoutError)
            {
                while (StayAlive)
                {
                    // Just chill, other threads are monitoring communications...
                }
                // If this point in the code is reached, it means that a shutdown command has been given via MQTT.
                MQTT.DisconnectMQTTClientAsync().Wait();
            }
            else
            {
                DoLog("Something failed during the program startup! Please check the logs for more info.", 5);
            }

            DoLog("Terminating...", 4);
        }