diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2019-02-28 17:04:22 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2019-02-28 17:04:22 -0500 |
commit | d6869d1ec4bd24cd2c3eafa534f0849b25ec5607 (patch) | |
tree | 79e54ed27b39c31864895535d11399708d5a45c0 /arduino/libraries/Bluefruit52Lib/examples/Hardware/gpstest_swuart | |
parent | 614ee97bf3a2270c413527a7f35c54cbecd9e601 (diff) |
added basic code
Diffstat (limited to 'arduino/libraries/Bluefruit52Lib/examples/Hardware/gpstest_swuart')
-rwxr-xr-x | arduino/libraries/Bluefruit52Lib/examples/Hardware/gpstest_swuart/gpstest_swuart.ino | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/arduino/libraries/Bluefruit52Lib/examples/Hardware/gpstest_swuart/gpstest_swuart.ino b/arduino/libraries/Bluefruit52Lib/examples/Hardware/gpstest_swuart/gpstest_swuart.ino new file mode 100755 index 0000000..262f079 --- /dev/null +++ b/arduino/libraries/Bluefruit52Lib/examples/Hardware/gpstest_swuart/gpstest_swuart.ino @@ -0,0 +1,57 @@ +/********************************************************************* + This is an example for our nRF52 based Bluefruit LE modules + + Pick one up today in the adafruit shop! + + Adafruit invests time and resources providing this open source code, + please support Adafruit and open-source hardware by purchasing + products from Adafruit! + + MIT license, check LICENSE for more information + All text above, and the splash screen below must be included in + any redistribution +*********************************************************************/ + +/* This example show how to use Software Serial on Bluefruit nRF52 + * to interact with GPS FeatherWing https://www.adafruit.com/product/3133 + * + * Hardware Set up + * - Connect 3V and GND to GPS wing + * - + */ + +#include <SoftwareSerial.h> + +#define SW_RXD A0 +#define SW_TXD A1 + +// Declare an Software Serial instance +SoftwareSerial mySerial(SW_RXD, SW_TXD); + +void setup() { + + // Init hardware UART <-> Serial Monitor + Serial.begin(115200); + while ( !Serial ) delay(10); // for nrf52840 with native usb + + Serial.println("GPS echo test"); + + // Init Software Uart <-> GPS FeatherWing + mySerial.begin(9600); // default NMEA GPS baud +} + + +void loop() { + + // Pass data from Serial (HW uart) to GPS Wing (SW Uart) + if (Serial.available()) { + char c = Serial.read(); + mySerial.write(c); + } + + // Pass data from GPS Wing (SW Uart) to Serial (HW uart) + if (mySerial.available()) { + char c = mySerial.read(); + Serial.write(c); + } +} |