#include #include int main() { adc::AdcNetworkMessage msg; std::println("is ACK: {}", msg.isACK()); msg.createSET("ATTR1", snplib::snplib_serialization_params_t{}, 10, std::vector{'V', 'A', 'L'}); std::println("KEY: <{}>", msg.key()); std::println("VALUE: <{}>", msg.value()); std::println("is SET: {}", msg.isSET()); std::println("is VALID: {}", msg.isValid()); std::string str{"SET ATTRQ 32.235 dwejh kd2jl"}; msg.fromCharRange(str); std::println("KEY: <{}>", msg.key()); std::println("VALUE: <{}>", msg.value()); return 0; }