Screen logo, mute icon, and screen wake on new node

This commit is contained in:
HarukiToreda
2025-05-13 10:00:34 -04:00
parent efb3f85cd0
commit 9cba2e7b7f
4 changed files with 38 additions and 23 deletions

View File

@@ -18,13 +18,6 @@ bool NodeInfoModule::handleReceivedProtobuf(const meshtastic_MeshPacket &mp, mes
bool wasBroadcast = isBroadcast(mp.to);
// Show new nodes on LCD screen
if (wasBroadcast) {
String lcd = String("Joined: ") + p.long_name + "\n";
if (screen)
screen->print(lcd.c_str());
}
// if user has changed while packet was not for us, inform phone
if (hasChanged && !wasBroadcast && !isToUs(&mp))
service->sendToPhone(packetPool.allocCopy(mp));