Skip to content

Commit

Permalink
Fix temperature packet
Browse files Browse the repository at this point in the history
  • Loading branch information
Eirenliel committed Jan 27, 2022
1 parent cac4fb1 commit f778601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/network/udpclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ void Network::sendSignalStrength(uint8_t signalStrength) {
if(DataTransfer::beginPacket()) {
DataTransfer::sendPacketType(PACKET_SIGNAL_STRENGTH);
DataTransfer::sendPacketNumber();
DataTransfer::sendByte(0);
DataTransfer::sendByte(255);
DataTransfer::sendByte(signalStrength);
DataTransfer::endPacket();
}
Expand Down

0 comments on commit f778601

Please sign in to comment.