From 5a6fd96e4815ed60876b4db9b4c01950b1ae0e96 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Mon, 15 May 2023 08:09:52 -0500 Subject: [PATCH] Rename --- meshtastic/mesh.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 28b563d..fa9dbd5 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -1500,10 +1500,10 @@ enum RemoteHardwarePinType { /* * GPIO pin can be read (if it is high / low) */ - ANALOG_READ = 1; + DIGITAL_READ = 1; /* * GPIO pin can be written to (high / low) */ - ANALOG_WRITE = 2; + DIGITAL_WRITE = 2; }