标签: arrays arduino
答案 0 :(得分:1)
C++中的数组不允许使用此语法。
C++
你应该做的是这样的事情:
char[2] id; if( sx1272.packet_received.length > 5 ) { id[0] = sx1272.packet_received.data[4]; id[1] = sx1272.packet_received.data[5]; }