Home
| pfodApps/pfodDevices
| WebStringTemplates
| Java/J2EE
| Unix
| Torches
| Superannuation
|
| About
Us
|
Redbear BLE Nano V2 - Custom Controls with pfodApp™
|
by Matthew Ford 14th December 2018
(originally posted 28th August 2017)
© Forward
Computing and Control Pty. Ltd. NSW Australia
All rights reserved.
None
of these screens are hard coded into pfodApp (the Android app).
All the screens above
are completely controlled by the code in your RedBear BLE Nano V2.
Update 14th December 2018 – See Easy Very Low Power BLE in Arduino for a alternative NanoV2 programming that uses <100uA while connected, as opposed to ~7mA for the code shown on this page below.
Update 15th November 2017 – Some BLE boards / software stacks deliver the same cmd twice in quick succession. Update to pfodApp V3.322+ and pfodParser V3.17+ to solve this. pfodApp V3.322+ adds a cmd sequence number and pfodParser V3.17+ filters out duplicate cmds.
Note: The board diagram for NanoV2 has swapped labels for A4 and A5 (https://github.com/redbear/nRF5x/tree/master/nRF52832). In fact A5 is connected to D4 and A4 is connected to D5. (See https://discuss.redbear.cc/t/nano-v2-adc-pins-miss-labelled-in-docs-pins-arduino-h/3424 )
This tutorial covers custom controls for the RedBear BLE Nano V2.0 module. If you have the previous Nano V1.0 or Nano V1.5 use this project instead.
It
is in two parts:-
The first part presents a “starter”
sketch, that when loaded into your RedBear BLE Nano V2.0, will
display an interactive graphic on pfodApp that will let you read the
Analog and Digital inputs. Change the digital pins to outputs/PWM and
set the output/PWM values.
The second part uses the free
pfodDesigner
to create custom multi-levels menus, plots and data logging that can
be displayed on pfodApp. The pfodDesigner generates all the Android
code needed for the RedBear BLE Nano V2.0. The general purpose
pfodApp handles the user display and interaction on your Android
mobile. The user display is completely controlled by the Android code
you load into your Nano. No Android programming is required.
The animated GIF above shows the operation of the RedBear BLE Nano V2.0 Starter Sketch.
To
run this sketch you need:-
RedBearLab BLE Nano V2.0 Kit –
BLE Nano module and programming module http://redbearlab.com/buy/
~US $30
USB extension cable (optional but useful) –
https://www.sparkfun.com/products/13309
~US $2
pfodApp – Android app
https://play.google.com/store/apps/details?id=au.com.forward.pfodApp
~US 10
Arduino IDE V1.8.4 –
https://www.arduino.cc/en/Main/Software
and
supporting libraries. (see
note below about updating the BLEPeripheral library from V0.4.0 to
V0.5.0)
Install Arduino IDE V1.8.4 from https://www.arduino.cc/en/Main/Software
Follow
the Arduino install guide
https://github.com/redbear/nRF5x/blob/master/nRF52832/docs/Arduino_Board_Package_Installation_Guide.md
Add
https://redbear.github.io/arduino/package_redbear_nRF5x_index.json
to the Arduino Additional Boards Manager URLs (under
File->Preferences) and then use the Arduino Board Manager to
install the RedBear
nRF52832 boards V0.0.2 (
filter your search to RedBear)
Install
the BLEPeripheral
library. Open the Library Manager in the Arduino IDE and type
BLEPeripheral
in
the search bar. Select BLEPeripheral
by Sandeep Mistry V0.5.0 and
install it.
Note:
BLEPeripheral V0.5.0 is not released as of 14th
September 2017, so install V0.4.0
and then overwrite the nRF51822.h and nRF51822.cpp files with the
updated files in this zip file, nRF51822.zip.
A
copy of that V0.4.0
arduino-BLEPeripheral-master.zip file is here .
Manually download and the pfodParser.zip and pfodDwgControls.zip libraries from here and then use Arduino IDE menu option Sketch → Import Library → Add Library to install them.
Unzip this sketch RedbearBLENanoV2Starter.zip and its supporting classes to your Arduino Sketchbook location (shown in File → Preferences).
Open
the Arduino IDE, select the BLE_Nano2 board, and open the
RedbearBLENanoV2Starter.ino
sketch
and compile and download to the BLE Nano module. There are three
warnings which can be ignored.
To program it you need to add the
USB shield shown above (under the main board). While the USB shield
is designed to plug directly into your USB port, I found that very
inconvenient on my laptop so I add a USB
extension cable.
The BLE Nano V2 now contains all the code
necessary to draw the interactive graphic and process the user's
inputs.
Install pfodApp on your Android Mobile. You will need a mobile with Android OS V4.4 or higher and one that supports Bluetooth Low Energy. Then create a BLE connection to your BLE Nano, as described in pfodAppForAndroidGettingStarted.pdf. Finally connect, and pfodApp will load the graphic shown above. Once the graphic is loaded, pfodApp caches it so next time the BLE Nano only needs to send the updates.
The sketch you have loaded uses pfodApp drawing primitives to draw the board outline and buttons and to define the user touch zones and actions. The Custom Arduino Controls for Android tutorial covers how to code your own custom controls and the Arduino101 Starter, controlled by Android/pfodApp tutorial describes how the Zoom and Pan works.
The next section describes how to use the free WISIWYG pfodDesigner to create multi-level menus to control the outputs and read and plot and log the analog inputs and generate all the code required for your RedBear BLE Nano.
The
free pfodDesignerV2
Android app lets you create custom menus and then generates all the
code for your particular BLE module. pfodApp
is then used to display your custom menu on your Android mobile and
let you control your module.
No
Android or Arduino coding is required.
The free pfodDesignerV2 is used to create the menu in a WISIWYG fashion and show you an accurate preview of how the menu will look on your mobile. The pfodDesignerV2 allows you to create menus and sub-menus with buttons and sliders optionally connected to I/O pins and generate the sketch code for you (see the pfodDesigner example tutorials) but the pfodDesignerV2 does not cover all the features pfodApp supports. See the pfodSpecification.pdf for a complete list including data logging and plotting, multi- and single- selections screens, sliders, text input, etc.
The tutorial Design a Custom menu to turn the Arduino Led on and off has step by step instructions for creating this menu using pfodDesignerV2. If you don't like the colours of font sizes or the text, you can easily edit them in pfodDesignerV2 to whatever you want and see a WYSIWYG (What You See Is What You Get) display of the designed menu.
There is only one change to make for RedBear BLE Nano V2 and that is to set it as the Target for the code generator for the new menu before adding the Led control menu item.
First you need to choose RedBear BLE Nano V2 as the Target for the code generation. When you start a new menu or edit an existing menu, the top button shows the Target board. The default is Serial.
Click on the Target button to open the Target selections.
Choose Bluetooth Low Energy button and scroll down to find the RedBearLab BLE Nano V2 option and click on it.
Then use the mobile's back button to exit the Target selections screen and return to the Edit Menu screen.
You can now continue with the Design a Custom menu to turn the Arduino Led on and off tutorial to Generate the Code, transfer it to your computer and compile and download to your RedBear BLE Nano V2. A copy of the generate code sketch is here (BLENanoV2LedController.ino)
Then connect via pfodApp from your mobile to display the menu you have just designed and control the Led by either clicking anywhere in the button or sliding the slider.
Using the Led Controller as a basis, you can add more menu items for reading or controlling the other Digital pins and for reading, plotting and logging the Analog inputs, A4 and A5. Check out the various pfodDesigner tutorials on using the various menu items. The How to Display Arduino Data on Android for Beginners tutorial covers creating plots.
The generated sketch is here (BLE_NanoV2Controller.ino)
As well as plotting the Analog values, the readings are also logged, in CSV format, to a file on your mobile for later use.
The pfodDesignerV2 only supports a sub-set of the screens that pfodApp supports. For a complete list see the pfodSpecification.pdf. The SampleRedBearBLENanoV2Screens.ino sketch includes additional screens supported by pfodApp but not included in the pfodDesigner. Most of the screens have no formatting to keep the messages clear and simple. The color selector under Sliders is an exception. You can add your own colours and font styles, using the pfodDesignerV2 as a guide. Also see the pfodDemo Android app for other examples.
The SampleRedBearBLENanoV2Screens.ino sketch needs the pfodParser.zip and pfodDwgControls.zip libraries to be installed first.
This tutorial has shown how you can easily
communicate with and control RedBearLab BLE Nano V2 boards
No
Android programming is required.
pfodApp handles all of that.
No Arduino
coding is required.
The (free) pfodDesignerV2 generates complete sketches for this and a
variety of other modules including ESP8266 and WiFi, Bluetooth and
SMS shields.
Because there is no standard for a general purpose UART connection to a BLE device, pfodApp has pre-configured a number of the common BLE boards' connection parameters so you can use the same pfodApp for all of them.
AndroidTM is a trademark of Google Inc. For use of the Arduino name see http://arduino.cc/en/Main/FAQ
The General Purpose Android/Arduino Control App.
pfodDevice™ and pfodApp™ are trade marks of Forward Computing and Control Pty. Ltd.
Contact Forward Computing and Control by
©Copyright 1996-2020 Forward Computing and Control Pty. Ltd.
ACN 003 669 994