aboutsummaryrefslogtreecommitdiff
path: root/client/main.cpp
blob: 7a05049693951b6ba718380e073149ce4ce657dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <cstdio>
#include <string>

#include "puzbusv1.pb.h"

int main() {
	GOOGLE_PROTOBUF_VERIFY_VERSION;

	puzbus::I2CMsg test_msg;

	test_msg.set_address(0x39);
	test_msg.set_data("Test message data!");

	std::string output;
	test_msg.SerializeToString(&output);

	printf("output[%lu]:\n", output.size());
	for (size_t i = 0; i < output.size(); i++) {
		printf("%02x ", output[i]);
	}
	printf("\n");

	return 0;
}