You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include <Arduino.h>
- #include "ModbusRtu.h"
- #include "MqttHelper.h"
- #include "Json.h"
- #include "Global.h"
-
- /**
- * @brief 电力设备
- *
- */
- class ElectricityDevice
- {
- private:
- const byte interruptPin = 21;
-
-
- public:
- ElectricityDevice(/* args */);
- ~ElectricityDevice();
-
- void Init();
- void Start();
- };
-
- extern ElectricityDevice _electricityDevice;
|