diff --git a/README.md b/README.md index 6235344..bbc689a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ +![version](https://img.shields.io/github/v/tag/Reefwing-Software/Reefwing-SBUS) ![license](https://img.shields.io/badge/license-MIT-green) ![release](https://img.shields.io/github/release-date/Reefwing-Software/Reefwing-SBUS?color="red") ![open source](https://badgen.net/badge/open/source/blue?icon=github) + # Reefwing SBUS - SBUS Library for the Arduino Nano 33 BLE and Portenta H7. + SBUS Library for the Arduino Nano 33 BLE. ## The SBUS Protocol diff --git a/examples/plotSBUS/plotSBUS.ino b/examples/plotSBUS/plotSBUS.ino index 575899d..790c8e7 100644 --- a/examples/plotSBUS/plotSBUS.ino +++ b/examples/plotSBUS/plotSBUS.ino @@ -5,11 +5,12 @@ @copyright Please see the accompanying LICENSE file. Code: David Such - Version: 2.0.0 - Date: 15/12/22 + Version: 2.0.1 + Date: 02/01/23 1.0.0 Original Release 27/03/22 2.0.0 Change Repo & Branding 15/12/22 + 2.0.1 Updated README 02/01/23 This sketch will plot the first 4 channels of SBUS data to the Arduino IDE Serial Plotter. The SBUS protocol returns a value diff --git a/examples/serialSBUS/serialSBUS.ino b/examples/serialSBUS/serialSBUS.ino index 257728c..6c52c9f 100644 --- a/examples/serialSBUS/serialSBUS.ino +++ b/examples/serialSBUS/serialSBUS.ino @@ -5,11 +5,12 @@ @copyright Please see the accompanying LICENSE file. Code: David Such - Version: 2.0.0 - Date: 15/12/22 + Version: 2.0.1 + Date: 02/01/23 1.0.0 Original Release 27/03/22 2.0.0 Change Repo & Branding 15/12/22 + 2.0.1 Updated README 02/01/23 This example sketch assumes that inverted SBUS data is being fed to pin 2 (D0/Rx) on the Nano 33 BLE (i.e., Serial1). diff --git a/library.properties b/library.properties index 8dc07dc..cf78c6c 100644 --- a/library.properties +++ b/library.properties @@ -1,8 +1,8 @@ name=ReefwingSBUS -version=2.0.0 +version=2.0.1 author=David Such maintainer=David Such -sentence=SBUS Library for the Nano 33 BLE and Portenta H7. +sentence=SBUS Library for the Nano 33 BLE. paragraph=A Fork of the Bolder Flight Systems SBUS Library. Targets the Arduino Nano 33 BLE & Portenta H7 Hardware. category=Communication url=https://github.com/Reefwing-Software/Reefwing-SBUS.git diff --git a/src/ReefwingSBUS.cpp b/src/ReefwingSBUS.cpp index 6f38ee4..6d9e678 100644 --- a/src/ReefwingSBUS.cpp +++ b/src/ReefwingSBUS.cpp @@ -1,15 +1,16 @@ /****************************************************************** @file ReefwingSBUS.cpp - @brief SBUS Library for the Nano 33 BLE and Portenta H7. + @brief SBUS Library for the Nano 33 BLE. @author David Such @copyright Please see the accompanying LICENSE file. Code: David Such - Version: 2.0.0 - Date: 15/12/22 + Version: 2.0.1 + Date: 02/01/23 1.0.0 Original Release 27/03/22 2.0.0 Change Repo & Branding 15/12/22 + 2.0.1 Updated README 02/01/23 Credits - Forked from the Bolder Flight Systems SBUS library and adapted for the Arduino Nano 33 BLE and Portenta H7. diff --git a/src/ReefwingSBUS.h b/src/ReefwingSBUS.h index 856006d..adc8d06 100644 --- a/src/ReefwingSBUS.h +++ b/src/ReefwingSBUS.h @@ -1,15 +1,16 @@ /****************************************************************** @file ReefwingSBUS.h - @brief SBUS Library for the Nano 33 BLE and Portenta H7. + @brief SBUS Library for the Nano 33 BLE. @author David Such @copyright Please see the accompanying LICENSE file. Code: David Such - Version: 2.0.0 - Date: 15/12/22 + Version: 2.0.1 + Date: 02/01/23 1.0.0 Original Release 27/03/22 2.0.0 Change Repo & Branding 15/12/22 + 2.0.1 Updated README 02/01/23 Credits - Forked from the Bolder Flight Systems SBUS library and adapted for the Arduino Nano 33 BLE and Portenta H7.