/* Name: BridgeProp.h Created: 29/10/2019 09:20:31 Author: Marie Faure Editor: https://github.com/fauresystems License: MIT License (c) Marie Faure Class Props for Arduino Yun and Dragino Yun shield. */ #ifndef BRIDGEPROP_H #define BRIDGEPROP_H #include #include #include "Prop.h" class BridgeProp : public Props { public: BridgeProp(const char*, const char*, const char*, const char*, const int); void begin(void(*)(String) = NULL); void setBrokerIpAddress(IPAddress, uint16_t port = 1883); private: BridgeClient _bridgeClient; }; #endif