Skip to content

Commit

Permalink
Fixes: #267. There was en error creating the parameters for newDevices
Browse files Browse the repository at this point in the history
  • Loading branch information
hfedcba committed Dec 9, 2016
1 parent 4218012 commit bda8e01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InsteonCentral.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class InsteonCentral : public BaseLib::Systems::ICentral

virtual bool onPacketReceived(std::string& senderID, std::shared_ptr<BaseLib::Systems::Packet> packet);
virtual std::string handleCliCommand(std::string command);
virtual uint64_t getPeerIdFromSerial(std::string serialNumber) { std::shared_ptr<InsteonPeer> peer = getPeer(serialNumber); if(peer) return peer->getID(); else return 0; }
virtual uint64_t getPeerIdFromSerial(std::string& serialNumber) { std::shared_ptr<InsteonPeer> peer = getPeer(serialNumber); if(peer) return peer->getID(); else return 0; }
virtual bool enqueuePendingQueues(int32_t deviceAddress, bool wait = false);
void unpair(uint64_t id);

Expand Down

0 comments on commit bda8e01

Please sign in to comment.