From 4b9de4c290503670338713c09f532c8a56616eef Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 2 Jun 2019 15:02:26 +0200 Subject: [PATCH] [JDY08] Updated examples --- examples/JDY08/JDY08_Basic/JDY08_Basic.ino | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/examples/JDY08/JDY08_Basic/JDY08_Basic.ino b/examples/JDY08/JDY08_Basic/JDY08_Basic.ino index c8777772..f78b6c80 100644 --- a/examples/JDY08/JDY08_Basic/JDY08_Basic.ino +++ b/examples/JDY08/JDY08_Basic/JDY08_Basic.ino @@ -2,13 +2,23 @@ RadioLib JDY08 Example This example sends data using JDY08 Bluetooth module. + JDY08 works exactly like a Serial line, data are sent to the paired device. + + For full API reference, see the GitHub Pages + https://jgromes.github.io/RadioLib/ */ // include the library #include -// JDY08 module is in slot A on the shield -JDY08 ble = RadioShield.ModuleA; +// JDY08 has the following connections: +// TX pin: 9 +// RX pin: 8 +JDY08 ble = new Module(9, 8); + +// or using RadioShield +// https://github.com/jgromes/RadioShield +//JDY08 ble = RadioShield.ModuleA; void setup() { Serial.begin(9600);