mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-12 14:37:21 +03:00
6 lines
137 B
C++
6 lines
137 B
C++
#include "Packet.h"
|
|
|
|
Packet::Packet(uint8_t command, std::vector<uint8_t> &data) {
|
|
this->command = command;
|
|
this->data = data;
|
|
}; |