From 47776c5acbdd3f3d0c1db56d44ea725524816194 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 27 Dec 2019 13:19:10 +0100 Subject: [PATCH] [JDY08] Changed pin mapping --- src/modules/JDY08/JDY08.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/JDY08/JDY08.cpp b/src/modules/JDY08/JDY08.cpp index c4eee4a3..78bc596b 100644 --- a/src/modules/JDY08/JDY08.cpp +++ b/src/modules/JDY08/JDY08.cpp @@ -1,12 +1,12 @@ #include "JDY08.h" JDY08::JDY08(Module* mod) : ISerial(mod) { - + } void JDY08::begin(long speed) { // set module properties _mod->AtLineFeed = ""; _mod->baudrate = speed; - _mod->init(RADIOLIB_USE_UART, RADIOLIB_INT_NONE); + _mod->init(RADIOLIB_USE_UART); }