From fe66d9f525fce7cc8a173a013fa646715fc861bb Mon Sep 17 00:00:00 2001 From: Austin Lane Date: Fri, 20 Feb 2026 19:35:11 -0500 Subject: [PATCH 1/2] Add LilyGo T-Beam BPF The first/only 144-148Mhz device (for hams) --- meshtastic/mesh.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index aace7d4..190aa63 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -855,6 +855,11 @@ enum HardwareModel { */ T5_S3_EPAPER_PRO = 123; + /* + * LilyGo T-Beam BPF (144-148Mhz) + */ + TBEAM_BPF = 124; + /* * ------------------------------------------------------------------------------------------------------------------------------------------ * Reserved ID For developing private Ports. These will show up in live traffic sparsely, so we can use a high number. Keep it within 8 bits. From 93bee530c302594883dc28badad4c564b7274837 Mon Sep 17 00:00:00 2001 From: Manuel <71137295+mverch67@users.noreply.github.com> Date: Sat, 21 Feb 2026 08:36:45 +0100 Subject: [PATCH 2/2] add T-mini epaper s3 kit HW id (#863) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Thomas Göttgens --- meshtastic/mesh.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 190aa63..d7f6647 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -860,6 +860,11 @@ enum HardwareModel { */ TBEAM_BPF = 124; + /* + * LilyGo T-Mini E-paper S3 Kit + */ + MINI_EPAPER_S3 = 125; + /* * ------------------------------------------------------------------------------------------------------------------------------------------ * Reserved ID For developing private Ports. These will show up in live traffic sparsely, so we can use a high number. Keep it within 8 bits.