Files
pip/libs/cloud/picloudbase.cpp
2022-11-08 16:37:10 +03:00

12 lines
225 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();
}