mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
bug with virtual button fixed
This commit is contained in:
@@ -10,7 +10,7 @@ typedef std::vector<ButtonOut> MyButtonOutVector;
|
||||
class ButtonOut {
|
||||
public:
|
||||
|
||||
ButtonOut(unsigned int pin, boolean inv, String key);
|
||||
ButtonOut(String pin, boolean inv, String key);
|
||||
|
||||
~ButtonOut();
|
||||
|
||||
@@ -18,7 +18,7 @@ class ButtonOut {
|
||||
|
||||
private:
|
||||
|
||||
unsigned int _pin;
|
||||
String _pin;
|
||||
boolean _inv;
|
||||
String _key;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user