Files
pip/libs/cloud/picloudbase.cpp
2021-08-19 18:13:05 +03:00

12 lines
223 B
C++

#include "picloudbase.h"
PICloudBase::PICloudBase() : eth(PIEthernet::TCP_Client), streampacker(&eth), tcp(&streampacker) {
eth.setDebug(false);
}
PIString PICloudBase::serverName() const {
return tcp.serverName();
}