Compare commits

...

82 Commits

Author SHA1 Message Date
cc7fec9ae0 upm: version 1.6.0
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2018-02-20 07:45:15 -08:00
4a1eb99d6d doxygen: updated library brief description tags
Touched on all library brief descriptions for better integration with ISS and fixed a few typos and connection tags in the process.

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2018-02-14 11:33:09 -08:00
a12baf379f doxygen: updated descriptions to clean up @con tags for xml generation
This ensures the generated xml paragraphs for the connection field won't have nested children and hence should be readable by the ISS parser properly

Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2018-02-13 11:37:08 -08:00
38817b72dc pydoc: Fixed mix of python2/3 modules with pydoc
The pydoc target copies python binaries and modules to pyupm.  Since the
find command didn't make a distinction between python2/3 modules, a mix
of each could end up in pyupm.  If sphinx runs under a mismatching
interpreter (mismatching against the python binaries) the build would
fail with load errors

    * Only copy python2 modules (and binaries) to pyupm directory
    * Explicitly run the sphinx tools w/python2
    * Removed doc dependency to each library target (not needed).

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-02-12 16:15:59 -08:00
fe7bd75c91 C: Fixes for sign compares in C libraries
Added explicit error for sign compares to CMake.  Updated a handful of C
source which compared unsigned vs signed.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-02-07 14:29:35 -08:00
460fdc2eb5 Travis-ci: Switch from curl to wget for automation
Currently ~2/5 UPM travis-ci jobs are failing with an SSL error from curl
when grabbing the 1.9.0 version of docker-compose.  This commit is a
brute-force attempt to make this go away.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-02-07 14:11:10 -08:00
9d51454290 FindNodejs: extend search path to detect ubuntu provided nodejs
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2018-02-07 10:36:42 -05:00
6f72c52a44 CMake: Update FindNpm module and usage
FindNpm REQUIRE functionality was not provided by FindNpm.cmake.
UpdatedUpdated FindNpm to extract version, global node_modules
directory, and to fail if REQUIRE was set and npm was not found.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-02-06 14:11:28 -08:00
7d83e8c569 FindNodejs: Updated to find node<version>
Updates to the FindNodejs.cmake module to find newer installs of nodejs
across other distros.  For example openSUSE: /usr/include/node6/node.h

    * Added PATH_SUFFIX to find_path for node.h.
    * Standardized usage of message() (added STATUS)
    * Call find_package_handle_standard_args with version
    * Reformatted to look uniform.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-02-06 09:35:57 -08:00
96bcfc9128 lis2ds12: remove surplus accFactor coefficient
As we've established in PR #623 (adding lis3dh support), this coefficient
is not needed and actually is cancelled out in calculations, so remove it.

Signed-off-by: Alex Tereschenko <alext.mkrs@gmail.com>
2018-01-28 11:00:27 +01:00
6be656d5b0 Java: Added loadLibrary macro for packages
These four libaries were previously blacklisted for building Java
packages.  Updating to include loadLibrary macro.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 14:55:44 -08:00
3cfea676e2 lcd: Renamed 'i2clcd' library to 'lcd'
All other upm library directories match their corresponding library
name, the i2clcd was an outlier which caused problems for CMake and
testing.

    * Replaced usage of i2clcd with lcd
    * Renamed source files and examples
    * Updated examples to use correct class
    * Updated documentation where necessary (left changelog sections)

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 13:00:53 -08:00
f64060b9d2 pydoc: Removed include for sensor specific _doc.i files
There is a single monolithic .i file which provides documentation for
the python methods.  The per-sensor flow is not used.  Removing for now,
may investigate implementing a per-sensor doc.i file again in the future.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 11:55:54 -08:00
36ebd15abc java_blacklist: Enable Java blacklisted modules
Enable building java wrappers for a few that were previously
blacklisted.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 11:55:54 -08:00
23a57b8c90 nrf24l01: Initialize member variable
Initialize a member variable pointer to NULL.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 10:42:05 -08:00
666452e873 SWIGJAVA: Remove the last JAVA ifdefs from src
Removed all references to #ifdef SWIGJAVA and JAVACALLBACK from the
library source.  All java-specific source code has been moved to the
corresponding library's .i file for java.

    * Update library source
    * Update examples where necessary
    * The function pointer methodology has been remove from libraries
      which provided callbacks as both a class and a function pointer
      implementation.  Examples were updated to use the class version
      of callbacks.
    * Updated documentation for SWIGJAVA

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 09:31:05 -08:00
d49ab2ac95 SWIG: Added documentation to _upm.i
Includes documentation on the macros provided as well as a top-level
description of the file.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 09:31:05 -08:00
d06e632f3b SWIG: Move from include->import
Do no expose _upm.i in the wrapper code.  Also updated syntax to use a
relative path to _upm.i.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 09:31:05 -08:00
e192a125f3 Added new macros for installISR and applied where possible. 2018-01-24 09:31:05 -08:00
63b2b33df7 Moved SWIG code from C++ files (hpp and cxx) to SWIG interface files (.i). Added getter/setter methods for classes with protected or private vars. 2018-01-24 09:31:05 -08:00
2551596309 Added the JAVA_JNI_LOADLIBRARY macro for the jniclasscode pragma included in _upm.i for all java SWIG interface files. 2018-01-24 09:31:05 -08:00
6725559669 JAVA: Remove library source compile from JAVA packages
Previously the JAVA packages re-compile UPM library source files.  This
was a work-around for compiling JAVA-specific functionality from the UPM
source into the SWIG'ed JAVA pacakges.

This commit removes the source from the JAVA SWIG compile and provides
an example on how to add the JAVA-specific code with a swig extend call.

    * Added _upm.i file for %import (not %include)
    * Added macros to _upm.i; 1 which performs the loadLibrary, and one
      which adds the java installISR runnable.
    * Updated the src/CMakeLists.txt file to NOT build library src into
      pacakges.
    * Updated the a110x library with examples on how to use the macros.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-24 09:30:23 -08:00
680649ba6f zfm20: Use mraa::Uart instead of tty
Updated the ZFM20 class to use UART functionality provided through the
mraa::Uart class instead of using the UART directly.

    * Switch to mraa::Uart
    * Added raw uart string constructor, closes #621
    * Updated examples
    * Added a common.i to minimize interface duplication
    * Removed pointers from C++ functions where references are
      preferable
    * Removed dependency on termios
    * Added typedefs to handle pass-by-reference
    * Removed flushes
    * Removed code after throws

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-23 15:51:54 -08:00
74b5ec00dc Java: Added an unresolved symbol check for Java packages
Tell the linker to error on unresolved symbols.  This enables future
Java work (removing library source from Java packages) by flagging
missing reference.s

TODO: Move this up one level to all libraries.  The reason this was not
done in the same commit is that the NodeJs libraries contain unresolved
references which must come from node but remain unresolved in the NodeJs
packages.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-22 16:47:42 -08:00
abefdfc756 CMake: Moved swig macros to functions
Switched these macros to functions so changes at the
upm_swig_<extension> level don't propogate further than necessary.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-22 16:47:42 -08:00
f97a62b055 Threading: Scrubbed usage of threading in libraries
Removed include for pthreads from libraries where it appears NOT to be
used.  Added ${CMAKE_THREAD_LIBS_INIT} to CMakeLists.txt for libraries
which appear to require threading.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-22 16:47:42 -08:00
7422ec937c JSON: Fixing Sensor Name field
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2018-01-18 13:26:34 -05:00
a842898bd5 lis3dh: add sensor support based on lis2ds12 module
Adding STMicro LIS3DH sensor support. This module is based on
the one for lis2ds12 (thanks, jontrulson!), but as sensors are
noticeably different, the contents underwent major rework.

Examples and basic API are left the same.

Tested on Intel Edison with Arduino board using both I2C and SPI.

Signed-off-by: Alex Tereschenko <alext.mkrs@gmail.com>
2018-01-16 20:30:34 -08:00
76949d9358 JSON: Correcting the Sensor Class field
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2018-01-16 15:23:33 -05:00
b244fe45d1 led: update to use gpioled if desired, better C code wrapper
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2018-01-12 08:19:44 -08:00
b367a63010 upm: fix pin and bus types to allow subplatform usage in C libs
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2018-01-12 08:15:36 -08:00
a5680d9b9a Doxygen: Turn off messages
Turn off non-warning/error doxygen messages to clean up the build log.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-01-11 11:53:50 -08:00
a6111a83b5 JSON: Correcting bad sensor names
Signed-off-by: malikabh <abhishek.malik@intel.com>
2018-01-10 13:47:57 -05:00
450f071f7d JSON: Correcting the Sensor Class tag BMX055
Signed-off-by: malikabh <abhishek.malik@intel.com>
2018-01-10 11:48:18 -05:00
82c8acf0fe examples/lis2ds12.py: fix comment typo
Signed-off-by: Alex Tereschenko <alext.mkrs@gmail.com>
2018-01-07 19:46:05 +01:00
a65cd2e59b lis2ds12.{h,hpp}: add missing parameter description
Signed-off-by: Alex Tereschenko <alext.mkrs@gmail.com>
2018-01-04 16:29:06 -08:00
c154ec6cb8 ad8232: Removed C example (doesn't exist)
Previous commit failed because the C examples doesn't exist.  The
version BEFORE that passes even though the C example filename pointed to
a test for a different sensor library.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-12-05 16:31:18 -08:00
d9d48e939f ad8232: Fixed copy/paste error in json
bmp280.c -> ad8232.c

Also converted to unix line endings.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-12-05 16:09:06 -08:00
b1a49f0d3c rhusb: Memory leak fix in sendCommand
Fix for case where dataAvailable always returns true.  Previously, if
this ever happened (eg mock platform), string resp is resized until the
system is out of memory.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-11-27 15:40:03 -08:00
ac89a4a130 examples: Add install component for all examples
Provide the functionality to install all UPM examples to
DATADIR/upm/examples.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-11-16 12:07:00 -08:00
f848deb35b components: Refactor UPM install components
Removed the per-target install component in favor of a limited set of
insinstall components.

Available install components are: "upm" "upm-dev" "upm-java"
"upm-nodejs" "upm-python2" "upm-python3"

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-11-16 12:00:42 -08:00
71b2b9b1fc JSON: Install JSON library descriptor files
Install the provided json files to DATADIR.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-11-10 16:17:18 -08:00
18b8ca2633 examples/python: Add/update shebang line
Added/updated the shebang line on all python examples with:

Also chmod +x a few of the python examples.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-11-02 15:39:45 -07:00
a96c607fb5 pyupm_led: Fixed example for led
This commit fixes issue 614.  Updated the example to use pyupm_led as
the module name (and skip the local module rename).

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-11-02 14:52:41 -07:00
bc4f124d54 sensortemplate: Use SensorTemplate as class name in json
Replace TemplateItem with SensorTemplate in the sensortemplate.json and
json ctest.  Change to contributions.md which removes all objects
with a key starting with "//" from the generated sensor .json file.
This allows the json ctest to pass OOTB for new sensor libraries
generated from the make_new_sensor function.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-11-02 13:21:27 -07:00
35e4fc012e travis: build examples in additional jobs
Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
2017-10-19 13:57:41 -07:00
4037ec517c curieimu.hpp: Add pthread include to lib header
CurieIMU example includes curieimu.hpp, which uses pthread symbols but
does not include pthreads.h, and thus fails building.  The library
builds successfully because the source file includes the pthread
header before including curieimu.hpp.

    * Moved pthread.h include from src to header.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-10-12 10:51:09 -07:00
40084ea651 docs: improve android things docs
* Add documentation on how to build android packages
* Check env vars before running build-android.sh
* Add doc strings to build-android.sh

Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
2017-10-11 14:59:55 -07:00
91876d48ed travis: use images from inteliotdevkit
Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
2017-10-11 14:46:02 -07:00
b9010059ad upm: v1.5.0
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-10-10 12:07:59 -07:00
166332744e docs: updated group inclusion for 2 temperature sensors
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-10-10 12:07:32 -07:00
614c4a516b ecezo: use strncat instead in send_command()
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-10-10 10:48:17 -07:00
40e73e648a docs: require specific version of doc tools
Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
2017-10-05 09:48:26 -07:00
153d8cfb12 doxy: ignore sensortemplate for documentation
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-10-03 17:50:51 -07:00
cffaf5c6ba documentation.md: finalized content for writing sensor documentation
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-10-03 17:41:24 -07:00
ab841ef591 documentation.md: updated to explain the new JSON format for sensors
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-10-03 16:11:23 -07:00
5228df9a8b docs: remove empty lines in create_java_bindings
Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
2017-10-02 17:29:36 -03:00
b75a9daee4 fix markdown syntax
Signed-off-by: Benjamin Cabé <benjamin.cabe@eclipse-foundation.org>
2017-10-02 17:29:36 -03:00
6cc5c9691d Examples: Removing MRAA reference from examples
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-10-02 10:41:07 -07:00
e8aeaff162 curieimu: adding missing include for c++ example
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-09-27 16:52:24 -07:00
694034d052 Cmake: Bumping up required MRAA version
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-26 18:58:54 -07:00
fc17744104 readme: more small changes and added logo
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-09-25 16:56:53 -07:00
3b8f215590 docs: minor update on permission requirements
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-09-25 13:49:11 -07:00
e22f62f948 readme.md: update contents and ide page links/images
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
2017-09-22 11:33:41 -07:00
5cefe7f5f3 examples: Remove heap allocation from C++ examples
Cleanup of UPM C++ examples.  Switched from heap allocation to
stack allocation when possible.  This simplifies the samples since it
removes the need for explicit memory management.  A script was used to
identify and replace pointer use.  To simplify the replace script, I
re-formatted the C++ examples using the UPM .clang-format file.
Unfortuantely this changes the look of the UPM C++ examples to a large
degree.  However, examples will now have a standard look/feel and
uniform formatting.

    * Ran clang-format w/provided UPM .clang-format file
    * Removed new's/delete's whenever possible (left those in interface
      examples)
    * Added IIO sensor library implementation of callback void* arg
    * Converted all sleeps to upm defined delays (added header when
      necessary)
    * Scrubbed CXX example includes

Signed-off-by: Noel Eck <noel.eck@intel.com>
2017-09-19 12:41:58 -07:00
bd6e4ec786 cmake: use swig_add_modules if cmake > 3.7
swig_add_module has been deprecated

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-18 14:42:07 -07:00
2f9132c429 AQI: Fix another typo in AQI calculation tablet.
Fixed the table.
Update the link of reference document.

Signed-off-by: Rex Tsai (蔡志展) <rex.cc.tsai@gmail.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-18 11:49:12 -07:00
e734459ddd AQI: Fix a typo in AQI calculation tablet.
Signed-off-by: Rex Tsai (蔡志展) <rex.cc.tsai@gmail.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-18 11:48:47 -07:00
cc3721128e JSON: Fixing new JSONs
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-14 22:17:43 -07:00
28380f2bfa Minor JSON fixes
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-14 17:52:55 -07:00
303323fa3a JSON: Adding ctest
This commit adds node based tests provided by Nico to the ctest
framework already established in UPM.

Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-14 17:52:52 -07:00
0bf4a38f5e check for examples and images path
Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-14 17:52:49 -07:00
e441c343d8 use sensortemplate.json metadata to test json files
Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-14 17:52:47 -07:00
60816d8f2a sensortemplate: added JSON for sensortemplate
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-14 17:52:45 -07:00
ef681a0ab5 add initial jsonlint and mocha test for json files
[ci skip]

Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-09-14 17:52:17 -07:00
f37236fa01 MMA7660: changed mraa i2c read call
The mraa_i2c_read_bytes_call didn't work with firmata based
platforms and was changed to mraa_i2c_read_bytes_data call which
worked.

Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-08-28 16:40:16 -07:00
aa047d6b5c bno055: enhance error detection and propagation
This patch reworks error handling in the C driver to more reliably detect
errors, and for C++, throw exceptions when they are detected.

The C++ API is unchanged aside from the fact that more methods will
throw an exception on errors now.

This addresses the error handling deficiencies reported in Issue #593.

Signed-off-by: Jon Trulson <jtrulson@ics.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-08-21 13:53:27 -07:00
0345a8e9f1 Fixing minor issues in json files
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-08-18 12:06:16 -07:00
5bdd7a4c03 JSON: Modifying access permissions
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-08-18 12:02:32 -07:00
3ca7889755 fixed JSON keys
Signed-off-by: Wai Lun Poon <wai.lun.poon@intel.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-08-18 11:55:39 -07:00
c5cdfc702c added JSONs form Blain
Signed-off-by: Wai Lun Poon <wai.lun.poon@intel.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2017-08-18 11:55:39 -07:00
a99e32fc13 sonar: remove sonar-scan from allow_failures
Signed-off-by: Nicolas Oliver <dario.n.oliver@intel.com>
2017-08-18 11:20:43 -07:00
1335 changed files with 19114 additions and 13805 deletions

3
.gitignore vendored
View File

@ -11,3 +11,6 @@ build*/
# Temp files # Temp files
*.swp *.swp
*~ *~
# Node modules
**/node_modules

View File

@ -7,15 +7,11 @@ services:
- docker - docker
before_install: before_install:
- sudo rm /usr/local/bin/docker-compose - sudo wget -q https://github.com/docker/compose/releases/download/1.9.0/docker-compose-`uname -s`-`uname -m` -O /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/1.9.0/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
jobs: jobs:
fast_finish: true fast_finish: true
allow_failures: allow_failures:
- env: TARGET=sonar-scan
- env: TARGET=ipk - env: TARGET=ipk
include: include:
- &run-with-clang - &run-with-clang
@ -72,6 +68,8 @@ jobs:
- docker-compose run ${TARGET} - docker-compose run ${TARGET}
- <<: *run-additional-jobs - <<: *run-additional-jobs
env: TARGET=android env: TARGET=android
- <<: *run-additional-jobs
env: TARGET=examples
- <<: *run-additional-jobs - <<: *run-additional-jobs
env: TARGET=sonar-scan env: TARGET=sonar-scan
- <<: *run-additional-jobs - <<: *run-additional-jobs

View File

@ -104,6 +104,7 @@ endif (WERROR)
upm_add_compile_flags(C ${C_CXX_WARNING_FLAGS} upm_add_compile_flags(C ${C_CXX_WARNING_FLAGS}
-Winit-self -Winit-self
-Wimplicit -Wimplicit
-Wsign-compare
-Wmissing-parameter-type) -Wmissing-parameter-type)
# Set CXX compiler warning flags at top-level scope and emit a warning about # Set CXX compiler warning flags at top-level scope and emit a warning about
@ -111,6 +112,7 @@ upm_add_compile_flags(C ${C_CXX_WARNING_FLAGS}
upm_add_compile_flags(CXX ${C_CXX_WARNING_FLAGS} upm_add_compile_flags(CXX ${C_CXX_WARNING_FLAGS}
-Wnon-virtual-dtor -Wnon-virtual-dtor
-Woverloaded-virtual -Woverloaded-virtual
-Wsign-compare
-Wreorder) -Wreorder)
# Allow exception error handling for Android C++ # Allow exception error handling for Android C++
@ -123,7 +125,7 @@ find_package (PkgConfig REQUIRED)
# Force a libmraa search and minimum required version every time a config is generated # Force a libmraa search and minimum required version every time a config is generated
unset(MRAA_FOUND CACHE) unset(MRAA_FOUND CACHE)
set(MRAA_MINIMUM 1.7.0) set(MRAA_MINIMUM 1.9.0)
pkg_check_modules (MRAA REQUIRED mraa>=${MRAA_MINIMUM}) pkg_check_modules (MRAA REQUIRED mraa>=${MRAA_MINIMUM})
# Also, get full path to the mraa library # Also, get full path to the mraa library
find_library(MRAA_LIBRARY NAMES mraa HINTS ${MRAA_LIBDIR}) find_library(MRAA_LIBRARY NAMES mraa HINTS ${MRAA_LIBDIR})
@ -149,6 +151,9 @@ find_package (JPEG)
# Find nodejs # Find nodejs
if (BUILDSWIGNODE) if (BUILDSWIGNODE)
find_package (Node REQUIRED) find_package (Node REQUIRED)
if (BUILDTESTS)
find_package (Npm REQUIRED)
endif (BUILDTESTS)
endif (BUILDSWIGNODE) endif (BUILDSWIGNODE)
# Find JAVA/JNI # Find JAVA/JNI
@ -208,7 +213,7 @@ include (GetGitRevisionDescription)
git_describe (VERSION "--tags") git_describe (VERSION "--tags")
# If git_describe fails, use a dirty version # If git_describe fails, use a dirty version
if (${VERSION} MATCHES -NOTFOUND) if (${VERSION} MATCHES -NOTFOUND)
set (VERSION "v1.3.0") set (VERSION "v1.6.0")
message (WARNING "Failed to retrieve UPM version with 'git describe' (using " message (WARNING "Failed to retrieve UPM version with 'git describe' (using "
"${VERSION}). Check that git is installed and this is a valid git repo.") "${VERSION}). Check that git is installed and this is a valid git repo.")
endif () endif ()
@ -302,7 +307,8 @@ endif()
# #
if (BUILDDOC) if (BUILDDOC)
# Add a target to generate API documentation with Doxygen # Add a target to generate API documentation with Doxygen
find_package (Doxygen REQUIRED) find_package (Doxygen 1.8 REQUIRED)
if (DOXYGEN_FOUND AND DOXYGEN_VERSION VERSION_GREATER "1.8")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/doxy/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) configure_file (${CMAKE_CURRENT_SOURCE_DIR}/doxy/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
if (BUILDSWIGJAVA) if (BUILDSWIGJAVA)
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/doxy/Doxyfile.java.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile-java @ONLY) configure_file (${CMAKE_CURRENT_SOURCE_DIR}/doxy/Doxyfile.java.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile-java @ONLY)
@ -315,42 +321,57 @@ if (BUILDDOC)
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile
COMMAND tar -czf html/xml.tar.gz -C xml . COMMAND tar -czf html/xml.tar.gz -C xml .
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen" VERBATIM COMMENT "Generating C/C++ API documentation with Doxygen" VERBATIM
) )
else ()
message (SEND_ERROR "ERROR - Failed to find a compatible version of Doxygen. API doc will not be generated")
endif (DOXYGEN_FOUND AND DOXYGEN_VERSION VERSION_GREATER "1.8")
# Check if Sphinx is installed and add target to generate API documentation # Check if Sphinx is installed and add target to generate API documentation
# Currently, the per-module documentation for python is generated from the # Currently, the per-module documentation for python is generated from the
# python2 modules. # python2 modules.
# Since python2 is required for documentation, only copy from python2 paths, this
# ensures that sphinx doesn't run across python2 and python3 binaries. When running
# the sphinx tools, explicitly run from the python2 interpreter (tested with the sphinx
# 1.3.6 python2 and python3 modules).
if(BUILDSWIGPYTHON) if(BUILDSWIGPYTHON)
find_package (Sphinx REQUIRED) find_package (Sphinx 1.3 REQUIRED)
if (SPHINX_FOUND AND SPHINX_VERSION VERSION_GREATER "1.3")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/doxy/conf.py.in ${CMAKE_CURRENT_BINARY_DIR}/pydoc/conf.py @ONLY) configure_file (${CMAKE_CURRENT_SOURCE_DIR}/doxy/conf.py.in ${CMAKE_CURRENT_BINARY_DIR}/pydoc/conf.py @ONLY)
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/doxy/index.rst ${CMAKE_CURRENT_BINARY_DIR}/pydoc/index.rst COPYONLY) configure_file (${CMAKE_CURRENT_SOURCE_DIR}/doxy/index.rst ${CMAKE_CURRENT_BINARY_DIR}/pydoc/index.rst COPYONLY)
add_custom_target (pydoc ALL add_custom_target (pydoc ALL
COMMAND rm -r -f ${CMAKE_BINARY_DIR}/pyupm && mkdir -p ${CMAKE_BINARY_DIR}/pyupm COMMAND rm -r -f ${CMAKE_BINARY_DIR}/pyupm && mkdir -p ${CMAKE_BINARY_DIR}/pyupm
COMMAND find ${CMAKE_BINARY_DIR}/src -name "_pyupm_*.so" -exec cp {} ${CMAKE_BINARY_DIR}/pyupm \; COMMAND find ${CMAKE_BINARY_DIR}/src -path "*python${MIN_VER_PYTHON2}/_pyupm_*.so" -exec cp {} ${CMAKE_BINARY_DIR}/pyupm \;
COMMAND find ${CMAKE_BINARY_DIR}/src -name "pyupm_*.py" -exec cp {} ${CMAKE_BINARY_DIR}/pyupm \; COMMAND find ${CMAKE_BINARY_DIR}/src -path "*python${MIN_VER_PYTHON2}/pyupm_*.py" -exec cp {} ${CMAKE_BINARY_DIR}/pyupm \;
COMMAND ${SPHINX_API_EXECUTABLE} -f -o pydoc ${CMAKE_BINARY_DIR}/pyupm COMMAND ${PYTHON2_EXECUTABLE} ${SPHINX_API_EXECUTABLE} -f -o pydoc ${CMAKE_BINARY_DIR}/pyupm
# TODO: use a separate cmake FILE module for string replacement instead # TODO: use a separate cmake FILE module for string replacement instead
COMMAND ${SPHINX_EXECUTABLE} -b html pydoc html/python COMMAND ${PYTHON2_EXECUTABLE} ${SPHINX_EXECUTABLE} -b html pydoc html/python
COMMAND sed -i.bak s|\">pyupm_|\">|g html/python/index.html html/python/modules.html COMMAND sed -i.bak s|\">pyupm_|\">|g html/python/index.html html/python/modules.html
COMMAND sed -i.bak s|[[:space:]][mM]odule</a>|</a>|g html/python/index.html html/python/modules.html COMMAND sed -i.bak s|[[:space:]][mM]odule</a>|</a>|g html/python/index.html html/python/modules.html
DEPENDS doc DEPENDS doc
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Sphinx" VERBATIM COMMENT "Generating Python API documentation with Sphinx" VERBATIM
) )
else ()
message (SEND_ERROR "ERROR - Failed to find a compatible version of Sphinx. Python API doc will not be generated")
endif ()
endif(BUILDSWIGPYTHON) endif(BUILDSWIGPYTHON)
# Check if Yuidoc is installed and add target for API documentation # Check if Yuidoc is installed and add target for API documentation
if(BUILDSWIGNODE) if(BUILDSWIGNODE)
find_package(Yuidoc REQUIRED) find_package (Yuidoc 0.10 REQUIRED)
add_custom_target(jsdoc ALL if (YUIDOC_FOUND AND YUIDOC_VERSION VERSION_GREATER "0.10")
add_custom_target (jsdoc ALL
COMMAND ${CMAKE_SOURCE_DIR}/doxy/doxygen2jsdoc/docgen.js -m upm -i xml -o jsdoc -t ${CMAKE_CURRENT_SOURCE_DIR}/src -g ../../ COMMAND ${CMAKE_SOURCE_DIR}/doxy/doxygen2jsdoc/docgen.js -m upm -i xml -o jsdoc -t ${CMAKE_CURRENT_SOURCE_DIR}/src -g ../../
COMMAND ${YUIDOC_EXECUTABLE} -C --no-sort --helpers ${CMAKE_SOURCE_DIR}/doxy/node/generators/yuidoc/helper.js --themedir ${CMAKE_SOURCE_DIR}/doxy/node/generators/yuidoc/tmpl -o html/node jsdoc/yuidoc/upm COMMAND ${YUIDOC_EXECUTABLE} -C --no-sort --helpers ${CMAKE_SOURCE_DIR}/doxy/node/generators/yuidoc/helper.js --themedir ${CMAKE_SOURCE_DIR}/doxy/node/generators/yuidoc/tmpl -o html/node jsdoc/yuidoc/upm
COMMAND ${CMAKE_SOURCE_DIR}/doxy/doxygen2jsdoc/tolower.js -i html/node COMMAND ${CMAKE_SOURCE_DIR}/doxy/doxygen2jsdoc/tolower.js -i html/node
DEPENDS doc DEPENDS doc
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Yuidoc" VERBATIM COMMENT "Generating Javascript API documentation with Yuidoc" VERBATIM
) )
else ()
message (SEND_ERROR "ERROR - Failed to find a compatible version of Yuidoc. Node.js API doc will not be generated")
endif ()
endif(BUILDSWIGNODE) endif(BUILDSWIGNODE)
endif (BUILDDOC) endif (BUILDDOC)
@ -436,4 +457,5 @@ endif()
# Install C headers # Install C headers
install(DIRECTORY include/ DESTINATION include/upm install(DIRECTORY include/ DESTINATION include/upm
COMPONENT ${CMAKE_PROJECT_NAME}-dev
FILES_MATCHING PATTERN "*.h") FILES_MATCHING PATTERN "*.h")

View File

@ -1,3 +1,7 @@
<p align="center">
<img src="https://github.com/intel-iot-devkit/upm/blob/master/docs/icons/upm_logo.png" height="150px" width="auto" algt="UPM Logo"/>
</p>
UPM (Useful Packages & Modules) Sensor/Actuator repository for MRAA UPM (Useful Packages & Modules) Sensor/Actuator repository for MRAA
============== ==============
@ -11,8 +15,9 @@ corresponding header file and instantiating the associated sensor class. In the
typical use case, a constructor initializes the sensor based on parameters that typical use case, a constructor initializes the sensor based on parameters that
identify the sensor, the I/O protocol used and the pin location of the sensor. identify the sensor, the I/O protocol used and the pin location of the sensor.
C++ interfaces have been defined for the following sensor/actuator types, but We endorse additions that implement the generic C and C++ interfaces provided
they are subject to change: with the libraries. Multiple sensor and actuator types have been defined, for
instance:
* Light controller * Light controller
* Light sensor * Light sensor
@ -22,8 +27,8 @@ they are subject to change:
* Gas sensor * Gas sensor
* Analog to digital converter * Analog to digital converter
The developer community is encouraged to help expand the list of supported The developer community is welcome to submit feedback on existing categories or
sensors and actuators and provide feedback on interface design. suggest new ones.
### Example ### Example
@ -67,12 +72,16 @@ Supported [sensor list](http://iotdk.intel.com/docs/master/upm/modules.html) fro
You can also refer to the [Intel® IoT Developer Zone](https://software.intel.com/iot/hardware/sensors). You can also refer to the [Intel® IoT Developer Zone](https://software.intel.com/iot/hardware/sensors).
### IDE Integration ### IDE Support
If you would like to create projects and run the UPM samples using an Intel recommended IDE, The UPM sensor libraries are directly supported by the IDEs listed on the Intel®
please refer to the Intel Developer Zone IDE page. Developer Zone Tools & IDEs page.
<a href="https://software.intel.com/iot/software/ide"><img src="docs/icons/allides.png"/></a> <a href="https://software.intel.com/iot/tools"><img src="docs/icons/iss.png"/></a>
Intel® System Studio integration offers IoT specific features such as a sensor explorer,
library sync tools and the ability to easily import existing projects and samples that
use the UPM libraries. For further details please refer to the IoT User Guides on IDZ.
### Installing UPM ### Installing UPM
@ -129,7 +138,7 @@ unable to compile code that was working fine before a library update, make sure
you check the [API changes](docs/apichanges.md) section first. you check the [API changes](docs/apichanges.md) section first.
**NOTE** - Several important API changes are currently underway for some of our **NOTE** - Several important API changes are currently underway for some of our
widely used libraries including `libupm-grove` and `libupm-i2clcd`! widely used libraries including `libupm-grove`
### Changelog ### Changelog
Version changelog [here](docs/changelog.md). Version changelog [here](docs/changelog.md).

View File

@ -1,17 +1,15 @@
# Macro to add directory to NODEJS_INCLUDE_DIRS if it exists and is not /usr/include # Macro to add directory to NODEJS_INCLUDE_DIRS if it exists and is not /usr/include
macro(add_include_dir dir) macro(add_include_dir dir)
if (IS_DIRECTORY ${dir} AND NOT ${dir} STREQUAL "/usr/include") if (IS_DIRECTORY ${dir} AND NOT ${dir} STREQUAL "/usr/include")
set(NODEJS_INCLUDE_DIRS ${NODEJS_INCLUDE_DIRS} ${dir}) set(NODEJS_INCLUDE_DIRS ${NODEJS_INCLUDE_DIRS} ${dir})
endif() endif()
endmacro() endmacro()
find_program (NODEJS_EXECUTABLE NAMES node nodejs find_program (NODEJS_EXECUTABLE NAMES node nodejs
HINTS HINTS
$ENV{NODE_DIR} $ENV{NODE_DIR}
PATH_SUFFIXES bin PATH_SUFFIXES bin
DOC "Node.js interpreter" DOC "Node.js interpreter")
)
include (FindPackageHandleStandardArgs) include (FindPackageHandleStandardArgs)
@ -23,16 +21,20 @@ if (UV_ROOT_DIR)
endif() endif()
# Now look for node. Flag an error if not found # Now look for node. Flag an error if not found
find_path (NODE_ROOT_DIR "include/node/node.h" "include/src/node.h" "src/node.h" find_path (NODE_ROOT_DIR
PATHS /usr/include/nodejs /usr/local/include/nodejs /usr/local/include) NAMES node.h src/node.h
PATH_SUFFIXES node node4 node5 node6 node7 node8 nodejs
PATHS /usr/include /usr/local/include)
if (NODE_ROOT_DIR) if (NODE_ROOT_DIR)
add_include_dir(${NODE_ROOT_DIR}/include/src) add_include_dir(${NODE_ROOT_DIR})
add_include_dir(${NODE_ROOT_DIR}/src) add_include_dir(${NODE_ROOT_DIR}/deps/uv/include)
add_include_dir(${NODE_ROOT_DIR}/include/node)
add_include_dir(${NODE_ROOT_DIR}/include/deps/v8/include)
add_include_dir(${NODE_ROOT_DIR}/deps/v8/include) add_include_dir(${NODE_ROOT_DIR}/deps/v8/include)
add_include_dir(${NODE_ROOT_DIR}/include/deps/uv/include) add_include_dir(${NODE_ROOT_DIR}/include/deps/uv/include)
add_include_dir(${NODE_ROOT_DIR}/deps/uv/include) add_include_dir(${NODE_ROOT_DIR}/include/deps/v8/include)
add_include_dir(${NODE_ROOT_DIR}/include/node)
add_include_dir(${NODE_ROOT_DIR}/include/src)
add_include_dir(${NODE_ROOT_DIR}/src)
else() else()
unset(NODEJS_INCLUDE_DIRS) unset(NODEJS_INCLUDE_DIRS)
message(ERROR " - node.h not found") message(ERROR " - node.h not found")
@ -52,11 +54,6 @@ if (NOT UV_ROOT_DIR)
message(ERROR " - uv.h not found") message(ERROR " - uv.h not found")
endif() endif()
find_package_handle_standard_args (Nodejs DEFAULT_MSG
NODEJS_EXECUTABLE
NODEJS_INCLUDE_DIRS
)
if (NODEJS_EXECUTABLE) if (NODEJS_EXECUTABLE)
execute_process(COMMAND ${NODEJS_EXECUTABLE} --version execute_process(COMMAND ${NODEJS_EXECUTABLE} --version
OUTPUT_VARIABLE _VERSION OUTPUT_VARIABLE _VERSION
@ -88,13 +85,15 @@ if (NODEJS_EXECUTABLE)
set (V8_VERSION_MINOR "28") set (V8_VERSION_MINOR "28")
set (V8_VERSION_PATCH "72") set (V8_VERSION_PATCH "72")
set (V8_VERSION_STRING "3.28.72") set (V8_VERSION_STRING "3.28.72")
message ("defaulted to node 0.10.30") message (STATUS "defaulted to node 0.10.30")
endif () endif ()
string (REGEX REPLACE "\n" "" NODE_VERSION_STRING ${NODE_VERSION_STRING}) string (REGEX REPLACE "\n" "" NODE_VERSION_STRING ${NODE_VERSION_STRING})
string (REGEX REPLACE "\n" "" V8_VERSION_STRING ${V8_VERSION_STRING}) string (REGEX REPLACE "\n" "" V8_VERSION_STRING ${V8_VERSION_STRING})
message (STATUS "Node version is ${NODE_VERSION_STRING}")
message (STATUS "Node using v8 ${V8_VERSION_STRING}")
mark_as_advanced (NODEJS_EXECUTABLE)
endif ()
mark_as_advanced (NODEJS_EXECUTABLE) mark_as_advanced (NODEJS_EXECUTABLE)
find_package_handle_standard_args (Nodejs
REQUIRED_VARS NODEJS_EXECUTABLE NODEJS_INCLUDE_DIRS
VERSION_VAR NODE_VERSION_STRING)
message(STATUS "Found v8: ${V8_ROOT_DIR}/v8.h (found version \"${V8_VERSION_STRING}\")")
endif ()

View File

@ -0,0 +1,71 @@
# FindNpm
# --------
#
# Find npm
#
# This module finds an installed npm. It sets the following variables:
#
# NPM_FOUND - Set to true if npm is found
# NPM_DIR - The directory where npm is installed
# NPM_GLOBAL_NODE_MODULE_DIR - The global node_modules directory
# NPM_EXECUTABLE - The path to the npm executable
# NPM_VERSION - The version number of the npm executable
find_program(NPM_EXECUTABLE NAMES npm HINTS /usr)
# If npm was found, fill in the rest
if (NPM_EXECUTABLE)
# Set the global node_modules location
execute_process(COMMAND ${NPM_EXECUTABLE} root -g
OUTPUT_VARIABLE NPM_GLOBAL_NODE_MODULE_DIR
ERROR_VARIABLE NPM_root_g_error
RESULT_VARIABLE NPM_root_g_result_code)
# Remove and newlines
string (STRIP ${NPM_GLOBAL_NODE_MODULE_DIR} NPM_GLOBAL_NODE_MODULE_DIR)
if(NPM_root_g_result_code)
if(NPM_FIND_REQUIRED)
message(SEND_ERROR "Command \"${NPM_EXECUTABLE} root -g\" failed with output:\n${NPM_root_g_error}")
else ()
message(STATUS "Command \"${NPM_EXECUTABLE} root -g\" failed with output:\n${NPM_root_g_error}")
endif ()
endif()
unset(NPM_root_g_error)
unset(NPM_root_g_result_code)
# Set the NPM dir
if (EXISTS "${NPM_GLOBAL_NODE_MODULE_DIR}/npm")
set(NPM_DIR "${NPM_GLOBAL_NODE_MODULE_DIR}/npm")
endif()
# Set the VERSION
execute_process(COMMAND ${NPM_EXECUTABLE} -v
OUTPUT_VARIABLE NPM_VERSION
ERROR_VARIABLE NPM_version_error
RESULT_VARIABLE NPM_version_result_code)
if(NPM_version_result_code)
if(NPM_FIND_REQUIRED)
message(SEND_ERROR "Command \"${NPM_EXECUTABLE} -v\" failed with output:\n${NPM_version_error}")
else()
message(STATUS "Command \"${NPM_EXECUTABLE} -v\" failed with output:\n${NPM_version_error}")
endif ()
endif ()
unset(NPM_version_error)
unset(NPM_version_result_code)
# Remove and newlines
string (STRIP ${NPM_VERSION} NPM_VERSION)
set (NPM_FOUND TRUE)
else()
# Fail on REQUIRED
if (Npm_FIND_REQUIRED)
message(SEND_ERROR "Failed to find npm executable")
endif()
endif ()
find_package_handle_standard_args(NPM
REQUIRED_VARS NPM_EXECUTABLE NPM_DIR
VERSION_VAR NPM_VERSION )
mark_as_advanced(NPM_DIR NPM_GLOBAL_NODE_MODULE_DIR NPM_EXECUTABLE NPM_VERSION)

View File

@ -17,14 +17,16 @@ find_package_handle_standard_args (Sphinx DEFAULT_MSG
SPHINX_API_EXECUTABLE SPHINX_API_EXECUTABLE
) )
# Get Sphinx version # Get Sphinx Version
if (SPHINX_EXECUTABLE) if (SPHINX_EXECUTABLE)
execute_process(COMMAND ${SPHINX_EXECUTABLE} --version execute_process(COMMAND ${SPHINX_EXECUTABLE} --version
OUTPUT_VARIABLE SPHINX_VERSION) OUTPUT_VARIABLE SPHINX_VERSION_STRING
if(SPHINX_VERSION) OUTPUT_STRIP_TRAILING_WHITESPACE
string(REGEX MATCH "([0-9]\\.[0-9]\\.[0-9])" SPHINX_VERSION_STR ${SPHINX_VERSION}) ERROR_STRIP_TRAILING_WHITESPACE)
message (STATUS "Sphinx version is ${SPHINX_VERSION_STR}") if (SPHINX_VERSION_STRING)
endif() string(REPLACE "Sphinx (sphinx-build) " "" SPHINX_VERSION ${SPHINX_VERSION_STRING})
message (STATUS "Sphinx version is ${SPHINX_VERSION}")
endif ()
endif () endif ()
mark_as_advanced (SPHINX_EXECUTABLE) mark_as_advanced (SPHINX_EXECUTABLE)

View File

@ -3,7 +3,7 @@ version: '2.1'
services: services:
base: base:
image: dnoliver/upm-base image: inteliotdevkit/upm-base
environment: environment:
- http_proxy - http_proxy
- https_proxy - https_proxy
@ -14,7 +14,7 @@ services:
- BUILDSWIGPYTHON=${BUILDSWIGPYTHON:-OFF} - BUILDSWIGPYTHON=${BUILDSWIGPYTHON:-OFF}
- BUILDSWIGJAVA=${BUILDSWIGJAVA:-OFF} - BUILDSWIGJAVA=${BUILDSWIGJAVA:-OFF}
- BUILDSWIGNODE=${BUILDSWIGNODE:-OFF} - BUILDSWIGNODE=${BUILDSWIGNODE:-OFF}
- BUILDEXAMPLES=${BUILDEXAMPLES:-ON} - BUILDEXAMPLES=${BUILDEXAMPLES:-OFF}
- IPK=${IPK:-OFF} - IPK=${IPK:-OFF}
- RPM=${RPM:-OFF} - RPM=${RPM:-OFF}
- NPM=${NPM:-OFF} - NPM=${NPM:-OFF}
@ -26,9 +26,12 @@ services:
volumes: volumes:
- .:${UPM_SRC_DIR:-/usr/src/app} - .:${UPM_SRC_DIR:-/usr/src/app}
doc: all:
extends: base extends: base
image: dnoliver/upm-all image: inteliotdevkit/upm-all
doc:
extends: all
environment: environment:
- BUILDSWIGPYTHON=ON - BUILDSWIGPYTHON=ON
- BUILDSWIGJAVA=ON - BUILDSWIGJAVA=ON
@ -36,35 +39,43 @@ services:
- BUILDDOC=ON - BUILDDOC=ON
command: bash -c "./scripts/run-cmake.sh && ./scripts/build-doc.sh" command: bash -c "./scripts/run-cmake.sh && ./scripts/build-doc.sh"
examples:
extends: all
environment:
- BUILDSWIGPYTHON=ON
- BUILDSWIGJAVA=ON
- BUILDSWIGNODE=ON
- BUILDEXAMPLES=ON
command: bash -c "./scripts/run-cmake.sh && cd build && make -j8"
ipk: ipk:
extends: base extends: all
environment: environment:
- IPK=ON - IPK=ON
- BUILDDOC=OFF - BUILDDOC=OFF
command: bash -c "./scripts/run-cmake.sh && make -Cbuild -j8 package" command: bash -c "./scripts/run-cmake.sh && make -Cbuild -j8 package"
rpm: rpm:
extends: doc extends: all
environment: environment:
- RPM=ON - RPM=ON
- BUILDDOC=OFF - BUILDDOC=OFF
command: bash -c "./scripts/run-cmake.sh && make -Cbuild -j8 package" command: bash -c "./scripts/run-cmake.sh && make -Cbuild -j8 package"
npm: npm:
extends: doc extends: all
environment: environment:
- NPM=ON - NPM=ON
- BUILDDOC=OFF - BUILDDOC=OFF
command: bash -c "./scripts/run-cmake.sh && make -Cbuild -j8 npmpkg" command: bash -c "./scripts/run-cmake.sh && make -Cbuild -j8 npmpkg"
sonar-scan: sonar-scan:
extends: base extends: all
image: dnoliver/upm-all
environment: environment:
- BUILDSWIGPYTHON=ON - BUILDSWIGPYTHON=ON
- BUILDSWIGNODE=ON - BUILDSWIGNODE=ON
- BUILDSWIGJAVA=ON - BUILDSWIGJAVA=ON
- BUILDSWIGEXAMPLES=ON - BUILDEXAMPLES=ON
- SONAR_TOKEN - SONAR_TOKEN
- SONAR_ORG - SONAR_ORG
- SONAR_PROJ_KEY - SONAR_PROJ_KEY
@ -77,36 +88,36 @@ services:
python: python:
extends: base extends: base
image: dnoliver/upm-python image: inteliotdevkit/upm-python
environment: environment:
- BUILDSWIGPYTHON=ON - BUILDSWIGPYTHON=ON
command: bash -c "./scripts/run-cmake.sh && cd build && make -j8 && make -j8 install && ldconfig && ctest --output-on-failure" command: bash -c "./scripts/run-cmake.sh && cd build && make -j8 && make -j8 install && ldconfig && ctest --output-on-failure"
java: java:
extends: base extends: base
image: dnoliver/upm-java image: inteliotdevkit/upm-java
environment: environment:
- BUILDSWIGJAVA=ON - BUILDSWIGJAVA=ON
command: bash -c "./scripts/run-cmake.sh && cd build && make -j8 && make -j8 install && ldconfig && ctest --output-on-failure" command: bash -c "./scripts/run-cmake.sh && cd build && make -j8 && make -j8 install && ldconfig && ctest --output-on-failure"
android: android:
extends: java extends: java
image: dnoliver/upm-android image: inteliotdevkit/upm-android
environment: environment:
- BUILDTESTS=OFF - BUILDTESTS=OFF
command: bash -c "./scripts/build-android.sh" command: bash -c "./scripts/build-android.sh"
node4: node4:
extends: base extends: base
image: dnoliver/upm-node4 image: inteliotdevkit/upm-node4
environment: environment:
- BUILDSWIGNODE=ON - BUILDSWIGNODE=ON
command: bash -c "./scripts/run-cmake.sh && cd build && make -j8 && make -j8 install && ldconfig && ctest --output-on-failure -E examplenames_js" command: bash -c "./scripts/run-cmake.sh && cd build && make -j8 && make -j8 install && ldconfig && ctest --output-on-failure -E examplenames_js"
node5: node5:
extends: node4 extends: node4
image: dnoliver/upm-node5 image: inteliotdevkit/upm-node5
node6: node6:
extends: node4 extends: node4
image: dnoliver/upm-node6 image: inteliotdevkit/upm-node6

View File

@ -4,6 +4,23 @@ API Changes {#apichanges}
Here's a list of other API changes made to the library that break source/binary Here's a list of other API changes made to the library that break source/binary
compatibility between releases: compatibility between releases:
# v1.6.0
* Several C libraries had their init function pin type modified from uint8_t
to int allowing usage with subplatforms
* Our **led** class constructor has been overloaded with a string based
variant that uses the new MRAA LED APIs
* The **i2clcd** library has finally been renamed to **lcd** and is now
mostly considered a bundle for ssd lcd display controllers only
* The **zfm20** class constructor has been overloaded with a string variant
that allows initialization using any UART device
# v1.5.0
* **VEML6070** This sensor class no longer needs an I2C address when
initialized, since they are fixed. Only the I2C bus number needs to
be provided.
# v1.3.0 # v1.3.0
* **The lsm303 driver has been renamed** There are a variety of * **The lsm303 driver has been renamed** There are a variety of
@ -132,13 +149,13 @@ compatibility between releases:
* **lcm1602/jhd1313m1** These drivers had been rewritten in C, with * **lcm1602/jhd1313m1** These drivers had been rewritten in C, with
C++ wrappers and placed into their own libraries in the previous C++ wrappers and placed into their own libraries in the previous
version of UPM, however, the original C++ implementation was kept in version of UPM, however, the original C++ implementation was kept in
the lcd/i2clcd library for compatibility reasons with existing code. the lcd library for compatibility reasons with existing code.
To avoid collisions with the header files, the new *lcm1602* and To avoid collisions with the header files, the new *lcm1602* and
*jhd1313m1* drivers had their C++ headers renamed to use a **.hxx** *jhd1313m1* drivers had their C++ headers renamed to use a **.hxx**
suffix. suffix.
In this version of UPM, the *lcm1602* and *jhd1313m1* drivers have In this version of UPM, the *lcm1602* and *jhd1313m1* drivers have
been removed from the lcd/i2clcd library. In addition, the header been removed from the lcd library. In addition, the header
files for the new implementation have been renamed from their files for the new implementation have been renamed from their
**.hxx** suffix to the normal **.hpp** suffix. **.hxx** suffix to the normal **.hpp** suffix.

View File

@ -34,7 +34,12 @@ make install
The last command will create the include/ and lib/ directories with a copy of The last command will create the include/ and lib/ directories with a copy of
the headers and library objects respectively in your build location. Note that the headers and library objects respectively in your build location. Note that
doing an out-of-source build may cause issues when rebuilding later on. doing an out-of-source build may cause issues when rebuilding later on. In many
cases you'll need elevated permissions to install:
~~~~~~~~~~~~~{.sh}
sudo make install
~~~~~~~~~~~~~
Our cmake configure has a number of options, *cmake-gui* or *ccmake* can show Our cmake configure has a number of options, *cmake-gui* or *ccmake* can show
you all the options. The interesting ones are detailed below: you all the options. The interesting ones are detailed below:
@ -101,22 +106,22 @@ make install
Often developers are only interested in building one module or even just the Often developers are only interested in building one module or even just the
python/node module to do some quick testing using scripting. In order to do python/node module to do some quick testing using scripting. In order to do
this you need to use the target name for the python or node module you want to this you need to use the target name for the python or node module you want to
rebuild. For example the lcd module target name is i2clcd. Therefore the python rebuild. For example, the lcd module target will have a python2 target prefixed
module target name will be prefixed by _pyupm_. Just do the following to build by _pyupm_ (_pyupm_lcd-python2). Modules not using the UPM cmake macros may
only that module. Modules not using the UPM cmake macros may have different have different naming. To build the python2 lcd module (and all dependencies),
naming. use the following make target:
~~~~~~~~~~~~~ ~~~~~~~~~~~~~
make _pyupm_i2clcd make _pyupm_lcd-python2
~~~~~~~~~~~~~ ~~~~~~~~~~~~~
Sometimes you want to build a small C++ example against an installed library. Sometimes you want to build a small C++ example against an installed library.
This is fairly easy if installed system-wide. Just link against the correct This is fairly easy if installed system-wide. Just link against the correct
library (in this case libupm-i2clcd) and then add /usr/include/upm to the library (in this case libupm-lcd) and then add /usr/include/upm to the
loader path: loader path:
~~~~~~~~~~~~ ~~~~~~~~~~~~
g++ test.cxx -lupm-i2clcd -I/usr/include/upm g++ test.cxx -lupm-lcd -I/usr/include/upm
~~~~~~~~~~~~ ~~~~~~~~~~~~
You can also use pkg-config to return the information to you, which is You can also use pkg-config to return the information to you, which is
@ -124,9 +129,37 @@ considered the correct way if including UPM in a build system like cmake or
autotools on linux. autotools on linux.
~~~~~~~~~~~ ~~~~~~~~~~~
pkg-config --cflags --libs upm-i2clcd pkg-config --cflags --libs upm-lcd
~~~~~~~~~~~ ~~~~~~~~~~~
## Building for Android Things
Requirements:
* [io.mraa.at](https://search.maven.org/#artifactdetails%7Cio.mraa.at%7Cmraa%7C1.8.0%7Caar)
* [io.mraa.at.upm](https://search.maven.org/#artifactdetails%7Cio.mraa.at.upm%7Cupm_zfm20%7C1.3.0%7Caar)
* [Android NDK](https://developer.android.com/ndk/downloads/index.html) >= 14b
### Android NDK r14b
~~~~~~~~~~~~~{.sh}
NDK_HOME="/path/to/android-ndk-r14b"
MRAA_INSTALL_DIR="/path/to/mraa/install"
cmake -DBUILDSWIG=ON \
-DBUILDSWIGPYTHON=OFF \
-DBUILDSWIGNODE=OFF \
-DBUILDSWIGJAVA=ON \
-DANDROID_COMPILER_FLAGS_CXX='-std=c++11' \
-DANDROID_PIE=1 \
-DANDROID_PLATFORM=android-24 \
-DANDROID_STL_FORCE_FEATURES=ON \
-DANDROID_STL=c++_shared \
-DANDROID_TOOLCHAIN_NAME=x86-i686 \
-DCMAKE_TOOLCHAIN_FILE=$NDK_HOME/build/cmake/android.toolchain.cmake \
-DCMAKE_FIND_ROOT_PATH=$MRAA_INSTALL_DIR \
..
~~~~~~~~~~~~~
## Building with Docker ## Building with Docker
You can use `docker` and `docker-compose` to generate a complete build environment You can use `docker` and `docker-compose` to generate a complete build environment
@ -187,7 +220,7 @@ $ docker run \
--env BUILDSWIGPYTHON=ON \ --env BUILDSWIGPYTHON=ON \
--env BUILDSWIGJAVA=OFF \ --env BUILDSWIGJAVA=OFF \
--env BUILDSWIGNODE=OFF \ --env BUILDSWIGNODE=OFF \
dnoliver/upm-python \ inteliotdevkit/upm-python \
bash -c "./scripts/run-cmake.sh && make -Cbuild" bash -c "./scripts/run-cmake.sh && make -Cbuild"
``` ```
@ -221,6 +254,6 @@ $ docker run \
--env http_proxy=$http_proxy \ --env http_proxy=$http_proxy \
--env https_proxy=$https_proxy \ --env https_proxy=$https_proxy \
--env no_proxy=$no_proxy \ --env no_proxy=$no_proxy \
dnoliver/upm-python \ inteliotdevkit/upm-python \
bash -c "./scripts/run-cmake.sh && make -Cbuild" bash -c "./scripts/run-cmake.sh && make -Cbuild"
``` ```

View File

@ -4,6 +4,30 @@ Changelog {#changelog}
Here's a list summarizing some of the key undergoing changes to our library Here's a list summarizing some of the key undergoing changes to our library
from earlier versions: from earlier versions:
### v1.6.0
* Extended LED library to support the new MRAA gpio-leds APIs
* Many CMake changes around SWIG wrapper generation and improved FindNodejs
detection module
* Several code fixes based on static code analysis
* Improved documentation generation and Travis CI builds
* Cleaned-up doxygen tags in headers and class names in JSON library files
* New sensor: lis3dh
### v1.5.0
* Introduced a flexible JSON format for technical sensor specifications, notes
and classification. This is also used by our [new UPM website](http://upm.mraa.io)
* Revised all C++ sensor examples and switched to stack allocations where
possible along with other code and formatting clean-up
* Significantly improved docker workflow, CI integration, sanity and
consistency tests, static code scans and documentation generation
* Several improvements to a couple of existing sensor drivers and better
compatibility with subplatforms
* Added new std::vector to AbstractList<> typemap for Java bindings and
examples
* New sensors: lis2ds12, lsm6ds3h, lsm6dsl, lidarlitev3
### v1.3.0 ### v1.3.0
* Finalized all required build system and JAVA binding changes to release the * Finalized all required build system and JAVA binding changes to release the

View File

@ -125,6 +125,8 @@ function make_new_sensor {
# Search/replace the new files, replacing all instances of sensortemplate # Search/replace the new files, replacing all instances of sensortemplate
perl -p -i -e "s/SensorTemplate/${SensorName}/g" src/${sensorname}/* examples/*/*${sensorname}* examples/*/*${SensorName}* perl -p -i -e "s/SensorTemplate/${SensorName}/g" src/${sensorname}/* examples/*/*${sensorname}* examples/*/*${SensorName}*
perl -p -i -e "s/sensortemplate/${sensorname}/g" src/${sensorname}/* examples/*/*${sensorname}* examples/*/*${SensorName}* perl -p -i -e "s/sensortemplate/${sensorname}/g" src/${sensorname}/* examples/*/*${sensorname}* examples/*/*${SensorName}*
# Remove objects starting with "//" from the new library descriptor .json file
perl -p -i -e 'BEGIN{undef $/;} s/\s+"\/\/.*?},//smg' src/${sensorname}/${sensorname}.json
# Add mynewmodule example target for java # Add mynewmodule example target for java
perl -p -i -e "s/^((.*)SensorTemplateSample sensortemplate(.*))/\1\n\2${SensorName}Sample ${sensorname}\3/g" examples/java/CMakeLists.txt perl -p -i -e "s/^((.*)SensorTemplateSample sensortemplate(.*))/\1\n\2${SensorName}Sample ${sensorname}\3/g" examples/java/CMakeLists.txt
# Add mynewmodule example mappings for doxygen # Add mynewmodule example mappings for doxygen

View File

@ -12,25 +12,25 @@ Creating Java Bindings Guide
* [Implementing callbacks in Java](#implementing-callbacks-in-java) * [Implementing callbacks in Java](#implementing-callbacks-in-java)
##Overview ## Overview
The "Creating Java Bindings Guide" serves as a basic tutorial for using the SWIG software development tool to create 'glue code' required for Java to call into C/C++ code. It contains: guides for dealing with type conversions, exception handling, callbacks; recommendations on how to write/modify the native API to avoid issues on the Java side, and also workarounds for those issues that can't be avoided. The "Creating Java Bindings Guide" serves as a basic tutorial for using the SWIG software development tool to create 'glue code' required for Java to call into C/C++ code. It contains: guides for dealing with type conversions, exception handling, callbacks; recommendations on how to write/modify the native API to avoid issues on the Java side, and also workarounds for those issues that can't be avoided.
This guide was created with the [upm](https://github.com/intel-iot-devkit/upm/) and [mraa](https://github.com/intel-iot-devkit/mraa) libraries in mind, and uses examples taken from these sources, but its usage can be extended to any project of creating Java bindings for C/C++ libraries. This guide was created with the [upm](https://github.com/intel-iot-devkit/upm/) and [mraa](https://github.com/intel-iot-devkit/mraa) libraries in mind, and uses examples taken from these sources, but its usage can be extended to any project of creating Java bindings for C/C++ libraries.
##Tools of trade ## Tools of trade
[SWIG General Documentation](http://www.swig.org/Doc3.0/SWIGDocumentation.html) [SWIG General Documentation](http://www.swig.org/Doc3.0/SWIGDocumentation.html)
[SWIG Java-specific Documentation](http://www.swig.org/Doc3.0/Java.html) [SWIG Java-specific Documentation](http://www.swig.org/Doc3.0/Java.html)
##Recommendations for the native API ## Recommendations for the native API
###Pointers ### Pointers
As much as possible, avoid passing values/returning values through pointers given as as arguments to methods. As the Java language does not have pointers, SWIG provides a [workaround](http://www.swig.org/Doc3.0/Java.html#Java_tips_techniques) in the typemaps.i library. As much as possible, avoid passing values/returning values through pointers given as as arguments to methods. As the Java language does not have pointers, SWIG provides a [workaround](http://www.swig.org/Doc3.0/Java.html#Java_tips_techniques) in the typemaps.i library.
####Alternatives: #### Alternatives:
1. Functions that read data from a driver, return it through a pointer given as argument, and return a bool value, should be __replaced by__ functions that return the value directly and throw a std::runtime_error if a read error occurs. E.g.: 1. Functions that read data from a driver, return it through a pointer given as argument, and return a bool value, should be __replaced by__ functions that return the value directly and throw a std::runtime_error if a read error occurs. E.g.:
```c++ ```c++
/* /*
@ -67,7 +67,6 @@ As much as possible, avoid passing values/returning values through pointers give
``` ```
3. Functions that return N values through pointers, that do not make sense to grouped together (e.g. a general purpose function that returns both the light intensity and air pollution), should be __replaced by__ N functions (one for each value) that read only one specific value. E.g.: 3. Functions that return N values through pointers, that do not make sense to grouped together (e.g. a general purpose function that returns both the light intensity and air pollution), should be __replaced by__ N functions (one for each value) that read only one specific value. E.g.:
```c++ ```c++
/* /*
* Function returns the light intensity and air pollution * Function returns the light intensity and air pollution
@ -82,7 +81,6 @@ As much as possible, avoid passing values/returning values through pointers give
``` ```
4. Functions that return N values through pointers; values that do not make sense to be grouped together, but are time dependent, and make sense to be read at the same time. For example, a sensor that reads air humidity and temperature. A user may want to know the temperature value _temp_ read at the exact moment the humidity value _humid_ was read. These should be __replaced by__ N+1 functions: a _getData()_ function that reads all values at the same time and stores them in global variables; and N getter functions, one for each value. E.g. 4. Functions that return N values through pointers; values that do not make sense to be grouped together, but are time dependent, and make sense to be read at the same time. For example, a sensor that reads air humidity and temperature. A user may want to know the temperature value _temp_ read at the exact moment the humidity value _humid_ was read. These should be __replaced by__ N+1 functions: a _getData()_ function that reads all values at the same time and stores them in global variables; and N getter functions, one for each value. E.g.
```c++ ```c++
/* /*
* Function returns the light intensity and air pollution * Function returns the light intensity and air pollution
@ -103,8 +101,8 @@ __Notice:__
Sometimes, you may be required to write JNI code. Be aware of the difference between the C JNI calling syntax and the C++ JNI calling syntax.The C++ calling syntax will not compile as C and also vice versa. It is however possible to write JNI calls which will compile under both C and C++ and is covered in the [Typemaps for both C and C++ compilation](http://www.swig.org/Doc3.0/Java.html#Java_typemaps_for_c_and_cpp) section of the SWIG Documentation. Sometimes, you may be required to write JNI code. Be aware of the difference between the C JNI calling syntax and the C++ JNI calling syntax.The C++ calling syntax will not compile as C and also vice versa. It is however possible to write JNI calls which will compile under both C and C++ and is covered in the [Typemaps for both C and C++ compilation](http://www.swig.org/Doc3.0/Java.html#Java_typemaps_for_c_and_cpp) section of the SWIG Documentation.
###Throwing Exceptions in Java ### Throwing Exceptions in Java
####Language independent: #### Language independent:
The %exception directive allows you to define a general purpose exception handler. For example, you can specify the following: The %exception directive allows you to define a general purpose exception handler. For example, you can specify the following:
```c++ ```c++
@ -155,7 +153,7 @@ The upm_exception.i interface file is included in the upm.i file, therefor SWIG
* std::exception * std::exception
####Java specific: #### Java specific:
To throw a specific Java exception: To throw a specific Java exception:
```c++ ```c++
@ -196,12 +194,12 @@ In the upm library, the java_exceptions.i library file provides the functionalit
void function throws IOException (); void function throws IOException ();
``` ```
##Caveats & Challenges ## Caveats & Challenges
###Wrapping C arrays with Java arrays ### Wrapping C arrays with Java arrays
SWIG can wrap arrays in a more natural Java manner than the default by using the arrays_java.i library file. Just include this file into your SWIG interface file. SWIG can wrap arrays in a more natural Java manner than the default by using the arrays_java.i library file. Just include this file into your SWIG interface file.
###Wrapping unbound C arrays with Java arrays if array is output ### Wrapping unbound C arrays with Java arrays if array is output
Functions that return arrays, return a pointer to that array. E.g.: Functions that return arrays, return a pointer to that array. E.g.:
```c++ ```c++
@ -229,7 +227,7 @@ __SWIG:__
} }
``` ```
###Wrapping unbound C arrays with Java arrays if array is input ### Wrapping unbound C arrays with Java arrays if array is input
In C, arrays are tipically passed as pointers, with an integer value representig the length of the array. In Java, the length of an array is always known, so the length argument is redundant. This example shows how to wrap the C array and also get rid the length argument. E.g.: In C, arrays are tipically passed as pointers, with an integer value representig the length of the array. In Java, the length of an array is always known, so the length argument is redundant. This example shows how to wrap the C array and also get rid the length argument. E.g.:
```c++ ```c++
@ -252,37 +250,26 @@ __SWIG:__
!!!! There is a difference between TYPE *name and TYPE * name in typemaps!!!!! !!!! There is a difference between TYPE *name and TYPE * name in typemaps!!!!!
###Implementing callbacks in Java ### Implementing callbacks in Java
Callbacks in the UPM Java library (as well as the MRAA Java library) make use of the _void mraa\_java\_isr\_callback(void\* data\)_ method from MRAA. Callbacks in the UPM Java library (as well as the MRAA Java library) make use of the _void mraa\_java\_isr\_callback(void\* data\)_ method from MRAA.
__Callbacks in the UPM Java library are implemented as follows (we use the a110x Hall Effect sensors as example):__ __Callbacks in the UPM Java library are implemented as follows (we use the a110x Hall Effect sensors as example):__
We extend the sensor class with another method, _installISR\(jobject runnable\)_, which is a wrapper over the original _installISR\(void \(\*isr\)\(void \*\), void \*arg\)_ method. This will install the _mraa\_java\_isr\_callback\(\)_ method as the interrupt service routine \(ISR\) to be called, with _jobject runnable_ as argument. We extend the sensor class with another method, _installISR\(jobject runnable\)_, which is a wrapper over the original _installISR\(void \(\*isr\)\(void \*\), void \*arg\)_ method. This will install the _mraa\_java\_isr\_callback\(\)_ method as the interrupt service routine \(ISR\) to be called, with _jobject runnable_ as argument.
SWIGJAVA is a symbol that is always defined by SWIG when using Java. We enclose the _installISR\(jobject runnable\)_ method in a _\#if defined(SWIGJAVA)_ check, to ensure the code only exists when creating a wrapper for Java. Java callbacks are added at the SWIG interface level. For ease-of-use, a collection of macros are available in src/_upm.i.
src/a110x/javaupm_a110x.i:
```c++ ```c++
#if defined(SWIGJAVA) JAVA_ADD_INSTALLISR(upm::A110X)
void A110X::installISR(jobject runnable)
{
installISR(mraa_java_isr_callback, runnable);
}
#endif
``` ```
We hide the underlying method, _installISR\(void \(\*isr\)\(void \*\), void \*arg\)_ , and expose only the _installISR\(jobject runnable\)_ to SWIG, through the use of the SWIGJAVA symbol. When SWIGJAVA is defined, we change the access modifier of the underlying method to private. Will expand to the following SWIG wrapper code:
```c++ ```c++
public: SWIGINTERN void upm_A110X_installISR__SWIG_1(upm::A110X *self,jobject runnable){
#if defined(SWIGJAVA) self->installISR(mraa_java_isr_callback, runnable);
void installISR(jobject runnable); }
#else
void installISR(void (*isr)(void *), void *arg);
#endif
private:
#if defined(SWIGJAVA)
void installISR(void (*isr)(void *), void *arg);
#endif
``` ```
To use callback in java, we create a ISR class, which implements the Java Runnable interface, and we override the _run\(\)_ method with the code to be executed when the interrupt is received. An example for the a110x Hall sensor that increments a counter each time an interrupt is received: To use callback in java, we create a ISR class, which implements the Java Runnable interface, and we override the _run\(\)_ method with the code to be executed when the interrupt is received. An example for the a110x Hall sensor that increments a counter each time an interrupt is received:
@ -313,41 +300,3 @@ class A110XISR implements Runnable {
} }
} }
``` ```
####Issues with java callbacks and workarounds
__SWIGJAVA not defined at compile time__
Consider the following files:
* example.h - Header file for our source file
* example.cxx - Source file containing the class Example, for which we build java bindings
* example.i - The SWIG interface, that includes the example.h header file
The build process of a java module using SWIG is split into two steps:
1. Generating the intermediate files, from the SWIG interface file. This will produce the java class file (Example.java), the JNI file (exampleJNI.java) and wrapper file (example_wrap.cxx). The source file (example.cxx) is not needed in the first step.
```
swig -c++ -java example.i
```
2. Generating the shared library from the C++ sources and wrapper file
```
g++ -fPIC -c example.cxx example_wrap.cxx -I/usr/lib/jvm/java-1.8.0/include -I/usr/lib/jvm/java-1.8.0/include/linux
g++ -shared example_wrap.o sensor.o -o libexample.so
```
SWIGJAVA is always defined when SWIG parses the interface file, meaning it will be defined when it parses the header file (example.h) that is included in the interface file (example.i).
SWIG also adds the "#define SWIGJAVA" directive in the wrapper file (example_wrap.cxx).
However, in generating the shared library the SWIGJAVA symbol is only defined in the example_wrap.cxx file, because of the added "#define SWIGJAVA" directive. But we have also used the "#if defined(SWIGJAVA)" check in the source file (example.cxx), and thus need to define SWIGJAVA for it too. If we define the SWIGJAVA symbol as a compile flag, when compiling the source code to object code, the SWIGJAVA compile flag and #define SWIGJAVA" directive will clash and give a double definition warning (only a warning).
In this example it is simple to compile the two source codes separately, one with the compile flag, the other without, and then create the shared library (libexample.so).
But in a big automatic build like the java upm libraries, this may prove too hard or too complicated to do. A workaround to this would be to define a custom symbol (e.q. JAVACALLBACK in the upm library) and also test for it. In short, replace:
```c++
#if defined(SWIGJAVA)
```
by
```c++
#if defined(SWIGJAVA) || defined(JAVACALLBACK)
```

View File

@ -10,93 +10,132 @@ sensors that you want to add to UPM:
- Have the specific sensor manufacturer/model & version that you used, if you - Have the specific sensor manufacturer/model & version that you used, if you
support multiple versions please list. support multiple versions please list.
- Simple comments do not need full stops. - Simple comments do not need full stops.
- Stick to <80 chars per line even in comments. - Stick to <80 chars per line where possible.
- No text is allowed on the same line as the start or end of a comment /** */. - No text is allowed on the same line as the start or end of a comment /** */.
####The sensor block We currently document our libraries in the following way:
This is added just before the class declaration in your header(.h) file and has * **Doxygen** is used for documenting the API and generating the categories on
mandatory fields. For single sensor libraries, this block will actually the [UPM Libraries page](https://iotdk.intel.com/docs/master/upm/modules.html).
follow immediately after the library block. If you have multiple physical You can learn more about the Doxygen syntax [here](http://www.stack.nl/~dimitri/doxygen/manual/docblocks.html).
sensors, add this to every one. * **JSON** is used to provide sensor specifications, descriptions, supported
Here's an example (disregard the "@verbatim" tags in your actual code): platforms, links and other details.
``` When submitting a new driver, you will have to at least fill out the mandatory
@verbatim fields as described below.
/**
* @library <lib-name> ### The library JSON file
* @sensor <chip-id>
* @comname <component-name> Let's use the BME280 class snippet from the bmp280.json file as an example:
* @altname <alt-name>
* @altid <alt-id> ```json
* @type <component-category> {
* @man <component-manufacturer> "Library": "bmp280",
* @web <component-weblinks> "Description": "Bosch Atmospheric Sensor Library",
* @con <connection-type> "Sensor Class":
* @kit <component-kit> {
* "BME280":
* @brief Short class/sensor description {
* "Name": "Digital Humidity, Pressure, and Temperature Sensor",
* Then add a longer "Description": "The BME280 is as combined digital humidity, pressure and temperature sensor based on proven sensing principles. The sensor module is housed in an extremely compact metal-lid LGA package with a footprint of only 2.5 * 2.5 mm2 with a height of 0.93 mm. Its small dimensions and its low power consumption allow the implementation in battery driven devices such as handsets, GPS modules or watches. The BME280 is register and performance compatible to the Bosch Sensortec BMP280 digital pressure sensor",
* description here. "Aliases": ["bme280", "Grove - Barometer Sensor(BME280)"],
* "Categories": ["pressure", "humidity", "temperature"],
* @image html <component-img.jpeg> "Connections": ["gpio", "i2c", "spi"],
* @snippet <example-name.cxx> Interesting "Project Type": ["prototyping", "industrial"],
*/ "Manufacturers": ["adafruit", "seeed", "bosch"],
@endverbatim "Examples":
{
"Java": ["BMP280_Example.java"],
"Python": ["bmp280.py"],
"Node.js": ["bmp280.js"],
"C++": ["bmp280.cxx"],
"C": ["bmp280.c"]
},
"Specifications":
{
"Vdd": {"unit": "v", "low" : 1.7, "high": 3.6},
"Ioff" : {"unit": "mA", "low" : 0.0, "high": 0.0},
"Iavg": {"unit": "mA", "low" : 1, "high": 2},
"Pressure Range": {"unit": "hpA", "low" : 300, "high": 1100},
"Temperature Range": {"unit": "C", "low" : -40, "high": 85}
},
"Platforms":
{
"Intel Joule Module":
{
"Notes": ["Requires pull-up resistors with carrier board"]
}
},
"Urls" :
{
"Product Pages": ["https://www.adafruit.com/products/2652"],
"Datasheets": ["https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME280_DS001-11.pdf"],
"Schematics": ["https://learn.adafruit.com/assets/26693"]
}
}
}
}
``` ```
- `<lib-name>` When adding to an existing library this needs to match that #### Mandatory fields:
library's "@defgroup", otherwise this is a new library name, generally the
same as chip id. *Mandatory*
- `<chip-id>` Usually the chip number used by the sensor. When this is not
available or relevant, use a unique descriptor that makes sense. Must match
class name. *Mandatory*
- `<component-name>` Title Case descriptive name for your sensor, try to avoid
including the manufacturer's name here. Examples: Digital Pressure Sensor,
Serial MP3 Module, etc... *Mandatory*
- `<alt-name>` Alternative names that your sensor driver might have. This may
include manufacturer's name. *Optional*
- `<alt-id>` Alternative chip-ids that your sensor driver supports. *Optional*
- `<component-category>` Mention one or more categories the sensor fits in. Can
be 'other'. *Mandatory*
- `<component-manufacturer>` Sensor manufacturer. Can be 'generic'. *Mandatory*
- `<component-weblinks>` Links to vendors or data-sheets. *Optional*
- `<connection-type>` Specifies how does the sensor connect to the board
*Mandatory*
- `<component-kit>` Specifies if the sensor is part of a kit. *Optional*
Existing groups that can be used for the manufacturer, connection, category and For the library:
kit tags are found in the *src/groups.md* file.
Optionally, a small representative image can be placed in the "docs/images" - `Library` The name of the library. This is appended to the upm prefix during
subfolder and linked with the "@image" tag. a build.
**Please do not use existing, copyrighted images with your sensors!** - `Description` A short description of the library and what it contains.
The example should have an 'Interesting' section which will be highlighted as For the sensor classes:
a code sample in doxygen. Everything in between such tags will show up in the
class documentation when "@snippet" is added at the end of a class docstring.
Tags use this format (in "example-name.cxx"):
``` - `Sensor Class` This is the object containing the sensor class(es) within the
@verbatim library. Class objects need to match the name used in code.
//! [Interesting] - `Name` Title Case descriptive names for your sensor. Multiple values can be
used to capture the chip name, generic name, or specific name for a vendor.
Examples: Digital Pressure Sensor, Serial MP3 Module
- `Description` A more detailed explanation what the sensor does and how it
works.
- `Categories` Mention one or more categories the sensor fits in. Accepted
values are listed in the groups.md file.
- `Connections` Specifies how does the sensor connect to the board. Accepted
values are listed in the groups.md file.
- `Project Type` What time of projects is the sensor suited for. For example:
prototyping, industrial, commercial.
- `Manufacturers` List of sensor manufacturers or vendors. Can be 'generic',
other accepted values in groups.md.
- `Examples` Names of the example files provided with the library. At a minimum,
the `C++` example needs to be provided.
- `Urls` At least one link for `Product Pages` needs to be provided. Additional
links to `Datasheets` or `Schematics` can be added.
...example code here... #### Optional and customizable fields
//! [Interesting] - `Kits` Specifies if the sensor is part of a kit. Accepted values are listed
@endverbatim in the groups.md file.
``` - `Image` Name of the image file provided with the sensor class.
- `Specifications` Relevant sensor specifications as listed in the datasheet.
- `Platforms` Platform specific notes or known limitations and workarounds.
For more examples take a look at the existing headers in our github repository. As mentioned, accepted values for some of the fields are listed under the
[groups.md](../src/groups.md) file. If needed, you can add new categories
for your sensor library following the existing format.
####The library block JSON files are automatically checked for correctness and required fields on
code submissions.
**Please do not use copyrighted images with your sensors!**
Images from Seeed, DFRobot, Sparkfun or Adafruit are permitted.
### Doxygen tags
#### The library doxygen block
New libraries must have the "@brief", "@defgroup" and "@ingroup" tags in one New libraries must have the "@brief", "@defgroup" and "@ingroup" tags in one
block. This usually follows the namespace and it is common to have one sensor block. This usually follows the namespace and it is common to have one sensor
per library. per library.
You should end up with something like this: You should end up with something like this (disregard the "@verbatim" tags in
your actual code):
``` ```
@verbatim @verbatim
@ -111,8 +150,43 @@ You should end up with something like this:
@endverbatim @endverbatim
``` ```
In "@defgroup" use the same `<lib-name>` used in the sensor block. Multiple Use `<lib-name>` to name the library.
sensors can be added to the same library this way.
For "@ingroup" add the same values as in the sensor block for manufacturer, For "@ingroup" add the same values as in the sensor block for manufacturer,
category, connection type and kit. If you have multiple classes or sensors category, connection type and kit. If you have multiple classes or sensors
per library, only use the "@ingroup" tags that are common for all of them. per library, only use the "@ingroup" tags that are common for all of them.
Existing groups that can be used for the manufacturer, connection, category and
kit tags are found in the *src/groups.md* file.
#### The sensor doxygen block
This is added just before the class declaration in your header(.hpp) file and has
one mandatory field. For single sensor libraries, this block will actually follow
immediately after the library block. If you have multiple sensor classes, add
this to every one.
Here's an example:
```
@verbatim
/**
* @library <lib-name>
* @brief Short class/sensor description
*
* Then add a longer
* description here.
*/
@endverbatim
```
When adding to an existing library, `<lib-name>` needs to match that library's
"@defgroup".
For more examples take a look at the existing headers in our github repository.
Also, make sure to check our [sensortemplate](contributions.md#creating-a-new-sensor-library-using-the-sensortemplate)
as it can facilitate new sensor additions.
Existing header files might have additional fields under the sensor block. These
have been used in the past to generate sensor pages outside of doxygen, but they
are now deprecated and not required for new additions.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 14 KiB

BIN
docs/icons/upm_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -48,11 +48,11 @@ To install:
```bash ```bash
sudo add-apt-repository ppa:mraa/mraa sudo add-apt-repository ppa:mraa/mraa
sudo apt-get update sudo apt-get update
sudo apt-get install libupm-dev python-upm python3-upm upm-examples sudo apt-get install libupm-dev libupm-java python-upm python3-upm node-upm upm-examples
``` ```
Note that the Ubuntu PPA only provides the C/C++ and Python packages. Node.js Running UPM applications on Ubuntu systems requires elevated permissions
developers will have to install MRAA and UPM using NPM instead. (e.g. run with `sudo`).
### Node.js bindings only (NPM) ### Node.js bindings only (NPM)

View File

@ -702,7 +702,7 @@ CITE_BIB_FILES =
# messages are off. # messages are off.
# The default value is: NO. # The default value is: NO.
QUIET = NO QUIET = YES
# The WARNINGS tag can be used to turn on/off the warning messages that are # The WARNINGS tag can be used to turn on/off the warning messages that are
# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES # generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES
@ -860,7 +860,8 @@ EXCLUDE_SYMLINKS = NO
# bmi160 driver contains code provided by bosch. This source contains # bmi160 driver contains code provided by bosch. This source contains
# tags which are picked up by doxygen (namely \mainpage) and # tags which are picked up by doxygen (namely \mainpage) and
# incorrectly get added to docs. # incorrectly get added to docs.
EXCLUDE_PATTERNS = bosch_* EXCLUDE_PATTERNS = bosch_* \
sensortemplate*
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the # (namespaces, classes, functions, etc.) that should be excluded from the

View File

@ -702,7 +702,7 @@ CITE_BIB_FILES =
# messages are off. # messages are off.
# The default value is: NO. # The default value is: NO.
QUIET = NO QUIET = YES
# The WARNINGS tag can be used to turn on/off the warning messages that are # The WARNINGS tag can be used to turn on/off the warning messages that are
# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES # generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES

View File

@ -59,8 +59,8 @@ rpr220.cxx RPR220Sample.java rpr220.js rpr220.py
rpr220-intr.cxx RPR220_intrSample.java rpr220-intr.js rpr220-intr.py rpr220-intr.cxx RPR220_intrSample.java rpr220-intr.js rpr220-intr.py
slide.cxx SlideSample.java slide.js slide.py slide.cxx SlideSample.java slide.js slide.py
speaker.cxx SpeakerSample.java speaker.js speaker.py speaker.cxx SpeakerSample.java speaker.js speaker.py
i2clcd-ssd1308-oled.cxx SSD1308_oledSample.java ssd1308-oled.js ssd1308-oled.py lcd-ssd1308-oled.cxx SSD1308_oledSample.java ssd1308-oled.js ssd1308-oled.py
i2clcd-ssd1327-oled.cxx SSD1327_oledSample.java ssd1327-oled.js ssd1327-oled.py lcd-ssd1327-oled.cxx SSD1327_oledSample.java ssd1327-oled.js ssd1327-oled.py
st7735.cxx ST7735Sample.java st7735.js st7735.py st7735.cxx ST7735Sample.java st7735.js st7735.py
stepmotor.cxx StepMotorSample.java stepmotor.js stepmotor.py stepmotor.cxx StepMotorSample.java stepmotor.js stepmotor.py
tm1637.cxx TM1637Sample.java tm1637.js tm1637.py tm1637.cxx TM1637Sample.java tm1637.js tm1637.py

View File

@ -41,7 +41,7 @@
# a110x.c Requires libupmc-a110x # a110x.c Requires libupmc-a110x
# lcm1602-i2c.c Requires libupmc-lcm1602 # lcm1602-i2c.c Requires libupmc-lcm1602
# bmp280-bme280.c Requires libupmc-bmp280 # bmp280-bme280.c Requires libupmc-bmp280
# i2clcd-eboled.cxx Requires libupm-i2clcd # lcd-eboled.cxx Requires libupm-lcd
# #
# #
function (add_example example_src) function (add_example example_src)
@ -99,7 +99,7 @@ function (add_example example_src)
# Add each dependency to the library target # Add each dependency to the library target
foreach(_dep_target ${lib_target_names}) foreach(_dep_target ${lib_target_names})
target_link_libraries(${this_target_name} ${_dep_target} ${CMAKE_THREAD_LIBS_INIT}) target_link_libraries(${this_target_name} ${_dep_target} ${CMAKE_THREAD_LIBS_INIT} utilities-c)
endforeach () endforeach ()
endfunction (add_example example_src) endfunction (add_example example_src)
@ -117,4 +117,16 @@ if(BUILDEXAMPLES)
if(BUILDSWIGJAVA) if(BUILDSWIGJAVA)
add_subdirectory (java) add_subdirectory (java)
endif() endif()
# Add all examples as an install component (if building examples)
install (DIRECTORY ${PROJECT_SOURCE_DIR}/examples
DESTINATION ${CMAKE_INSTALL_DATADIR}/upm/
COMPONENT ${CMAKE_PROJECT_NAME}-examples
FILES_MATCHING
PATTERN "*.c"
PATTERN "*.cxx"
PATTERN "*.hpp"
PATTERN "*.java"
PATTERN "*.js"
PATTERN "*.py")
endif() endif()

View File

@ -22,16 +22,19 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include <stddef.h>
#include "a110x.hpp" #include "a110x.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
@ -41,36 +44,36 @@ void sig_handler(int signo)
volatile unsigned int counter = 0; volatile unsigned int counter = 0;
// Our interrupt handler // Our interrupt handler
void hallISR(void *arg) void
hallISR(void* arg)
{ {
counter++; counter++;
} }
int main () int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an A110X sensor on digital pin D2 // Instantiate an A110X sensor on digital pin D2
upm::A110X* hall = new upm::A110X(2); upm::A110X hall(2);
// This example uses a user-supplied interrupt handler to count // This example uses a user-supplied interrupt handler to count
// pulses that occur when a magnetic field of the correct polarity // pulses that occur when a magnetic field of the correct polarity
// is detected. This could be used to measure the rotations per // is detected. This could be used to measure the rotations per
// minute (RPM) of a rotor for example. // minute (RPM) of a rotor for example.
hall->installISR(hallISR, NULL); hall.installISR(hallISR, NULL);
while (shouldRun) while (shouldRun) {
{
cout << "Pulses detected: " << counter << endl; cout << "Pulses detected: " << counter << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete hall;
return 0; return 0;
} }

View File

@ -22,46 +22,46 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "a110x.hpp" #include "a110x.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main () main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an A110X sensor on digital pin D2 // Instantiate an A110X sensor on digital pin D2
upm::A110X* hall = new upm::A110X(2); upm::A110X hall(2);
// check every second for the presence of a magnetic field (south // check every second for the presence of a magnetic field (south
// polarity) // polarity)
while (shouldRun) while (shouldRun) {
{ bool val = hall.magnetDetected();
bool val = hall->magnetDetected();
if (val) if (val)
cout << "Magnet (south polarity) detected." << endl; cout << "Magnet (south polarity) detected." << endl;
else else
cout << "No magnet detected." << endl; cout << "No magnet detected." << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete hall;
return 0; return 0;
} }

View File

@ -22,40 +22,41 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "abp.hpp" #include "abp.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main () main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an ABP sensor on i2c bus 0 // Instantiate an ABP sensor on i2c bus 0
upm::ABP* abp = new upm::ABP(0, ABP_DEFAULT_ADDRESS); upm::ABP abp(0, ABP_DEFAULT_ADDRESS);
while (shouldRun) { while (shouldRun) {
abp->update(); abp.update();
cout << "Retrieved pressure: " << abp->getPressure() << endl; cout << "Retrieved pressure: " << abp.getPressure() << endl;
cout << "Retrieved Temperature: " << abp->getTemperature() << endl; cout << "Retrieved Temperature: " << abp.getTemperature() << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete abp;
return 0; return 0;
} }

View File

@ -22,44 +22,45 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "ad8232.hpp" #include "ad8232.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a Ad8232 sensor on digital pins 10 (LO+), 11 (LO-) // Instantiate a Ad8232 sensor on digital pins 10 (LO+), 11 (LO-)
// and an analog pin, 0 (OUTPUT) // and an analog pin, 0 (OUTPUT)
upm::AD8232 *ad8232 = new upm::AD8232(10, 11, 0); upm::AD8232 ad8232(10, 11, 0);
// Output the raw numbers from the ADC, for plotting elsewhere. // Output the raw numbers from the ADC, for plotting elsewhere.
// A return of 0 indicates a Lead Off (LO) condition. // A return of 0 indicates a Lead Off (LO) condition.
// In theory, this data could be fed to software like Processing // In theory, this data could be fed to software like Processing
// (https://www.processing.org/) to plot the data just like an // (https://www.processing.org/) to plot the data just like an
// EKG you would see in a hospital. // EKG you would see in a hospital.
while (shouldRun) while (shouldRun) {
{ cout << ad8232.value() << endl;
cout << ad8232->value() << endl; upm_delay_us(1000);
usleep(1000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete ad8232;
return 0; return 0;
} }

View File

@ -22,61 +22,56 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <signal.h>
#include <iostream> #include <iostream>
#include "adafruitms1438.hpp" #include "adafruitms1438.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Instantiate an Adafruit MS 1438 on I2C bus 0 // Instantiate an Adafruit MS 1438 on I2C bus 0
upm::AdafruitMS1438 *ms = upm::AdafruitMS1438 ms(ADAFRUITMS1438_I2C_BUS, ADAFRUITMS1438_DEFAULT_I2C_ADDR);
new upm::AdafruitMS1438(ADAFRUITMS1438_I2C_BUS,
ADAFRUITMS1438_DEFAULT_I2C_ADDR);
// Setup for use with a stepper motor connected to the M1 & M2 ports // Setup for use with a stepper motor connected to the M1 & M2 ports
// set a PWM period of 50Hz // set a PWM period of 50Hz
// disable first, to be safe // disable first, to be safe
ms->disableStepper(AdafruitMS1438::STEPMOTOR_M12); ms.disableStepper(AdafruitMS1438::STEPMOTOR_M12);
// configure for a NEMA-17, 200 steps per revolution // configure for a NEMA-17, 200 steps per revolution
ms->stepConfig(AdafruitMS1438::STEPMOTOR_M12, 200); ms.stepConfig(AdafruitMS1438::STEPMOTOR_M12, 200);
// set speed at 10 RPM's // set speed at 10 RPM's
ms->setStepperSpeed(AdafruitMS1438::STEPMOTOR_M12, 10); ms.setStepperSpeed(AdafruitMS1438::STEPMOTOR_M12, 10);
ms->setStepperDirection(AdafruitMS1438::STEPMOTOR_M12, ms.setStepperDirection(AdafruitMS1438::STEPMOTOR_M12, AdafruitMS1438::DIR_CW);
AdafruitMS1438::DIR_CW);
// enable // enable
cout << "Enabling..." << endl; cout << "Enabling..." << endl;
ms->enableStepper(AdafruitMS1438::STEPMOTOR_M12); ms.enableStepper(AdafruitMS1438::STEPMOTOR_M12);
cout << "Rotating 1 full revolution at 10 RPM speed." << endl; cout << "Rotating 1 full revolution at 10 RPM speed." << endl;
ms->stepperSteps(AdafruitMS1438::STEPMOTOR_M12, 200); ms.stepperSteps(AdafruitMS1438::STEPMOTOR_M12, 200);
cout << "Sleeping for 2 seconds..." << endl; cout << "Sleeping for 2 seconds..." << endl;
sleep(2); upm_delay(2);
cout << "Rotating 1/2 revolution in opposite direction at 10 RPM speed." cout << "Rotating 1/2 revolution in opposite direction at 10 RPM speed." << endl;
<< endl;
ms->setStepperDirection(AdafruitMS1438::STEPMOTOR_M12, ms.setStepperDirection(AdafruitMS1438::STEPMOTOR_M12, AdafruitMS1438::DIR_CCW);
AdafruitMS1438::DIR_CCW); ms.stepperSteps(AdafruitMS1438::STEPMOTOR_M12, 100);
ms->stepperSteps(AdafruitMS1438::STEPMOTOR_M12, 100);
cout << "Disabling..." << endl; cout << "Disabling..." << endl;
ms->disableStepper(AdafruitMS1438::STEPMOTOR_M12); ms.disableStepper(AdafruitMS1438::STEPMOTOR_M12);
cout << "Exiting" << endl; cout << "Exiting" << endl;
//! [Interesting] //! [Interesting]
delete ms;
return 0; return 0;
} }

View File

@ -22,54 +22,51 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <signal.h>
#include <iostream> #include <iostream>
#include "adafruitms1438.hpp" #include "adafruitms1438.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Instantiate an Adafruit MS 1438 on I2C bus 0 // Instantiate an Adafruit MS 1438 on I2C bus 0
upm::AdafruitMS1438 *ms = upm::AdafruitMS1438 ms(ADAFRUITMS1438_I2C_BUS, ADAFRUITMS1438_DEFAULT_I2C_ADDR);
new upm::AdafruitMS1438(ADAFRUITMS1438_I2C_BUS,
ADAFRUITMS1438_DEFAULT_I2C_ADDR);
// Setup for use with a DC motor connected to the M3 port // Setup for use with a DC motor connected to the M3 port
// set a PWM period of 50Hz // set a PWM period of 50Hz
ms->setPWMPeriod(50); ms.setPWMPeriod(50);
// disable first, to be safe // disable first, to be safe
ms->disableMotor(AdafruitMS1438::MOTOR_M3); ms.disableMotor(AdafruitMS1438::MOTOR_M3);
// set speed at 50% // set speed at 50%
ms->setMotorSpeed(AdafruitMS1438::MOTOR_M3, 50); ms.setMotorSpeed(AdafruitMS1438::MOTOR_M3, 50);
ms->setMotorDirection(AdafruitMS1438::MOTOR_M3, AdafruitMS1438::DIR_CW); ms.setMotorDirection(AdafruitMS1438::MOTOR_M3, AdafruitMS1438::DIR_CW);
cout << "Spin M3 at half speed for 3 seconds, then reverse for 3 seconds." cout << "Spin M3 at half speed for 3 seconds, then reverse for 3 seconds." << endl;
<< endl;
ms->enableMotor(AdafruitMS1438::MOTOR_M3); ms.enableMotor(AdafruitMS1438::MOTOR_M3);
sleep(3); upm_delay(3);
cout << "Reversing M3" << endl; cout << "Reversing M3" << endl;
ms->setMotorDirection(AdafruitMS1438::MOTOR_M3, AdafruitMS1438::DIR_CCW); ms.setMotorDirection(AdafruitMS1438::MOTOR_M3, AdafruitMS1438::DIR_CCW);
sleep(3); upm_delay(3);
cout << "Stopping M3" << endl; cout << "Stopping M3" << endl;
ms->disableMotor(AdafruitMS1438::MOTOR_M3); ms.disableMotor(AdafruitMS1438::MOTOR_M3);
cout << "Exiting" << endl; cout << "Exiting" << endl;
//! [Interesting] //! [Interesting]
delete ms;
return 0; return 0;
} }

View File

@ -22,56 +22,57 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
/** /**
* Description * Description
* Demo program for Adafruit 16 channel servo shield/controller * Demo program for Adafruit 16 channel servo shield/controller
* Physical setup for tests is a single servo attached to one channel. * Physical setup for tests is a single servo attached to one channel.
* Note - when 3 or more GWS servos attached results unpredictable. * Note - when 3 or more GWS servos attached results unpredictable.
* Adafruit do recommend a Cap be installed on the board which should alleviate the issue. * Adafruit do recommend a Cap be installed on the board which should alleviate
* the issue.
* I (and Adafruit) are unable to give any Capacitor sizing data. * I (and Adafruit) are unable to give any Capacitor sizing data.
*/ */
#include <iostream> #include <iostream>
#include "adafruitss.hpp" #include "adafruitss.hpp"
#include <unistd.h> #include "upm_utilities.h"
using namespace std; using namespace std;
int main() { int
main()
{
int n;
int n; //! [Interesting]
upm::adafruitss servos(6, 0x40);
//! [Interesting] for (;;) {
upm::adafruitss* servos = new upm::adafruitss(6,0x40);
for (;;)
{
cout << "Setting all to 0" << endl; cout << "Setting all to 0" << endl;
for (n = 0; n < 16; n++) for (n = 0; n < 16; n++)
servos->servo(n, 1, 0); // GWS Mini Servo = Type 1. servos.servo(n, 1, 0); // GWS Mini Servo = Type 1.
usleep(1000000); // Wait 1 second upm_delay_us(1000000); // Wait 1 second
cout << "Setting all to 45" << endl; cout << "Setting all to 45" << endl;
for (n = 0; n < 16; n++) for (n = 0; n < 16; n++)
servos->servo(n, 1, 45); servos.servo(n, 1, 45);
usleep(1000000); // Wait 1 second upm_delay_us(1000000); // Wait 1 second
cout << "Setting all to 90" << endl; cout << "Setting all to 90" << endl;
for (n = 0; n < 16; n++) for (n = 0; n < 16; n++)
servos->servo(n, 1, 90); servos.servo(n, 1, 90);
usleep(1000000); // Wait 1 second upm_delay_us(1000000); // Wait 1 second
cout << "Setting all to 135" << endl; cout << "Setting all to 135" << endl;
for (n = 0; n < 16; n++) for (n = 0; n < 16; n++)
servos->servo(n, 1, 135); servos.servo(n, 1, 135);
usleep(1000000); // Wait 1 second upm_delay_us(1000000); // Wait 1 second
cout << "Setting all to 180" << endl; cout << "Setting all to 180" << endl;
for (n = 0; n < 16; n++) for (n = 0; n < 16; n++)
servos->servo(n, 1, 160); servos.servo(n, 1, 160);
usleep(2000000); // Wait 1 second upm_delay_us(2000000); // Wait 1 second
} }
//! [Interesting] //! [Interesting]
return 0; return 0;
} }

View File

@ -22,45 +22,44 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <signal.h>
#include <iostream> #include <iostream>
#include <signal.h>
#include "adc121c021.hpp" #include "adc121c021.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an ADC121C021 on I2C bus 0 // Instantiate an ADC121C021 on I2C bus 0
upm::ADC121C021 *adc = new upm::ADC121C021(ADC121C021_I2C_BUS, upm::ADC121C021 adc(ADC121C021_I2C_BUS, ADC121C021_DEFAULT_I2C_ADDR);
ADC121C021_DEFAULT_I2C_ADDR);
// An analog sensor, such as a Grove light sensor, // An analog sensor, such as a Grove light sensor,
// must be attached to the adc // must be attached to the adc
// Prints the value and corresponding voltage every 50 milliseconds // Prints the value and corresponding voltage every 50 milliseconds
while (shouldRun) while (shouldRun) {
{ uint16_t val = adc.value();
uint16_t val = adc->value(); cout << "ADC value: " << val << " Volts = " << adc.valueToVolts(val) << endl;
cout << "ADC value: " << val << " Volts = " upm_delay_us(50000);
<< adc->valueToVolts(val) << endl;
usleep(50000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete adc;
return 0; return 0;
} }

View File

@ -12,9 +12,12 @@
// This example code runs on an Intel Edison and uses mraa to acquire data // This example code runs on an Intel Edison and uses mraa to acquire data
// from an ADIS16448. This data is then scaled and printed onto the terminal. // from an ADIS16448. This data is then scaled and printed onto the terminal.
// //
// This software has been tested to connect to an ADIS16448 through a level shifter // This software has been tested to connect to an ADIS16448 through a level
// such as the TI TXB0104. The SPI lines (DIN, DOUT, SCLK, /CS) are all wired through // shifter
// the level shifter and the ADIS16448 is also being powered by the Intel Edison. // such as the TI TXB0104. The SPI lines (DIN, DOUT, SCLK, /CS) are all wired
// through
// the level shifter and the ADIS16448 is also being powered by the Intel
// Edison.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the // a copy of this software and associated documentation files (the
@ -36,31 +39,29 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// //
////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h>
#include "adis16448.hpp" #include "adis16448.hpp"
#include "upm_utilities.h"
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
while(true) while (true) {
{
//! [Interesting] //! [Interesting]
upm::ADIS16448* imu = new upm::ADIS16448(0,3); //upm::ADIS16448(SPI,RST) upm::ADIS16448 imu(0, 3); // upm::ADIS16448(SPI,RST)
//Read the specified register, scale it, and display it on the screen // Read the specified register, scale it, and display it on the screen
std::cout << "XGYRO_OUT:" << imu->gyroScale(imu->regRead(XGYRO_OUT)) << std::endl; std::cout << "XGYRO_OUT:" << imu.gyroScale(imu.regRead(XGYRO_OUT)) << std::endl;
std::cout << "YGYRO_OUT:" << imu->gyroScale(imu->regRead(YGYRO_OUT)) << std::endl; std::cout << "YGYRO_OUT:" << imu.gyroScale(imu.regRead(YGYRO_OUT)) << std::endl;
std::cout << "ZGYRO_OUT:" << imu->gyroScale(imu->regRead(ZGYRO_OUT)) << std::endl; std::cout << "ZGYRO_OUT:" << imu.gyroScale(imu.regRead(ZGYRO_OUT)) << std::endl;
std::cout << " " << std::endl; std::cout << " " << std::endl;
std::cout << "XACCL_OUT:" << imu->accelScale(imu->regRead(XACCL_OUT)) << std::endl; std::cout << "XACCL_OUT:" << imu.accelScale(imu.regRead(XACCL_OUT)) << std::endl;
std::cout << "YACCL_OUT:" << imu->accelScale(imu->regRead(YACCL_OUT)) << std::endl; std::cout << "YACCL_OUT:" << imu.accelScale(imu.regRead(YACCL_OUT)) << std::endl;
std::cout << "ZACCL_OUT:" << imu->accelScale(imu->regRead(ZACCL_OUT)) << std::endl; std::cout << "ZACCL_OUT:" << imu.accelScale(imu.regRead(ZACCL_OUT)) << std::endl;
std::cout << " " << std::endl; std::cout << " " << std::endl;
//! [Interesting] //! [Interesting]
sleep(1); upm_delay(1);
} }
return (0); return (0);
} }

View File

@ -22,47 +22,38 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h> #include <exception>
#include <iostream> #include <iostream>
#include <stddef.h>
#include "ads1015.hpp" #include "ads1015.hpp"
#include "iADC.hpp"
#include "mraa/gpio.hpp" #include "mraa/gpio.hpp"
#include "upm_utilities.h"
#define EDISON_I2C_BUS 1 #define EDISON_I2C_BUS 1
#define FT4222_I2C_BUS 0 #define FT4222_I2C_BUS 0
#define EDISON_GPIO_SI7005_CS 20 #define EDISON_GPIO_SI7005_CS 20
int
//! [Interesting] main()
// Simple example of using IADC to determine
// which sensor is present and return its name.
// IADC is then used to get readings from sensor
upm::IADC* getADC()
{ {
upm::IADC* adc = NULL; /* Create an instance of the ADS1015 sensor */
try { upm::ADS1015 sensor(EDISON_I2C_BUS);
adc = new upm::ADS1015(EDISON_I2C_BUS);
mraa::Gpio gpio(EDISON_GPIO_SI7005_CS); mraa::Gpio gpio(EDISON_GPIO_SI7005_CS);
gpio.dir(mraa::DIR_OUT_HIGH); gpio.dir(mraa::DIR_OUT_HIGH);
return adc;
} catch (std::exception& e) {
std::cerr << "ADS1015: " << e.what() << std::endl;
}
return adc;
}
int main () /* Show usage from the IADC interface */
{ upm::IADC* adc = static_cast<upm::IADC*>(&sensor);
upm::IADC* adc = getADC();
if (adc == NULL) { if (adc == NULL) {
std::cout << "ADC not detected" << std::endl; std::cout << "ADC not detected" << std::endl;
return 1; return 1;
} }
std::cout << "ADC " << adc->getModuleName() << " detected. " ; std::cout << "ADC " << adc->getModuleName() << " detected. ";
std::cout << adc->getNumInputs() << " inputs available" << std::endl; std::cout << adc->getNumInputs() << " inputs available" << std::endl;
while (true) { while (true) {
for (unsigned int i=0; i<adc->getNumInputs(); ++i) { for (unsigned int i = 0; i < adc->getNumInputs(); ++i) {
std::cout << "Input " << i; std::cout << "Input " << i;
try { try {
float voltage = adc->getVoltage(i); float voltage = adc->getVoltage(i);
@ -71,9 +62,9 @@ int main ()
std::cerr << e.what() << std::endl; std::cerr << e.what() << std::endl;
} }
} }
sleep(1); upm_delay(1);
} }
delete adc;
return 0; return 0;
} }

View File

@ -29,11 +29,13 @@
*/ */
#include <fstream> #include <fstream>
#include <iostream>
#include <string> #include <string>
#include <thread> #include <thread>
#include <unistd.h>
#include "ads1015.hpp" #include "ads1015.hpp"
#include "ads1x15.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
@ -41,13 +43,15 @@ using namespace upm;
bool running = true; // Controls main read/write loop bool running = true; // Controls main read/write loop
// Thread function // Thread function
void stop() void
stop()
{ {
sleep(10); upm_delay(10);
running = false; running = false;
} }
int main() int
main()
{ {
//! [Interesting] //! [Interesting]
long id = 0; // Sample number long id = 0; // Sample number
@ -55,25 +59,25 @@ int main()
ofstream f; ofstream f;
// Initialize and configure the ADS1015 // Initialize and configure the ADS1015
ADS1015 *ads1015 = new upm::ADS1015(0, 0x48); ADS1015 ads1015(0, 0x48);
// Put the ADC into differential mode for pins A0 and A1 // Put the ADC into differential mode for pins A0 and A1
ads1015->getSample(ADS1X15::DIFF_0_1); ads1015.getSample(ADS1X15::DIFF_0_1);
// Set the gain based on expected VIN range to -/+ 2.048 V // Set the gain based on expected VIN range to -/+ 2.048 V
// Can be adjusted based on application to as low as -/+ 0.256 V, see API // Can be adjusted based on application to as low as -/+ 0.256 V, see API
// documentation for details // documentation for details
ads1015->setGain(ADS1X15::GAIN_TWO); ads1015.setGain(ADS1X15::GAIN_TWO);
// Set the sample rate to 3300 samples per second (max) and turn on continuous // Set the sample rate to 3300 samples per second (max) and turn on continuous
// sampling // sampling
ads1015->setSPS(ADS1015::SPS_3300); ads1015.setSPS(ADS1015::SPS_3300);
ads1015->setContinuous(true); ads1015.setContinuous(true);
// Enable exceptions from the output stream // Enable exceptions from the output stream
f.exceptions(ofstream::failbit | ofstream::badbit); f.exceptions(ofstream::failbit | ofstream::badbit);
// Open the file // Open the file
try{ try {
f.open(fileName); f.open(fileName);
// Output formatting // Output formatting
@ -81,19 +85,18 @@ int main()
f.precision(7); f.precision(7);
// Start the thread that will stop logging after 10 seconds // Start the thread that will stop logging after 10 seconds
thread timer (stop); thread timer(stop);
// Read sensor data and write it to the output file every ms // Read sensor data and write it to the output file every ms
while(running){ while (running) {
f << id++ << " " << ads1015->getLastSample() << endl; f << id++ << " " << ads1015.getLastSample() << endl;
usleep(1000); upm_delay_us(1000);
} }
// Clean-up and exit // Clean-up and exit
timer.join(); timer.join();
f.close(); f.close();
delete ads1015; } catch (ios_base::failure& e) {
} catch (ios_base::failure &e) {
cout << "Failed to write to file: " << e.what() << endl; cout << "Failed to write to file: " << e.what() << endl;
return 1; return 1;
} }
@ -101,4 +104,3 @@ int main()
//! [Interesting] //! [Interesting]
return 0; return 0;
} }

View File

@ -28,11 +28,13 @@
*/ */
#include <fstream> #include <fstream>
#include <iostream>
#include <string> #include <string>
#include <thread> #include <thread>
#include <unistd.h>
#include "ads1115.hpp" #include "ads1115.hpp"
#include "ads1x15.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
@ -40,13 +42,15 @@ using namespace upm;
bool running = true; // Controls main read/write loop bool running = true; // Controls main read/write loop
// Thread function // Thread function
void stop() void
stop()
{ {
sleep(10); upm_delay(10);
running = false; running = false;
} }
int main() int
main()
{ {
//! [Interesting] //! [Interesting]
long id = 0; // Sample number long id = 0; // Sample number
@ -57,26 +61,26 @@ int main()
// There are two ADS1115 chips on the DFRobot Joule Shield on the same I2C bus // There are two ADS1115 chips on the DFRobot Joule Shield on the same I2C bus
// - 0x48 gives access to pins A0 - A3 // - 0x48 gives access to pins A0 - A3
// - 0x49 gives access to pins A4 - A7 // - 0x49 gives access to pins A4 - A7
ADS1115 *ads1115 = new upm::ADS1115(0, 0x48); ADS1115 ads1115(0, 0x48);
// Put the ADC into differential mode for pins A0 and A1, // Put the ADC into differential mode for pins A0 and A1,
// the SM-24 Geophone is connected to these pins // the SM-24 Geophone is connected to these pins
ads1115->getSample(ADS1X15::DIFF_0_1); ads1115.getSample(ADS1X15::DIFF_0_1);
// Set the gain based on expected VIN range to -/+ 2.048 V // Set the gain based on expected VIN range to -/+ 2.048 V
// Can be adjusted based on application to as low as -/+ 0.256 V, see API // Can be adjusted based on application to as low as -/+ 0.256 V, see API
// documentation for details // documentation for details
ads1115->setGain(ADS1X15::GAIN_TWO); ads1115.setGain(ADS1X15::GAIN_TWO);
// Set the sample rate to 860 samples per second (max) and turn on continuous // Set the sample rate to 860 samples per second (max) and turn on continuous
// sampling // sampling
ads1115->setSPS(ADS1115::SPS_860); ads1115.setSPS(ADS1115::SPS_860);
ads1115->setContinuous(true); ads1115.setContinuous(true);
// Enable exceptions from the output stream // Enable exceptions from the output stream
f.exceptions(ofstream::failbit | ofstream::badbit); f.exceptions(ofstream::failbit | ofstream::badbit);
// Open the file // Open the file
try{ try {
f.open(fileName); f.open(fileName);
// Output formatting // Output formatting
@ -84,19 +88,18 @@ int main()
f.precision(7); f.precision(7);
// Start the thread that will stop logging after 10 seconds // Start the thread that will stop logging after 10 seconds
thread timer (stop); thread timer(stop);
// Read sensor data and write it to the output file every ms // Read sensor data and write it to the output file every ms
while(running){ while (running) {
f << id++ << " " << ads1115->getLastSample() << endl; f << id++ << " " << ads1115.getLastSample() << endl;
usleep(1000); upm_delay_us(1000);
} }
// Clean-up and exit // Clean-up and exit
timer.join(); timer.join();
f.close(); f.close();
delete ads1115; } catch (ios_base::failure& e) {
} catch (ios_base::failure &e) {
cout << "Failed to write to file: " << e.what() << endl; cout << "Failed to write to file: " << e.what() << endl;
return 1; return 1;
} }
@ -104,4 +107,3 @@ int main()
//! [Interesting] //! [Interesting]
return 0; return 0;
} }

View File

@ -22,44 +22,40 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include "mraa.hpp"
#include <iostream> #include <iostream>
#include <unistd.h>
#include "ads1015.hpp" #include "ads1015.hpp"
#include "ads1115.hpp" #include "ads1115.hpp"
#include "ads1x15.hpp"
int
main()
int main()
{ {
using namespace std; using namespace std;
using namespace upm; using namespace upm;
int command; int command;
//! [Interesting] //! [Interesting]
//Select the device you are testing here and adjust case 6 for the correct sample rates. // Select the device you are testing here and adjust case 6 for the correct
//upm::ADS1015 *ads = new upm::ADS1015(1); // sample rates.
upm::ADS1115 *ads = new upm::ADS1115(1, 0x49); upm::ADS1115 ads(1, 0x49);
float inputVoltage; float inputVoltage;
int ans; int ans;
do do {
{
cout << endl; cout << endl;
cout << "1 - get Conversion \t" ; cout << "1 - get Conversion \t";
cout << "2 - get last conversion" << endl; cout << "2 - get last conversion" << endl;
cout << "3 - get Gain \t\t"; cout << "3 - get Gain \t\t";
cout << "4 - set Gain" << endl;; cout << "4 - set Gain" << endl;
;
cout << "5 - get Data Rate \t"; cout << "5 - get Data Rate \t";
cout << "6 - set Data Rate" << endl; cout << "6 - set Data Rate" << endl;
cout << "7 - Set Upper Threshold \t" ; cout << "7 - Set Upper Threshold \t";
cout << "8 - Set Lower Threshold \t"; cout << "8 - Set Lower Threshold \t";
cout << "9 - Display Thresholds \t"; cout << "9 - Display Thresholds \t";
cout << "10 - Set Default Thresholds \t"; cout << "10 - Set Default Thresholds \t";
cout << "11 - Set conversion ready" << endl; cout << "11 - Set conversion ready" << endl;
cout << "12 - get Comp Que \t" ; cout << "12 - get Comp Que \t";
cout << "13 - set Comp Que" << endl; cout << "13 - set Comp Que" << endl;
cout << "14 - get Comp Pol \t"; cout << "14 - get Comp Pol \t";
cout << "15 - set Comp Pol" << endl; cout << "15 - set Comp Pol" << endl;
@ -73,17 +69,15 @@ int main()
cout << "Enter a command: "; cout << "Enter a command: ";
cin >> command; cin >> command;
switch (command) {
switch(command)
{
case 2: case 2:
cout << ads->getLastSample() << endl; cout << ads.getLastSample() << endl;
break; break;
case 3: case 3:
cout << std::hex << ads->getGain() << endl; cout << std::hex << ads.getGain() << endl;
break; break;
case 5: case 5:
cout << std::hex << ads->getSPS() << endl; cout << std::hex << ads.getSPS() << endl;
break; break;
case 4: case 4:
int gain; int gain;
@ -92,7 +86,7 @@ int main()
cout << "1 -> gain 2/3 \t 2 -> gain1 \t 3 -> gain 2" << endl; cout << "1 -> gain 2/3 \t 2 -> gain1 \t 3 -> gain 2" << endl;
cout << "4 -> gain 4 \t 5 -> gain 8 \t 6 -> gain 15" << endl; cout << "4 -> gain 4 \t 5 -> gain 8 \t 6 -> gain 15" << endl;
cin >> gain; cin >> gain;
switch(gain){ switch (gain) {
case 1: case 1:
set_gain = ADS1X15::GAIN_TWOTHIRDS; set_gain = ADS1X15::GAIN_TWOTHIRDS;
break; break;
@ -114,13 +108,14 @@ int main()
default: default:
set_gain = ADS1X15::GAIN_ONE; set_gain = ADS1X15::GAIN_ONE;
} }
ads->setGain(set_gain); ads.setGain(set_gain);
break; break;
case 6: case 6:
int rate; int rate;
/*ADS1015::ADSDATARATE set_rate; /*ADS1015::ADSDATARATE set_rate;
cout << "select one of the following:" << endl; cout << "select one of the following:" << endl;
cout << "1 -> SPS_120 \t 2 -> SPS_250 \t 3 -> SPS_490 \t 4 -> SPS_920" << endl; cout << "1 -> SPS_120 \t 2 -> SPS_250 \t 3 -> SPS_490 \t 4 -> SPS_920" <<
endl;
cout << "5 -> SPS_1600 \t 6 -> SPS_2400 \t 7 -> SPS_3300" << endl; cout << "5 -> SPS_1600 \t 6 -> SPS_2400 \t 7 -> SPS_3300" << endl;
cin >> rate; cin >> rate;
switch(rate){ switch(rate){
@ -153,7 +148,7 @@ int main()
cout << "1 -> SPS_8 \t 2 -> SPS_16 \t 3 -> SPS_32 \t 4 -> SPS_64" << endl; cout << "1 -> SPS_8 \t 2 -> SPS_16 \t 3 -> SPS_32 \t 4 -> SPS_64" << endl;
cout << "5 -> SPS_128 \t 6 -> SPS_250 \t 7 -> SPS_475 \t 8-> SPS_860" << endl; cout << "5 -> SPS_128 \t 6 -> SPS_250 \t 7 -> SPS_475 \t 8-> SPS_860" << endl;
cin >> rate; cin >> rate;
switch(rate){ switch (rate) {
case 1: case 1:
set_rate = ADS1115::SPS_8; set_rate = ADS1115::SPS_8;
break; break;
@ -182,16 +177,18 @@ int main()
set_rate = ADS1115::SPS_128; set_rate = ADS1115::SPS_128;
} }
ads->setSPS(set_rate); ads.setSPS(set_rate);
break; break;
case 1: case 1:
int mode; int mode;
ADS1X15::ADSMUXMODE set_mode; ADS1X15::ADSMUXMODE set_mode;
cout << "select one of the following:" << endl; cout << "select one of the following:" << endl;
cout << "1 -> MUX_0_1 \t 2 -> MUX_0_3 \t 3 -> MUX_1_3 \t 4 -> MUX_2_3" << endl; cout << "1 -> MUX_0_1 \t 2 -> MUX_0_3 \t 3 -> MUX_1_3 \t 4 -> MUX_2_3" << endl;
cout << "5 -> SINGLE_0 \t 6 -> SINGLE_1 \t 7 -> SINGLE_2 \t 8 -> SINGLE_3" << endl; cout << "5 -> SINGLE_0 \t 6 -> SINGLE_1 \t 7 -> SINGLE_2 \t 8 -> "
"SINGLE_3"
<< endl;
cin >> mode; cin >> mode;
switch(mode){ switch (mode) {
case 1: case 1:
set_mode = ADS1X15::DIFF_0_1; set_mode = ADS1X15::DIFF_0_1;
break; break;
@ -220,91 +217,101 @@ int main()
set_mode = ADS1X15::DIFF_0_1; set_mode = ADS1X15::DIFF_0_1;
break; break;
} }
cout << ads->getSample(set_mode) << endl; cout << ads.getSample(set_mode) << endl;
break; break;
case 7: case 7:
cout << " enter a float value: " ; cout << " enter a float value: ";
cin >> inputVoltage; cin >> inputVoltage;
ads->setThresh(ADS1115::THRESH_HIGH, inputVoltage); ads.setThresh(ADS1115::THRESH_HIGH, inputVoltage);
break; break;
case 8: case 8:
cout << " enter a float value: " ; cout << " enter a float value: ";
cin >> inputVoltage; cin >> inputVoltage;
ads->setThresh(ADS1115::THRESH_LOW, inputVoltage); ads.setThresh(ADS1115::THRESH_LOW, inputVoltage);
break; break;
case 9: case 9:
cout << "Upper " << ads->getThresh(ADS1X15::THRESH_HIGH) << endl; cout << "Upper " << ads.getThresh(ADS1X15::THRESH_HIGH) << endl;
cout << "Lower " << ads->getThresh(ADS1X15::THRESH_LOW) << endl; cout << "Lower " << ads.getThresh(ADS1X15::THRESH_LOW) << endl;
break; break;
case 10: case 10:
ads->setThresh(ADS1115::THRESH_DEFAULT); ads.setThresh(ADS1115::THRESH_DEFAULT);
break; break;
case 11: case 11:
ads->setThresh(ADS1015::CONVERSION_RDY); ads.setThresh(ADS1015::CONVERSION_RDY);
break; break;
case 12: case 12:
cout << ads->getCompQue() << endl; cout << ads.getCompQue() << endl;
break; break;
case 13: case 13:
int que; int que;
cout << "select one of the following:" << endl; cout << "select one of the following:" << endl;
cout << "1 -> CQUE_1CONV \t 2 -> CQUE_2CONV \t 3 -> CQUE_3CONV \t 4 -> CQUE_NONE" << endl; cout << "1 -> CQUE_1CONV \t 2 -> CQUE_2CONV \t 3 -> CQUE_3CONV \t 4 -> "
"CQUE_NONE"
<< endl;
cin >> que; cin >> que;
switch(que){ switch (que) {
case 1: case 1:
ads->setCompQue(ADS1X15::CQUE_1CONV); ads.setCompQue(ADS1X15::CQUE_1CONV);
break; break;
case 2: case 2:
ads->setCompQue(ADS1X15::CQUE_2CONV); ads.setCompQue(ADS1X15::CQUE_2CONV);
break; break;
case 3: case 3:
ads->setCompQue(ADS1X15::CQUE_4CONV); ads.setCompQue(ADS1X15::CQUE_4CONV);
break; break;
case 4: case 4:
default: default:
ads->setCompQue(ADS1X15::CQUE_NONE); ads.setCompQue(ADS1X15::CQUE_NONE);
break; break;
} }
break; break;
case 14: case 14:
cout << ads->getCompPol() << endl; cout << ads.getCompPol() << endl;
break; break;
case 15: case 15:
cout << "select one of the following:" << endl; cout << "select one of the following:" << endl;
cout << "1 -> active high \t 2 -> active low" << endl; cout << "1 -> active high \t 2 -> active low" << endl;
cin >> ans; cin >> ans;
if(ans == 1) ads->setCompPol(true); if (ans == 1)
else ads->setCompPol(false); ads.setCompPol(true);
else
ads.setCompPol(false);
break; break;
case 16: case 16:
cout << ads->getCompMode() << endl; cout << ads.getCompMode() << endl;
break; break;
case 17: case 17:
cout << "select one of the following:" << endl; cout << "select one of the following:" << endl;
cout << "1 -> Window \t 2 -> Traditional (default)" << endl; cout << "1 -> Window \t 2 -> Traditional (default)" << endl;
cin >> ans; cin >> ans;
if(ans == 1) ads->setCompMode(true); if (ans == 1)
else ads->setCompMode(); ads.setCompMode(true);
else
ads.setCompMode();
break; break;
case 18: case 18:
cout << ads->getCompLatch() << endl; cout << ads.getCompLatch() << endl;
break; break;
case 19: case 19:
cout << "select one of the following:" << endl; cout << "select one of the following:" << endl;
cout << "1 -> Latching \t 2 -> Non-latching (default)" << endl; cout << "1 -> Latching \t 2 -> Non-latching (default)" << endl;
cin >> ans; cin >> ans;
if(ans == 1) ads->setCompLatch(true); if (ans == 1)
else ads->setCompLatch(); ads.setCompLatch(true);
else
ads.setCompLatch();
break; break;
case 20: case 20:
cout << ads->getContinuous() << endl; cout << ads.getContinuous() << endl;
break; break;
case 21: case 21:
cout << "select one of the following:" << endl; cout << "select one of the following:" << endl;
cout << "1 -> Power Down (default) \t 2 -> Continuous" << endl; cout << "1 -> Power Down (default) \t 2 -> Continuous" << endl;
cin >> ans; cin >> ans;
if(ans == 1) ads->setContinuous(true); if (ans == 1)
else ads->setContinuous(); ads.setContinuous(true);
else
ads.setContinuous();
break; break;
case -1: case -1:
break; break;
@ -312,10 +319,8 @@ int main()
break; break;
} }
} while (command != -1);
}while (command != -1 );
delete ads;
//! [Interesting] //! [Interesting]
return 0; return 0;

View File

@ -22,57 +22,58 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include <string>
#include "adxl335.hpp" #include "adxl335.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main () main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an ADXL335 accelerometer on analog pins A0, A1, and A2 // Instantiate an ADXL335 accelerometer on analog pins A0, A1, and A2
upm::ADXL335* accel = new upm::ADXL335(0, 1, 2); upm::ADXL335 accel(0, 1, 2);
cout << "Please make sure the sensor is completely still. Sleeping for" cout << "Please make sure the sensor is completely still. Sleeping for"
<< " 2 seconds." << endl; << " 2 seconds." << endl;
sleep(2); upm_delay(2);
cout << "Calibrating..." << endl; cout << "Calibrating..." << endl;
accel->calibrate(); accel.calibrate();
while (shouldRun) while (shouldRun) {
{
int x, y, z; int x, y, z;
float aX, aY, aZ; float aX, aY, aZ;
accel->values(&x, &y, &z); accel.values(&x, &y, &z);
cout << "Raw Values: X: " << x << " Y: " << y << " Z: " << z << endl; cout << "Raw Values: X: " << x << " Y: " << y << " Z: " << z << endl;
accel->acceleration(&aX, &aY, &aZ); accel.acceleration(&aX, &aY, &aZ);
cout << "Acceleration: X: " << aX << "g" << endl; cout << "Acceleration: X: " << aX << "g" << endl;
cout << "Acceleration: Y: " << aY << "g" << endl; cout << "Acceleration: Y: " << aY << "g" << endl;
cout << "Acceleration: Z: " << aZ << "g" << endl; cout << "Acceleration: Z: " << aZ << "g" << endl;
cout << endl; cout << endl;
usleep(200000); upm_delay_us(200000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete accel;
return 0; return 0;
} }

View File

@ -22,30 +22,32 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h> #include <stdio.h>
#include "adxl345.hpp" #include "adxl345.hpp"
#include "upm_utilities.h"
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
int16_t *raw; int16_t* raw;
float *acc; float* acc;
// Note: Sensor only works at 3.3V on the Intel Edison with Arduino breakout // Note: Sensor only works at 3.3V on the Intel Edison with Arduino breakout
upm::Adxl345* accel = new upm::Adxl345(0); upm::Adxl345 accel(0);
while(true){ while (true) {
accel->update(); // Update the data accel.update(); // Update the data
raw = accel->getRawValues(); // Read raw sensor data raw = accel.getRawValues(); // Read raw sensor data
acc = accel->getAcceleration(); // Read acceleration (g) acc = accel.getAcceleration(); // Read acceleration (g)
fprintf(stdout, "Current scale: 0x%2xg\n", accel->getScale()); fprintf(stdout, "Current scale: 0x%2xg\n", accel.getScale());
fprintf(stdout, "Raw: %6d %6d %6d\n", raw[0], raw[1], raw[2]); fprintf(stdout, "Raw: %6d %6d %6d\n", raw[0], raw[1], raw[2]);
fprintf(stdout, "AccX: %5.2f g\n", acc[0]); fprintf(stdout, "AccX: %5.2f g\n", acc[0]);
fprintf(stdout, "AccY: %5.2f g\n", acc[1]); fprintf(stdout, "AccY: %5.2f g\n", acc[1]);
fprintf(stdout, "AccZ: %5.2f g\n", acc[2]); fprintf(stdout, "AccZ: %5.2f g\n", acc[2]);
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
return 0; return 0;
} }

View File

@ -22,50 +22,51 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "adxrs610.hpp" #include "adxrs610.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a ADXRS610 sensor on analog pin A0 (dataout), and // Instantiate a ADXRS610 sensor on analog pin A0 (dataout), and
// analog A1 (temp out) with an analog reference voltage of // analog A1 (temp out) with an analog reference voltage of
// 5.0 // 5.0
upm::ADXRS610 *sensor = new upm::ADXRS610(0, 1, 5.0); upm::ADXRS610 sensor(0, 1, 5.0);
// set a deadband region around the zero point to report 0.0 (optional) // set a deadband region around the zero point to report 0.0 (optional)
sensor->setDeadband(0.015); sensor.setDeadband(0.015);
// Every tenth of a second, sample the ADXRS610 and output it's // Every tenth of a second, sample the ADXRS610 and output it's
// corresponding temperature and angular velocity // corresponding temperature and angular velocity
while (shouldRun) while (shouldRun) {
{ cout << "Vel (deg/s): " << sensor.getAngularVelocity() << endl;
cout << "Vel (deg/s): " << sensor->getAngularVelocity() << endl; cout << "Temp (C): " << sensor.getTemperature() << endl;
cout << "Temp (C): " << sensor->getTemperature() << endl;
usleep(100000); upm_delay_us(100000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,16 +22,15 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include <stdio.h>
#include "am2315.hpp" #include "am2315.hpp"
#include "upm_utilities.h"
volatile int doWork = 0; volatile int doWork = 0;
upm::AM2315 *sensor = NULL;
void void
sig_handler(int signo) sig_handler(int signo)
{ {
@ -42,7 +41,7 @@ sig_handler(int signo)
} }
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
// Register signal handler // Register signal handler
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
@ -51,25 +50,21 @@ main(int argc, char **argv)
float humidity = 0.0; float humidity = 0.0;
float temperature = 0.0; float temperature = 0.0;
sensor = new upm::AM2315(0, AM2315_I2C_ADDRESS); upm::AM2315 sensor(0, AM2315_I2C_ADDRESS);
sensor->testSensor(); sensor.testSensor();
while (!doWork) { while (!doWork) {
humidity = sensor->getHumidity(); humidity = sensor.getHumidity();
temperature = sensor->getTemperature(); temperature = sensor.getTemperature();
std::cout << "humidity value = " << std::cout << "humidity value = " << humidity << ", temperature value = " << temperature
humidity << << std::endl;
", temperature value = " << upm_delay_us(500000);
temperature << std::endl;
usleep (500000);
} }
//! [Interesting] //! [Interesting]
std::cout << "exiting application" << std::endl; std::cout << "exiting application" << std::endl;
delete sensor;
return 0; return 0;
} }

View File

@ -23,9 +23,6 @@
*/ */
#include "apa102.hpp" #include "apa102.hpp"
#include <iostream>
#include <signal.h>
#include <unistd.h>
using namespace std; using namespace std;
@ -34,18 +31,17 @@ main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Instantiate a strip of 30 LEDs on SPI bus 0 // Instantiate a strip of 30 LEDs on SPI bus 0
upm::APA102* ledStrip = new upm::APA102(800, 0); upm::APA102 ledStrip(800, 0);
// Set all LEDs to Red // Set all LEDs to Red
ledStrip->setAllLeds(31, 255, 0, 0); ledStrip.setAllLeds(31, 255, 0, 0);
// Set a section (10 to 20) to blue // Set a section (10 to 20) to blue
ledStrip->setLeds(10, 20, 31, 0, 0, 255); ledStrip.setLeds(10, 20, 31, 0, 0, 255);
// Set a single LED to green // Set a single LED to green
ledStrip->setLed(15, 31, 0, 255, 0); ledStrip.setLed(15, 31, 0, 255, 0);
delete ledStrip;
//! [Interesting] //! [Interesting]
return 0; return 0;
} }

View File

@ -22,41 +22,41 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "apds9002.hpp" #include "apds9002.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main () main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a Grove Luminance sensor on analog pin A0 // Instantiate a Grove Luminance sensor on analog pin A0
upm::APDS9002* luminance = new upm::APDS9002(0); upm::APDS9002 luminance(0);
while (shouldRun) while (shouldRun) {
{ int val = luminance.value();
int val = luminance->value();
cout << "Luminance value is " << val << endl; cout << "Luminance value is " << val << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete luminance;
return 0; return 0;
} }

View File

@ -22,10 +22,11 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "apds9930.hpp" #include "apds9930.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
@ -44,31 +45,30 @@ main()
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a Digital Proximity and Ambient Light sensor on iio device 4 // Instantiate a Digital Proximity and Ambient Light sensor on iio device 4
upm::APDS9930* light_proximity = new upm::APDS9930(4); upm::APDS9930 light_proximity(4);
// Kernel driver implement sleep 5000-5100us after enable illuminance sensor // Kernel driver implement upm_delay 5000-5100us after enable illuminance
light_proximity->enableIlluminance(true); // sensor
light_proximity.enableIlluminance(true);
// Kernel driver implement sleep 5000-5100us after enable proximity sensor // Kernel driver implement upm_delay 5000-5100us after enable proximity sensor
light_proximity->enableProximity(true); light_proximity.enableProximity(true);
// Tested this value works. Please change it on your platform // Tested this value works. Please change it on your platform
usleep(120000); upm_delay_us(120000);
while (shouldRun) { while (shouldRun) {
float lux = light_proximity->getAmbient(); float lux = light_proximity.getAmbient();
cout << "Luminance value is " << lux << endl; cout << "Luminance value is " << lux << endl;
float proximity = light_proximity->getProximity(); float proximity = light_proximity.getProximity();
cout << "Proximity value is " << proximity << endl; cout << "Proximity value is " << proximity << endl;
sleep(1); upm_delay(1);
} }
light_proximity->enableProximity(false); light_proximity.enableProximity(false);
light_proximity->enableIlluminance(false); light_proximity.enableIlluminance(false);
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete light_proximity;
return 0; return 0;
} }

View File

@ -22,31 +22,32 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <signal.h>
#include <iostream> #include <iostream>
#include <signal.h>
#include "at42qt1070.hpp" #include "at42qt1070.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
void printButtons(upm::AT42QT1070 *touch) void
printButtons(upm::AT42QT1070& touch)
{ {
bool buttonPressed = false; bool buttonPressed = false;
uint8_t buttons = touch->getButtons(); uint8_t buttons = touch.getButtons();
cout << "Buttons Pressed: "; cout << "Buttons Pressed: ";
for (int i=0; i<7; i++) for (int i = 0; i < 7; i++) {
{ if (buttons & (1 << i)) {
if (buttons & (1 << i))
{
cout << i << " "; cout << i << " ";
buttonPressed = true; buttonPressed = true;
} }
@ -57,34 +58,32 @@ void printButtons(upm::AT42QT1070 *touch)
cout << endl; cout << endl;
if (touch->isCalibrating()) if (touch.isCalibrating())
cout << "Calibration is occurring." << endl; cout << "Calibration is occurring." << endl;
if (touch->isOverflowed()) if (touch.isOverflowed())
cout << "Overflow was detected." << endl; cout << "Overflow was detected." << endl;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an AT42QT1070 on I2C bus 0 // Instantiate an AT42QT1070 on I2C bus 0
upm::AT42QT1070 *touch = new upm::AT42QT1070(AT42QT1070_I2C_BUS, upm::AT42QT1070 touch(AT42QT1070_I2C_BUS, AT42QT1070_DEFAULT_I2C_ADDR);
AT42QT1070_DEFAULT_I2C_ADDR);
while (shouldRun) while (shouldRun) {
{ touch.updateState();
touch->updateState();
printButtons(touch); printButtons(touch);
usleep(100000); upm_delay_us(100000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete touch;
return 0; return 0;
} }

View File

@ -22,44 +22,45 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bh1750.hpp" #include "bh1750.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a BH1750 sensor using defaults (I2C bus (0), using // Instantiate a BH1750 sensor using defaults (I2C bus (0), using
// the default I2C address (0x23), and setting the mode to highest // the default I2C address (0x23), and setting the mode to highest
// resolution, lowest power mode). // resolution, lowest power mode).
upm::BH1750 *sensor = new upm::BH1750(); upm::BH1750 sensor;
// Every second, sample the BH1750 and output the measured lux value // Every second, sample the BH1750 and output the measured lux value
while (shouldRun) while (shouldRun) {
{ cout << "Detected Light Level (lux): " << sensor.getLux() << endl;
cout << "Detected Light Level (lux): " << sensor->getLux() << endl; upm_delay(1);
sleep(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,33 +22,34 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "biss0001.hpp" #include "biss0001.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main () main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a Grove Motion sensor on GPIO pin D2 // Instantiate a Grove Motion sensor on GPIO pin D2
upm::BISS0001* motion = new upm::BISS0001(2); upm::BISS0001 motion(2);
while (shouldRun) while (shouldRun) {
{ bool val = motion.value();
bool val = motion->value();
if (val) if (val)
cout << "Detecting moving object"; cout << "Detecting moving object";
@ -57,12 +58,11 @@ int main ()
cout << endl; cout << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete motion;
return 0; return 0;
} }

View File

@ -22,49 +22,48 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bma220.hpp" #include "bma220.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an BMA220 using default parameters (bus 0, addr 0x0a) // Instantiate an BMA220 using default parameters (bus 0, addr 0x0a)
upm::BMA220 *sensor = new upm::BMA220(); upm::BMA220 sensor;
// Output data every half second until interrupted // Output data every half second until interrupted
while (shouldRun) while (shouldRun) {
{ sensor.update();
sensor->update();
float x, y, z; float x, y, z;
sensor->getAccelerometer(&x, &y, &z); sensor.getAccelerometer(&x, &y, &z);
cout << "Accelerometer: "; cout << "Accelerometer: ";
cout << "AX: " << x << " AY: " << y << " AZ: " << z << endl; cout << "AX: " << x << " AY: " << y << " AZ: " << z << endl;
usleep(500000); upm_delay_us(500000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,26 +22,28 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bma250e.hpp" #include "bma250e.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an BMA250E using default I2C parameters // Instantiate an BMA250E using default I2C parameters
upm::BMA250E sensor; upm::BMA250E sensor;
@ -50,30 +52,24 @@ int main(int argc, char **argv)
// for CS: BMA250E(0, -1, 10); // for CS: BMA250E(0, -1, 10);
// now output data every 250 milliseconds // now output data every 250 milliseconds
while (shouldRun) while (shouldRun) {
{
float x, y, z; float x, y, z;
sensor.update(); sensor.update();
sensor.getAccelerometer(&x, &y, &z); sensor.getAccelerometer(&x, &y, &z);
cout << "Accelerometer x: " << x cout << "Accelerometer x: " << x << " y: " << y << " z: " << z << " g" << endl;
<< " y: " << y
<< " z: " << z
<< " g"
<< endl;
// we show both C and F for temperature // we show both C and F for temperature
cout << "Compensation Temperature: " << sensor.getTemperature() cout << "Compensation Temperature: " << sensor.getTemperature() << " C / "
<< " C / " << sensor.getTemperature(true) << " F" << sensor.getTemperature(true) << " F" << endl;
<< endl;
cout << endl; cout << endl;
usleep(250000); upm_delay_us(250000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;

View File

@ -22,26 +22,28 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bmg160.hpp" #include "bmg160.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an BMG160 using default I2C parameters // Instantiate an BMG160 using default I2C parameters
upm::BMG160 sensor; upm::BMG160 sensor;
@ -50,30 +52,24 @@ int main(int argc, char **argv)
// for CS: BMG160(0, -1, 10); // for CS: BMG160(0, -1, 10);
// now output data every 250 milliseconds // now output data every 250 milliseconds
while (shouldRun) while (shouldRun) {
{
float x, y, z; float x, y, z;
sensor.update(); sensor.update();
sensor.getGyroscope(&x, &y, &z); sensor.getGyroscope(&x, &y, &z);
cout << "Gyroscope x: " << x cout << "Gyroscope x: " << x << " y: " << y << " z: " << z << " degrees/s" << endl;
<< " y: " << y
<< " z: " << z
<< " degrees/s"
<< endl;
// we show both C and F for temperature // we show both C and F for temperature
cout << "Compensation Temperature: " << sensor.getTemperature() cout << "Compensation Temperature: " << sensor.getTemperature() << " C / "
<< " C / " << sensor.getTemperature(true) << " F" << sensor.getTemperature(true) << " F" << endl;
<< endl;
cout << endl; cout << endl;
usleep(250000); upm_delay_us(250000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;

View File

@ -22,61 +22,57 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bmi160.hpp" #include "bmi160.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a BMI160 instance using default i2c bus and address // Instantiate a BMI160 instance using default i2c bus and address
upm::BMI160 *sensor = new upm::BMI160(); upm::BMI160 sensor;
while (shouldRun) while (shouldRun) {
{
// update our values from the sensor // update our values from the sensor
sensor->update(); sensor.update();
float dataX, dataY, dataZ; float dataX, dataY, dataZ;
sensor->getAccelerometer(&dataX, &dataY, &dataZ); sensor.getAccelerometer(&dataX, &dataY, &dataZ);
cout << "Accelerometer: "; cout << "Accelerometer: ";
cout << "AX: " << dataX << " AY: " << dataY << " AZ: " cout << "AX: " << dataX << " AY: " << dataY << " AZ: " << dataZ << endl;
<< dataZ << endl;
sensor->getGyroscope(&dataX, &dataY, &dataZ); sensor.getGyroscope(&dataX, &dataY, &dataZ);
cout << "Gryoscope: "; cout << "Gryoscope: ";
cout << "GX: " << dataX << " GY: " << dataY << " GZ: " cout << "GX: " << dataX << " GY: " << dataY << " GZ: " << dataZ << endl;
<< dataZ << endl;
sensor->getMagnetometer(&dataX, &dataY, &dataZ); sensor.getMagnetometer(&dataX, &dataY, &dataZ);
cout << "Magnetometer: "; cout << "Magnetometer: ";
cout << "MX: " << dataX << " MY: " << dataY << " MZ: " cout << "MX: " << dataX << " MY: " << dataY << " MZ: " << dataZ << endl;
<< dataZ << endl;
cout << endl; cout << endl;
usleep(500000); upm_delay_us(500000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,26 +22,28 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bmm150.hpp" #include "bmm150.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an BMM150 using default I2C parameters // Instantiate an BMM150 using default I2C parameters
upm::BMM150 sensor; upm::BMM150 sensor;
@ -50,25 +52,20 @@ int main(int argc, char **argv)
// for CS: BMM150(0, -1, 10); // for CS: BMM150(0, -1, 10);
// now output data every 250 milliseconds // now output data every 250 milliseconds
while (shouldRun) while (shouldRun) {
{
float x, y, z; float x, y, z;
sensor.update(); sensor.update();
sensor.getMagnetometer(&x, &y, &z); sensor.getMagnetometer(&x, &y, &z);
cout << "Magnetometer x: " << x cout << "Magnetometer x: " << x << " y: " << y << " z: " << z << " uT" << endl;
<< " y: " << y
<< " z: " << z
<< " uT"
<< endl;
cout << endl; cout << endl;
usleep(250000); upm_delay_us(250000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;

View File

@ -22,57 +22,54 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bme280.hpp" #include "bme280.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a BME280 instance using default i2c bus and address // Instantiate a BME280 instance using default i2c bus and address
upm::BME280 *sensor = new upm::BME280(); upm::BME280 sensor;
// For SPI, bus 0, you would pass -1 as the address, and a valid pin for CS: // For SPI, bus 0, you would pass -1 as the address, and a valid pin for CS:
// BME280(0, -1, 10); // BME280(0, -1, 10);
while (shouldRun) while (shouldRun) {
{
// update our values from the sensor // update our values from the sensor
sensor->update(); sensor.update();
// we show both C and F for temperature // we show both C and F for temperature
cout << "Compensation Temperature: " << sensor->getTemperature() cout << "Compensation Temperature: " << sensor.getTemperature() << " C / "
<< " C / " << sensor->getTemperature(true) << " F" << sensor.getTemperature(true) << " F" << endl;
<< endl; cout << "Pressure: " << sensor.getPressure() << " Pa" << endl;
cout << "Pressure: " << sensor->getPressure() << " Pa" << endl; cout << "Computed Altitude: " << sensor.getAltitude() << " m" << endl;
cout << "Computed Altitude: " << sensor->getAltitude() << " m" << endl; cout << "Humidity: " << sensor.getHumidity() << " %RH" << endl;
cout << "Humidity: " << sensor->getHumidity() << " %RH" << endl;
cout << endl; cout << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -24,56 +24,53 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bmp280.hpp" #include "bmp280.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a BMP280 instance using default i2c bus and address // Instantiate a BMP280 instance using default i2c bus and address
upm::BMP280 *sensor = new upm::BMP280(); upm::BMP280 sensor;
// For SPI, bus 0, you would pass -1 as the address, and a valid pin for CS: // For SPI, bus 0, you would pass -1 as the address, and a valid pin for CS:
// BMP280(0, -1, 10); // BMP280(0, -1, 10);
while (shouldRun) while (shouldRun) {
{
// update our values from the sensor // update our values from the sensor
sensor->update(); sensor.update();
// we show both C and F for temperature // we show both C and F for temperature
cout << "Compensation Temperature: " << sensor->getTemperature() cout << "Compensation Temperature: " << sensor.getTemperature() << " C / "
<< " C / " << sensor->getTemperature(true) << " F" << sensor.getTemperature(true) << " F" << endl;
<< endl; cout << "Pressure: " << sensor.getPressure() << " Pa" << endl;
cout << "Pressure: " << sensor->getPressure() << " Pa" << endl; cout << "Computed Altitude: " << sensor.getAltitude() << " m" << endl;
cout << "Computed Altitude: " << sensor->getAltitude() << " m" << endl;
cout << endl; cout << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -27,52 +27,47 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bmpx8x.hpp" #include "bmpx8x.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a BMPX8X sensor on I2C using defaults. // Instantiate a BMPX8X sensor on I2C using defaults.
upm::BMPX8X sensor; upm::BMPX8X sensor;
// Print the pressure, altitude, sea level, and // Print the pressure, altitude, sea level, and
// temperature values every 0.5 seconds // temperature values every 0.5 seconds
while (shouldRun) while (shouldRun) {
{
sensor.update(); sensor.update();
cout << "Pressure: " cout << "Pressure: " << sensor.getPressure()
<< sensor.getPressure() << " Pa, Temperature: " << sensor.getTemperature()
<< " Pa, Temperature: " << " C, Altitude: " << sensor.getAltitude()
<< sensor.getTemperature() << " m, Sea level: " << sensor.getSealevelPressure() << " Pa" << endl;
<< " C, Altitude: "
<< sensor.getAltitude()
<< " m, Sea level: "
<< sensor.getSealevelPressure()
<< " Pa"
<< endl;
usleep(500000); upm_delay_us(500000);
} }
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
//! [Interesting] //! [Interesting]
return 0; return 0;
} }

View File

@ -22,57 +22,50 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bmc150.hpp" #include "bmc150.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an BMC150 using default I2C parameters // Instantiate an BMC150 using default I2C parameters
upm::BMC150 sensor; upm::BMC150 sensor;
// now output data every 250 milliseconds // now output data every 250 milliseconds
while (shouldRun) while (shouldRun) {
{
float x, y, z; float x, y, z;
sensor.update(); sensor.update();
sensor.getAccelerometer(&x, &y, &z); sensor.getAccelerometer(&x, &y, &z);
cout << "Accelerometer x: " << x cout << "Accelerometer x: " << x << " y: " << y << " z: " << z << " g" << endl;
<< " y: " << y
<< " z: " << z
<< " g"
<< endl;
sensor.getMagnetometer(&x, &y, &z); sensor.getMagnetometer(&x, &y, &z);
cout << "Magnetometer x: " << x cout << "Magnetometer x: " << x << " y: " << y << " z: " << z << " uT" << endl;
<< " y: " << y
<< " z: " << z
<< " uT"
<< endl;
cout << endl; cout << endl;
usleep(250000); upm_delay_us(250000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;

View File

@ -22,57 +22,50 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bmi055.hpp" #include "bmi055.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an BMI055 using default I2C parameters // Instantiate an BMI055 using default I2C parameters
upm::BMI055 sensor; upm::BMI055 sensor;
// now output data every 250 milliseconds // now output data every 250 milliseconds
while (shouldRun) while (shouldRun) {
{
float x, y, z; float x, y, z;
sensor.update(); sensor.update();
sensor.getAccelerometer(&x, &y, &z); sensor.getAccelerometer(&x, &y, &z);
cout << "Accelerometer x: " << x cout << "Accelerometer x: " << x << " y: " << y << " z: " << z << " g" << endl;
<< " y: " << y
<< " z: " << z
<< " g"
<< endl;
sensor.getGyroscope(&x, &y, &z); sensor.getGyroscope(&x, &y, &z);
cout << "Gyroscope x: " << x cout << "Gyroscope x: " << x << " y: " << y << " z: " << z << " degrees/s" << endl;
<< " y: " << y
<< " z: " << z
<< " degrees/s"
<< endl;
cout << endl; cout << endl;
usleep(250000); upm_delay_us(250000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;

View File

@ -22,64 +22,53 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bmx055.hpp" #include "bmx055.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an BMX055 using default I2C parameters // Instantiate an BMX055 using default I2C parameters
upm::BMX055 sensor; upm::BMX055 sensor;
// now output data every 250 milliseconds // now output data every 250 milliseconds
while (shouldRun) while (shouldRun) {
{
float x, y, z; float x, y, z;
sensor.update(); sensor.update();
sensor.getAccelerometer(&x, &y, &z); sensor.getAccelerometer(&x, &y, &z);
cout << "Accelerometer x: " << x cout << "Accelerometer x: " << x << " y: " << y << " z: " << z << " g" << endl;
<< " y: " << y
<< " z: " << z
<< " g"
<< endl;
sensor.getGyroscope(&x, &y, &z); sensor.getGyroscope(&x, &y, &z);
cout << "Gyroscope x: " << x cout << "Gyroscope x: " << x << " y: " << y << " z: " << z << " degrees/s" << endl;
<< " y: " << y
<< " z: " << z
<< " degrees/s"
<< endl;
sensor.getMagnetometer(&x, &y, &z); sensor.getMagnetometer(&x, &y, &z);
cout << "Magnetometer x: " << x cout << "Magnetometer x: " << x << " y: " << y << " z: " << z << " uT" << endl;
<< " y: " << y
<< " z: " << z
<< " uT"
<< endl;
cout << endl; cout << endl;
usleep(250000); upm_delay_us(250000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;

View File

@ -22,58 +22,51 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "bno055.hpp" #include "bno055.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate an BNO055 using default parameters (bus 0, addr // Instantiate an BNO055 using default parameters (bus 0, addr
// 0x28). The default running mode is NDOF absolute orientation // 0x28). The default running mode is NDOF absolute orientation
// mode. // mode.
upm::BNO055 *sensor = new upm::BNO055(); upm::BNO055 sensor;
// First we need to calibrate.... // First we need to calibrate....
cout << "First we need to calibrate. 4 numbers will be output every" cout << "First we need to calibrate. 4 numbers will be output every" << endl;
<< endl; cout << "second for each sensor. 0 means uncalibrated, and 3 means" << endl;
cout << "second for each sensor. 0 means uncalibrated, and 3 means" cout << "fully calibrated." << endl;
<< endl; cout << "See the UPM documentation on this sensor for instructions on" << endl;
cout << "fully calibrated." cout << "what actions are required to calibrate." << endl;
<< endl;
cout << "See the UPM documentation on this sensor for instructions on"
<< endl;
cout << "what actions are required to calibrate."
<< endl;
cout << endl; cout << endl;
// do the calibration... // do the calibration...
while (shouldRun && !sensor->isFullyCalibrated()) while (shouldRun && !sensor.isFullyCalibrated()) {
{
int mag, acc, gyr, sys; int mag, acc, gyr, sys;
sensor->getCalibrationStatus(&mag, &acc, &gyr, &sys); sensor.getCalibrationStatus(&mag, &acc, &gyr, &sys);
cout << "Magnetometer: " << mag cout << "Magnetometer: " << mag << " Accelerometer: " << acc << " Gyroscope: " << gyr
<< " Accelerometer: " << acc << " System: " << sys << endl;
<< " Gyroscope: " << gyr
<< " System: " << sys
<< endl;
sleep(1); upm_delay(1);
} }
cout << endl; cout << endl;
@ -81,49 +74,30 @@ int main(int argc, char **argv)
cout << endl; cout << endl;
// now output various fusion data every 250 milliseconds // now output various fusion data every 250 milliseconds
while (shouldRun) while (shouldRun) {
{
float w, x, y, z; float w, x, y, z;
sensor->update(); sensor.update();
sensor->getEulerAngles(&x, &y, &z); sensor.getEulerAngles(&x, &y, &z);
cout << "Euler: Heading: " << x cout << "Euler: Heading: " << x << " Roll: " << y << " Pitch: " << z << " degrees" << endl;
<< " Roll: " << y
<< " Pitch: " << z
<< " degrees"
<< endl;
sensor->getQuaternions(&w, &x, &y, &z); sensor.getQuaternions(&w, &x, &y, &z);
cout << "Quaternion: W: " << w cout << "Quaternion: W: " << w << " X: " << x << " Y: " << y << " Z: " << z << endl;
<< " X: " << x
<< " Y: " << y
<< " Z: " << z
<< endl;
sensor->getLinearAcceleration(&x, &y, &z); sensor.getLinearAcceleration(&x, &y, &z);
cout << "Linear Acceleration: X: " << x cout << "Linear Acceleration: X: " << x << " Y: " << y << " Z: " << z << " m/s^2" << endl;
<< " Y: " << y
<< " Z: " << z
<< " m/s^2"
<< endl;
sensor->getGravityVectors(&x, &y, &z); sensor.getGravityVectors(&x, &y, &z);
cout << "Gravity Vector: X: " << x cout << "Gravity Vector: X: " << x << " Y: " << y << " Z: " << z << " m/s^2" << endl;
<< " Y: " << y
<< " Z: " << z
<< " m/s^2"
<< endl;
cout << endl; cout << endl;
usleep(250000); upm_delay_us(250000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,28 +22,28 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "button.hpp" #include "button.hpp"
#include "upm_utilities.h"
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
// This example uses GPIO 0 // This example uses GPIO 0
//! [Interesting] //! [Interesting]
// Create the button object using GPIO pin 0 // Create the button object using GPIO pin 0
upm::Button* button = new upm::Button(0); upm::Button button(0);
// Read the input and print, waiting one second between readings // Read the input and print, waiting one second between readings
while( 1 ) { while (1) {
std::cout << button->name() << " value is " << button->value() << std::endl; std::cout << button.name() << " value is " << button.value() << std::endl;
sleep(1); upm_delay(1);
} }
// Delete the button object // Delete the button object
delete button; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -22,37 +22,32 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h>
#include "buzzer.hpp" #include "buzzer.hpp"
#include "buzzer_tones.h"
#include "upm_utilities.h" #include "upm_utilities.h"
int int
main(int argc, char **argv) { main(int argc, char** argv)
{
//! [Interesting] //! [Interesting]
int chord[] = { BUZZER_DO, BUZZER_RE, BUZZER_MI, int chord[] = { BUZZER_DO, BUZZER_RE, BUZZER_MI, BUZZER_FA, BUZZER_SOL, BUZZER_LA, BUZZER_SI };
BUZZER_FA, BUZZER_SOL, BUZZER_LA,
BUZZER_SI };
// create Buzzer instance // create Buzzer instance
upm::Buzzer* sound = new upm::Buzzer(5); upm::Buzzer sound(5);
// print sensor name // print sensor name
std::cout << sound->name() << std::endl; std::cout << sound.name() << std::endl;
// play each sound (DO, RE, MI, etc...) for .5 seconds, pausing // play each sound (DO, RE, MI, etc...) for .5 seconds, pausing
// for 0.1 seconds between notes // for 0.1 seconds between notes
for (int chord_ind = 0; chord_ind < 7; chord_ind++) for (int chord_ind = 0; chord_ind < 7; chord_ind++) {
{ std::cout << sound.playSound(chord[chord_ind], 500000) << std::endl;
std::cout << sound->playSound(chord[chord_ind], 500000) << std::endl;
upm_delay_ms(100); upm_delay_ms(100);
} }
//! [Interesting] //! [Interesting]
std::cout << "exiting application" << std::endl; std::cout << "exiting application" << std::endl;
delete sound;
return 0; return 0;
} }

View File

@ -22,56 +22,54 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "cjq4435.hpp" #include "cjq4435.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main () main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a CJQ4435 MOSFET on a PWM capable digital pin D3 // Instantiate a CJQ4435 MOSFET on a PWM capable digital pin D3
upm::CJQ4435* mosfet = new upm::CJQ4435(3); upm::CJQ4435 mosfet(3);
mosfet->setPeriodMS(10); mosfet.setPeriodMS(10);
mosfet->enable(true); mosfet.enable(true);
while (shouldRun) while (shouldRun) {
{
// start with a duty cycle of 0.0 (off) and increment to 1.0 (on) // start with a duty cycle of 0.0 (off) and increment to 1.0 (on)
for (float i=0.0; i <= 1.0; i+=0.1) for (float i = 0.0; i <= 1.0; i += 0.1) {
{ mosfet.setDutyCycle(i);
mosfet->setDutyCycle(i); upm_delay_us(100000);
usleep(100000);
} }
sleep(1); upm_delay(1);
// Now take it back down // Now take it back down
// start with a duty cycle of 1.0 (on) and decrement to 0.0 (off) // start with a duty cycle of 1.0 (on) and decrement to 0.0 (off)
for (float i=1.0; i >= 0.0; i-=0.1) for (float i = 1.0; i >= 0.0; i -= 0.1) {
{ mosfet.setDutyCycle(i);
mosfet->setDutyCycle(i); upm_delay_us(100000);
usleep(100000);
} }
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete mosfet;
return 0; return 0;
} }

View File

@ -22,48 +22,45 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <iostream> #include <iostream>
#include <unistd.h>
#include <signal.h> #include <signal.h>
#include "collision.hpp" #include "collision.hpp"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// The was tested with the Collision Sensor // The was tested with the Collision Sensor
// Instantiate a Collision on digital pin D2 // Instantiate a Collision on digital pin D2
upm::Collision* collision = new upm::Collision(2); upm::Collision collision(2);
bool collisionState = false; bool collisionState = false;
cout << "No collision" << endl; cout << "No collision" << endl;
while (shouldRun) while (shouldRun) {
{ if (collision.isColliding() && !collisionState) {
if (collision->isColliding() && !collisionState)
{
cout << "Collision!" << endl; cout << "Collision!" << endl;
collisionState = true; collisionState = true;
} } else if (collisionState) {
else if (collisionState)
{
cout << "No collision" << endl; cout << "No collision" << endl;
collisionState = false; collisionState = false;
} }
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete collision;
return 0; return 0;
} }

View File

@ -24,58 +24,50 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream>
#include "curieimu.hpp" #include "curieimu.hpp"
#include "upm_utilities.h"
#include "mraa.h" #include "mraa.h"
#include "mraa/firmata.h" #include "mraa/firmata.h"
#include <iostream>
#include <math.h> #include <math.h>
#include <unistd.h>
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
mraa_init(); mraa_init();
mraa_add_subplatform(MRAA_GENERIC_FIRMATA, "/dev/ttyACM0"); mraa_add_subplatform(MRAA_GENERIC_FIRMATA, "/dev/ttyACM0");
upm::CurieImu* sensor = new upm::CurieImu(); upm::CurieImu sensor;
std::cout << "temperature is: " << (sensor->getTemperature() * pow(0.5, 9) + 23) << std::endl; std::cout << "temperature is: " << (sensor.getTemperature() * pow(0.5, 9) + 23) << std::endl;
sensor->updateAccel(); sensor.updateAccel();
int x = sensor->getAccelX(), int x = sensor.getAccelX(), y = sensor.getAccelY(), z = sensor.getAccelZ();
y = sensor->getAccelY(),
z = sensor->getAccelZ();
printf("accelerometer is: %d, %d, %d\n", x, y, z); printf("accelerometer is: %d, %d, %d\n", x, y, z);
sensor->updateGyro(); sensor.updateGyro();
int a = sensor->getGyroX(), int a = sensor.getGyroX(), b = sensor.getGyroY(), c = sensor.getGyroZ();
b = sensor->getGyroY(),
c = sensor->getGyroZ();
printf("gyroscope is: %d, %d, %d\n", a, b, c); printf("gyroscope is: %d, %d, %d\n", a, b, c);
int axis, direction; int axis, direction;
sensor->enableShockDetection(true); sensor.enableShockDetection(true);
for(int i=0; i<300; i++) { for (int i = 0; i < 300; i++) {
if (sensor->isShockDetected()) { if (sensor.isShockDetected()) {
sensor->getNextShock(); sensor.getNextShock();
axis = sensor->getAxis(); axis = sensor.getAxis();
direction = sensor->getDirection(); direction = sensor.getDirection();
printf("shock data is: %d, %d\n", axis, direction); printf("shock data is: %d, %d\n", axis, direction);
} }
usleep(10000); upm_delay_us(10000);
} }
sensor->updateMotion(); sensor.updateMotion();
int m = sensor->getAccelX(), int m = sensor.getAccelX(), n = sensor.getAccelY(), o = sensor.getAccelZ(),
n = sensor->getAccelY(), p = sensor.getGyroX(), q = sensor.getGyroY(), r = sensor.getGyroZ();
o = sensor->getAccelZ(),
p = sensor->getGyroX(),
q = sensor->getGyroY(),
r = sensor->getGyroZ();
printf("motion is: %d, %d, %d, %d, %d, %d\n", m, n, o, p, q, r); printf("motion is: %d, %d, %d, %d, %d, %d\n", m, n, o, p, q, r);
delete sensor;
//! [Interesting] //! [Interesting]
return 0; return 0;

View File

@ -22,61 +22,57 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "cwlsxxa.hpp" #include "cwlsxxa.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
cout << "Initializing..." << endl; cout << "Initializing..." << endl;
// Instantiate an CWLSXXA instance, using A0 for CO2, A1 for // Instantiate an CWLSXXA instance, using A0 for CO2, A1 for
// humidity and A2 for temperature // humidity and A2 for temperature
upm::CWLSXXA *sensor = new upm::CWLSXXA(0, 1, 2); upm::CWLSXXA sensor(0, 1, 2);
// update and print available values every second // update and print available values every second
while (shouldRun) while (shouldRun) {
{
// update our values from the sensor // update our values from the sensor
sensor->update(); sensor.update();
// we show both C and F for temperature // we show both C and F for temperature
cout << "Temperature: " << sensor->getTemperature() cout << "Temperature: " << sensor.getTemperature() << " C / " << sensor.getTemperature(true)
<< " C / " << sensor->getTemperature(true) << " F" << " F" << endl;
<< endl;
cout << "Humidity: " << sensor->getHumidity() cout << "Humidity: " << sensor.getHumidity() << " %" << endl;
<< " %" << endl;
cout << "CO2: " << sensor->getCO2() cout << "CO2: " << sensor.getCO2() << " ppm" << endl;
<< " ppm" << endl;
cout << endl; cout << endl;
sleep(1); upm_delay(1);
} }
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -22,60 +22,53 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "dfrec.hpp" #include "dfrec.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a DFRobot EC sensor on analog pin A0, with a ds18b20 // Instantiate a DFRobot EC sensor on analog pin A0, with a ds18b20
// temperature sensor connected to UART 0, and a device index (for // temperature sensor connected to UART 0, and a device index (for
// the ds1820b uart bus) of 0, and an analog reference voltage of // the ds1820b uart bus) of 0, and an analog reference voltage of
// 5.0. // 5.0.
upm::DFREC *sensor = new upm::DFREC(0, 0, 0, 5.0); upm::DFREC sensor(0, 0, 0, 5.0);
// Every 2 seconds, update and print values // Every 2 seconds, update and print values
while (shouldRun) while (shouldRun) {
{ sensor.update();
sensor->update();
cout << "EC = " cout << "EC = " << sensor.getEC() << " ms/cm" << endl;
<< sensor->getEC()
<< " ms/cm"
<< endl;
cout << "Volts = " cout << "Volts = " << sensor.getVolts() << ", Temperature = " << sensor.getTemperature()
<< sensor->getVolts() << " C" << endl;
<< ", Temperature = "
<< sensor->getTemperature()
<< " C"
<< endl;
cout << endl; cout << endl;
sleep(2); upm_delay(2);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,31 +22,33 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "dfrorp.hpp" #include "dfrorp.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a DFRobot ORP sensor on analog pin A0 with an analog // Instantiate a DFRobot ORP sensor on analog pin A0 with an analog
// reference voltage of 5.0. // reference voltage of 5.0.
upm::DFRORP *sensor = new upm::DFRORP(0, 5.0); upm::DFRORP sensor(0, 5.0);
// To calibrate: // To calibrate:
// //
@ -61,27 +63,22 @@ int main()
// //
// DO NOT press the calibrate button on the interface board while // DO NOT press the calibrate button on the interface board while
// the probe is attached or you can permanently damage the probe. // the probe is attached or you can permanently damage the probe.
sensor->setCalibrationOffset(0.97); sensor.setCalibrationOffset(0.97);
// Every second, update and print values // Every second, update and print values
while (shouldRun) while (shouldRun) {
{ sensor.update();
sensor->update();
cout << "ORP: " cout << "ORP: " << sensor.getORP() << " mV" << endl;
<< sensor->getORP()
<< " mV"
<< endl;
cout << endl; cout << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,10 +22,11 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "dfrph.hpp" #include "dfrph.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
@ -33,44 +34,43 @@ bool shouldRun = true;
#define DFRPH_AREF 5.0 #define DFRPH_AREF 5.0
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a DFRPH sensor on analog pin A0, with an analog // Instantiate a DFRPH sensor on analog pin A0, with an analog
// reference voltage of DFRPH_AREF // reference voltage of DFRPH_AREF
upm::DFRPH *sensor = new upm::DFRPH(0, DFRPH_AREF); upm::DFRPH sensor(0, DFRPH_AREF);
// After calibration, set the offset (based on calibration with a pH // After calibration, set the offset (based on calibration with a pH
// 7.0 buffer solution). See the UPM sensor documentation for // 7.0 buffer solution). See the UPM sensor documentation for
// calibrations instructions. // calibrations instructions.
sensor->setOffset(0.065); sensor.setOffset(0.065);
// Every second, sample the pH and output it's corresponding // Every second, sample the pH and output it's corresponding
// analog voltage. // analog voltage.
while (shouldRun) while (shouldRun) {
{ cout << "Detected volts: " << sensor.volts() << endl;
cout << "Detected volts: " << sensor->volts() << endl; cout << "pH value: " << sensor.pH() << endl;
cout << "pH value: " << sensor->pH() << endl;
cout << endl; cout << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,39 +22,38 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <string>
#include "ds1307.hpp" #include "ds1307.hpp"
using namespace std; using namespace std;
void printTime(upm::DS1307 *rtc) void
printTime(upm::DS1307& rtc)
{ {
cout << "The time is: " << cout << "The time is: " << rtc.month << "/" << rtc.dayOfMonth << "/" << rtc.year << " "
rtc->month << "/" << rtc->dayOfMonth << "/" << rtc->year << " " << rtc.hours << ":" << rtc.minutes << ":" << rtc.seconds;
<< rtc->hours << ":" << rtc->minutes << ":" << rtc->seconds;
if (rtc->amPmMode) if (rtc.amPmMode)
cout << ((rtc->pm) ? " PM " : " AM "); cout << ((rtc.pm) ? " PM " : " AM ");
cout << endl; cout << endl;
cout << "Clock is in " << ((rtc->amPmMode) ? "AM/PM mode" : "24hr mode") cout << "Clock is in " << ((rtc.amPmMode) ? "AM/PM mode" : "24hr mode") << endl;
<< endl;
} }
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Instantiate a DS1037 on I2C bus 0 // Instantiate a DS1037 on I2C bus 0
upm::DS1307 *rtc = new upm::DS1307(0); upm::DS1307 rtc(0);
// always do this first // always do this first
cout << "Loading the current time... " << endl; cout << "Loading the current time... " << endl;
if (!rtc->loadTime()) if (!rtc.loadTime()) {
{ cerr << "rtc.loadTime() failed." << endl;
cerr << "rtc->loadTime() failed." << endl;
return 0; return 0;
} }
@ -62,16 +61,15 @@ main(int argc, char **argv)
// set the year as an example // set the year as an example
cout << "setting the year to 50" << endl; cout << "setting the year to 50" << endl;
rtc->year = 50; rtc.year = 50;
rtc->setTime(); rtc.setTime();
// reload the time and print it // reload the time and print it
rtc->loadTime(); rtc.loadTime();
printTime(rtc); printTime(rtc);
//! [Interesting] //! [Interesting]
delete rtc;
return 0; return 0;
} }

View File

@ -1,43 +1,41 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <iostream> #include <iostream>
#include <stdlib.h>
#include <string> #include <string>
#include "ds1808lc.hpp" #include "ds1808lc.hpp"
#define EDISON_I2C_BUS 1 // Edison I2C-1 #define EDISON_I2C_BUS 1 // Edison I2C-1
#define DS1808_GPIO_PWR 15 // Edison GP165 #define DS1808_GPIO_PWR 15 // Edison GP165
void printState(upm::ILightController &lightController) void
printState(upm::ILightController& lightController)
{ {
if (lightController.isPowered()) if (lightController.isPowered()) {
{ std::cout << "Light is powered, brightness = " << lightController.getBrightness()
std::cout << "Light is powered, brightness = " << lightController.getBrightness() << std::endl; << std::endl;
} } else {
else
{
std::cout << "Light is not powered." << std::endl; std::cout << "Light is not powered." << std::endl;
} }
} }
int main( int argc, char **argv ) int
main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
upm::DS1808LC lightController(DS1808_GPIO_PWR, EDISON_I2C_BUS); upm::DS1808LC lightController(DS1808_GPIO_PWR, EDISON_I2C_BUS);
std::cout << "Existing state: "; printState(lightController); std::cout << "Existing state: ";
if (argc == 2) printState(lightController);
{ if (argc == 2) {
std::string arg = argv[1]; std::string arg = argv[1];
int brightness = ::atoi(argv[1]); int brightness = ::atoi(argv[1]);
if (brightness > 0) if (brightness > 0) {
{
lightController.setPowerOn(); lightController.setPowerOn();
lightController.setBrightness(brightness); lightController.setBrightness(brightness);
} } else
else
lightController.setPowerOff(); lightController.setPowerOff();
} }
std::cout << "Now: ";printState(lightController); std::cout << "Now: ";
printState(lightController);
//! [Interesting] //! [Interesting]
return 0; return 0;
} }

View File

@ -22,27 +22,29 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "ds18b20.hpp" #include "ds18b20.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
cout << "Initializing..." << endl; cout << "Initializing..." << endl;
@ -57,30 +59,24 @@ int main(int argc, char **argv)
return 1; return 1;
// update and print available values every 2 seconds // update and print available values every 2 seconds
while (shouldRun) while (shouldRun) {
{
// update our values for all of the detected sensors // update our values for all of the detected sensors
sensor.update(-1); sensor.update(-1);
// we show both C and F for temperature for the sensors // we show both C and F for temperature for the sensors
int i; int i;
for (i=0; i<sensor.devicesFound(); i++) for (i = 0; i < sensor.devicesFound(); i++) {
{ cout << "Device " << i << ": Temperature: " << sensor.getTemperature(i) << " C / "
cout << "Device " << sensor.getTemperature(i, true) << " F" << endl;
<< i
<< ": Temperature: "
<< sensor.getTemperature(i)
<< " C / " << sensor.getTemperature(i, true) << " F"
<< endl;
} }
cout << endl; cout << endl;
sleep(2); upm_delay(2);
} }
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
//! [Interesting] //! [Interesting]
return 0; return 0;
} }

View File

@ -22,38 +22,37 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <stdio.h>
#include "ds2413.hpp" #include "ds2413.hpp"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Instantiate a DS2413 Module on a Dallas 1-wire bus connected to UART 0 // Instantiate a DS2413 Module on a Dallas 1-wire bus connected to UART 0
upm::DS2413* sensor = new upm::DS2413(0); upm::DS2413 sensor(0);
// find all of the DS2413 devices present on the bus // find all of the DS2413 devices present on the bus
sensor->init(); sensor.init();
// how many devices were found? // how many devices were found?
cout << "Found "<< sensor->devicesFound() << " device(s)" << endl; cout << "Found " << sensor.devicesFound() << " device(s)" << endl;
// read the gpio and latch values from the first device // read the gpio and latch values from the first device
// the lower 4 bits are of the form: // the lower 4 bits are of the form:
// <gpioB latch> <gpioB value> <gpioA latch> <gpioA value> // <gpioB latch> <gpioB value> <gpioA latch> <gpioA value>
cout << "GPIO device 0 values: " << sensor->readGpios(0) << endl; cout << "GPIO device 0 values: " << sensor.readGpios(0) << endl;
// set the gpio latch values of the first device // set the gpio latch values of the first device
cout << "Setting GPIO latches to on" << endl; cout << "Setting GPIO latches to on" << endl;
sensor->writeGpios(0, 0x03); sensor.writeGpios(0, 0x03);
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -22,28 +22,31 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include <string>
#include "e50hx.hpp" #include "e50hx.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// You will need to edit this example to conform to your site and your // You will need to edit this example to conform to your site and your
// devices, specifically the Device Object Instance ID passed to the // devices, specifically the Device Object Instance ID passed to the
// constructor, and the arguments to initMaster() that are // constructor, and the arguments to initMaster() that are
@ -62,51 +65,41 @@ int main(int argc, char **argv)
// as it's unique Device Object Instance ID. NOTE: You will // as it's unique Device Object Instance ID. NOTE: You will
// certainly want to change this to the correct value for your // certainly want to change this to the correct value for your
// device(s). // device(s).
E50HX *sensor = new E50HX(1075425); E50HX sensor(1075425);
// Initialize our BACnet master, if it has not already been // Initialize our BACnet master, if it has not already been
// initialized, with the device and baudrate, choosing 1000001 as // initialized, with the device and baudrate, choosing 1000001 as
// our unique Device Object Instance ID, 2 as our MAC address and // our unique Device Object Instance ID, 2 as our MAC address and
// using default values for maxMaster and maxInfoFrames // using default values for maxMaster and maxInfoFrames
sensor->initMaster(defaultDev, 38400, 1000001, 2); sensor.initMaster(defaultDev, 38400, 1000001, 2);
// Uncomment to enable debugging output // Uncomment to enable debugging output
// sensor->setDebug(true); // sensor.setDebug(true);
cout << endl; cout << endl;
cout << "Device Description: " << sensor->getDeviceDescription() << endl; cout << "Device Description: " << sensor.getDeviceDescription() << endl;
cout << "Device Location: " << sensor->getDeviceLocation() << endl; cout << "Device Location: " << sensor.getDeviceLocation() << endl;
cout << endl; cout << endl;
// update and print a few values every 5 seconds // update and print a few values every 5 seconds
while (shouldRun) while (shouldRun) {
{ cout << "System Voltage: " << sensor.getAnalogValue(E50HX::AV_System_Voltage) << " "
cout << "System Voltage: " << sensor.getAnalogValueUnits(E50HX::AV_System_Voltage) << endl;
<< sensor->getAnalogValue(E50HX::AV_System_Voltage)
<< " " << sensor->getAnalogValueUnits(E50HX::AV_System_Voltage)
<< endl;
cout << "System Type: " cout << "System Type: " << sensor.getAnalogValue(E50HX::AV_System_Type) << endl;
<< sensor->getAnalogValue(E50HX::AV_System_Type)
<< endl;
cout << "Energy Consumption: " << sensor->getAnalogInput(E50HX::AI_Energy) cout << "Energy Consumption: " << sensor.getAnalogInput(E50HX::AI_Energy) << " "
<< " " << sensor->getAnalogInputUnits(E50HX::AI_Energy) << sensor.getAnalogInputUnits(E50HX::AI_Energy) << endl;
<< endl;
cout << "Power Up Counter: " cout << "Power Up Counter: " << sensor.getAnalogInput(E50HX::AI_Power_Up_Count) << endl;
<< sensor->getAnalogInput(E50HX::AI_Power_Up_Count)
<< endl;
cout << endl; cout << endl;
sleep(5); upm_delay(5);
} }
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -22,51 +22,44 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <signal.h>
#include <upm_utilities.h>
#include <ecezo.hpp> #include <ecezo.hpp>
#include <iostream>
#include <signal.h>
#include <upm_utilities.h>
using namespace std; using namespace std;
using namespace upm; using namespace upm;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a ECEZO sensor on uart 0 at 9600 baud. // Instantiate a ECEZO sensor on uart 0 at 9600 baud.
upm::ECEZO *sensor = new upm::ECEZO(0, 9600, false); upm::ECEZO sensor(0, 9600, false);
// For I2C, assuming the device is configured for address 0x64 on // For I2C, assuming the device is configured for address 0x64 on
// I2C bus 0, you could use something like: // I2C bus 0, you could use something like:
// //
// upm::ECEZO *sensor = new upm::ECEZO(0, 0x64, true); // upm::ECEZO sensor(0, 0x64, true);
while (shouldRun) while (shouldRun) {
{
// this will take about 1 second to complete // this will take about 1 second to complete
sensor->update(); sensor.update();
cout << "EC " cout << "EC " << sensor.getEC() << " uS/cm, TDS " << sensor.getTDS() << " mg/L, Salinity "
<< sensor->getEC() << sensor.getSalinity() << " PSS-78, SG " << sensor.getSG() << endl;
<< " uS/cm, TDS "
<< sensor->getTDS()
<< " mg/L, Salinity "
<< sensor->getSalinity()
<< " PSS-78, SG "
<< sensor->getSG()
<< endl;
upm_delay(5); upm_delay(5);
} }
@ -75,7 +68,5 @@ int main()
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete sensor;
return 0; return 0;
} }

View File

@ -22,14 +22,13 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdio.h>
#include "ecs1030.hpp" #include "ecs1030.hpp"
int is_running = 0; int is_running = 0;
upm::ECS1030 *sensor = NULL;
void void
sig_handler(int signo) sig_handler(int signo)
@ -42,20 +41,20 @@ sig_handler(int signo)
//! [Interesting] //! [Interesting]
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
sensor = new upm::ECS1030(0); upm::ECS1030 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
while (!is_running) { while (!is_running) {
std::cout << "I = " << sensor->getCurrency_A () << ", Power = " << sensor->getPower_A () << std::endl; std::cout << "I = " << sensor.getCurrency_A() << ", Power = " << sensor.getPower_A()
std::cout << "I = " << sensor->getCurrency_B () << ", Power = " << sensor->getPower_B () << std::endl; << std::endl;
std::cout << "I = " << sensor.getCurrency_B() << ", Power = " << sensor.getPower_B()
<< std::endl;
} }
std::cout << "exiting application" << std::endl; std::cout << "exiting application" << std::endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,57 +22,57 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "ehr.hpp" #include "ehr.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main() main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a Ear-clip Heart Rate sensor on digital pin D2 // Instantiate a Ear-clip Heart Rate sensor on digital pin D2
upm::EHR* heart = new upm::EHR(2); upm::EHR heart(2);
// set the beat counter to 0, init the clock and start counting beats // set the beat counter to 0, init the clock and start counting beats
heart->clearBeatCounter(); heart.clearBeatCounter();
heart->initClock(); heart.initClock();
heart->startBeatCounter(); heart.startBeatCounter();
while (shouldRun) while (shouldRun) {
{
// we grab these just for display purposes in this example // we grab these just for display purposes in this example
uint32_t millis = heart->getMillis(); uint32_t millis = heart.getMillis();
uint32_t beats = heart->beatCounter(); uint32_t beats = heart.beatCounter();
// heartRate() requires that at least 5 seconds pass before // heartRate() requires that at least 5 seconds pass before
// returning anything other than 0 // returning anything other than 0
int hr = heart->heartRate(); int hr = heart.heartRate();
// output milliseconds passed, beat count, and computed heart rate // output milliseconds passed, beat count, and computed heart rate
cout << "Millis: " << millis << " Beats: " << beats; cout << "Millis: " << millis << " Beats: " << beats;
cout << " Heart Rate: " << hr << endl; cout << " Heart Rate: " << hr << endl;
sleep(1); upm_delay(1);
} }
heart->stopBeatCounter(); heart.stopBeatCounter();
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete heart;
return 0; return 0;
} }

View File

@ -22,45 +22,46 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <iostream> #include <iostream>
#include <unistd.h>
#include <signal.h> #include <signal.h>
#include "eldriver.hpp" #include "eldriver.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// The was tested with the El Driver Module // This was tested with the El Driver Module
// Instantiate a El Driver on digital pin D2 // Instantiate an El Driver on digital pin D2
upm::ElDriver* eldriver = new upm::ElDriver(2); upm::ElDriver eldriver(2);
bool lightState = true; bool lightState = true;
while (shouldRun) while (shouldRun) {
{
if (lightState) if (lightState)
eldriver->on(); eldriver.on();
else else
eldriver->off(); eldriver.off();
lightState = !lightState; lightState = !lightState;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
eldriver->off(); eldriver.off();
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete eldriver;
return 0; return 0;
} }

View File

@ -22,58 +22,60 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <iostream> #include <iostream>
#include <time.h>
#include <signal.h> #include <signal.h>
#include <sys/time.h>
#include <time.h>
#include "electromagnet.hpp" #include "electromagnet.hpp"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
float get_time() float
get_time()
{ {
return ((float)(clock()))/CLOCKS_PER_SEC; return ((float) (clock())) / CLOCKS_PER_SEC;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// The was tested with the Electromagnetic Module // The was tested with the Electromagnetic Module
// Instantiate a Electromagnet on digital pin D2 // Instantiate a Electromagnet on digital pin D2
upm::Electromagnet* magnet = new upm::Electromagnet(2); upm::Electromagnet magnet(2);
cout << "Starting up magnet...." << endl; cout << "Starting up magnet...." << endl;
magnet->off(); magnet.off();
bool magnetState = false; bool magnetState = false;
float time_passed = get_time(); float time_passed = get_time();
// Turn magnet on and off every 5 seconds // Turn magnet on and off every 5 seconds
while (shouldRun) while (shouldRun) {
{ if ((get_time() - time_passed) > 5.0) {
if ((get_time() - time_passed) > 5.0)
{
magnetState = !magnetState; magnetState = !magnetState;
if (magnetState) if (magnetState)
magnet->on(); magnet.on();
else else
magnet->off(); magnet.off();
cout << "Turning magnet " << ((magnetState) ? "on" : "off") << endl; cout << "Turning magnet " << ((magnetState) ? "on" : "off") << endl;
time_passed = get_time(); time_passed = get_time();
} }
} }
//! [Interesting] //! [Interesting]
magnet->off(); magnet.off();
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete magnet;
return 0; return 0;
} }

View File

@ -21,40 +21,41 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "emg.hpp" #include "emg.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// The was tested with the EMG Muscle Signal Reader Sensor Module // The was tested with the EMG Muscle Signal Reader Sensor Module
// Instantiate a EMG on analog pin A0 // Instantiate a EMG on analog pin A0
upm::EMG *emg = new upm::EMG(0); upm::EMG emg(0);
cout << "Calibrating...." << endl; cout << "Calibrating...." << endl;
emg->calibrate(); emg.calibrate();
while (shouldRun) while (shouldRun) {
{ cout << emg.value() << endl;
cout << emg->value() << endl; upm_delay_us(100000);
usleep(100000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete emg;
return 0; return 0;
} }

View File

@ -22,10 +22,11 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "enc03r.hpp" #include "enc03r.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
@ -34,47 +35,43 @@ bool shouldRun = true;
// analog voltage, usually 3.3 or 5.0 // analog voltage, usually 3.3 or 5.0
#define CALIBRATION_SAMPLES 1000 #define CALIBRATION_SAMPLES 1000
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a ENC03R on analog pin A0 // Instantiate a ENC03R on analog pin A0
upm::ENC03R *gyro = new upm::ENC03R(0); upm::ENC03R gyro(0);
// The first thing we need to do is calibrate the sensor. // The first thing we need to do is calibrate the sensor.
cout << "Please place the sensor in a stable location, and do not" << endl; cout << "Please place the sensor in a stable location, and do not" << endl;
cout << "move it while calibration takes place." << endl; cout << "move it while calibration takes place." << endl;
cout << "This may take a couple of minutes." << endl; cout << "This may take a couple of minutes." << endl;
gyro->calibrate(CALIBRATION_SAMPLES); gyro.calibrate(CALIBRATION_SAMPLES);
cout << "Calibration complete. Reference value: " cout << "Calibration complete. Reference value: " << gyro.calibrationValue() << endl;
<< gyro->calibrationValue() << endl;
// Read the input and print both the raw value and the angular velocity, // Read the input and print both the raw value and the angular velocity,
// waiting 0.1 seconds between readings // waiting 0.1 seconds between readings
while (shouldRun) while (shouldRun) {
{ gyro.update();
gyro->update();
cout << "Angular velocity: " cout << "Angular velocity: " << gyro.angularVelocity() << " deg/s" << endl;
<< gyro->angularVelocity()
<< " deg/s"
<< endl;
usleep(100000); upm_delay_us(100000);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete gyro;
return 0; return 0;
} }

View File

@ -22,26 +22,29 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "flex.hpp" #include "flex.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
bool shouldRun = true; bool shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// The was tested with a Spectra Symbol flex sensor. // The was tested with a Spectra Symbol flex sensor.
// We attached a 22K resistor to a breadboard, // We attached a 22K resistor to a breadboard,
// with 1 end attached to GND and the other connected to // with 1 end attached to GND and the other connected to
@ -50,17 +53,15 @@ int main()
// and on the other pin to 5V. // and on the other pin to 5V.
// Instantiate a Flex sensor on analog pin A0 // Instantiate a Flex sensor on analog pin A0
upm::Flex *flex = new upm::Flex(0); upm::Flex flex(0);
while (shouldRun) while (shouldRun) {
{ cout << "Flex value: " << flex.value() << endl;
cout << "Flex value: " << flex->value() << endl; upm_delay(1);
sleep(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete flex;
return 0; return 0;
} }

View File

@ -22,16 +22,16 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "mq2.hpp"
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdint.h>
#include <sys/time.h> #include <stdio.h>
#include "gas.hpp"
#include "mq2.hpp"
int is_running = 0; int is_running = 0;
uint16_t buffer [128]; uint16_t buffer[128];
upm::MQ2 *sensor = NULL;
void void
sig_handler(int signo) sig_handler(int signo)
@ -44,10 +44,10 @@ sig_handler(int signo)
//! [Interesting] //! [Interesting]
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
// Attach gas sensor to A0 // Attach gas sensor to A0
sensor = new upm::MQ2(0); upm::MQ2 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
thresholdContext ctx; thresholdContext ctx;
@ -60,10 +60,10 @@ main(int argc, char **argv)
// find the average of 128 samples; and // find the average of 128 samples; and
// print a running graph of the averages using a resolution of 5 // print a running graph of the averages using a resolution of 5
while (!is_running) { while (!is_running) {
int len = sensor->getSampledWindow (2, 128, buffer); int len = sensor.getSampledWindow(2, 128, buffer);
if (len) { if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len); int thresh = sensor.findThreshold(&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 5); sensor.printGraph(&ctx, 5);
if (thresh) { if (thresh) {
// do something .... // do something ....
} }
@ -72,8 +72,6 @@ main(int argc, char **argv)
std::cout << "exiting application" << std::endl; std::cout << "exiting application" << std::endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,16 +22,16 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "mq3.hpp"
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdint.h>
#include <sys/time.h> #include <stdio.h>
#include "gas.hpp"
#include "mq3.hpp"
int is_running = 0; int is_running = 0;
uint16_t buffer [128]; uint16_t buffer[128];
upm::MQ3 *sensor = NULL;
void void
sig_handler(int signo) sig_handler(int signo)
@ -44,10 +44,10 @@ sig_handler(int signo)
//! [Interesting] //! [Interesting]
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
// Attach gas sensor to A0 // Attach gas sensor to A0
sensor = new upm::MQ3(0); upm::MQ3 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
thresholdContext ctx; thresholdContext ctx;
@ -60,10 +60,10 @@ main(int argc, char **argv)
// find the average of 128 samples; and // find the average of 128 samples; and
// print a running graph of the averages using a resolution of 5 // print a running graph of the averages using a resolution of 5
while (!is_running) { while (!is_running) {
int len = sensor->getSampledWindow (2, 128, buffer); int len = sensor.getSampledWindow(2, 128, buffer);
if (len) { if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len); int thresh = sensor.findThreshold(&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 5); sensor.printGraph(&ctx, 5);
if (thresh) { if (thresh) {
// do something .... // do something ....
} }
@ -72,8 +72,6 @@ main(int argc, char **argv)
std::cout << "exiting application" << std::endl; std::cout << "exiting application" << std::endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,12 +22,12 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "mq4.hpp"
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdint.h>
#include <sys/time.h>
#include "gas.hpp"
#include "mq4.hpp"
bool shouldRun = true; bool shouldRun = true;
@ -36,20 +36,20 @@ using namespace std;
void void
sig_handler(int signo) sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT) {
{
shouldRun = false; shouldRun = false;
} }
} }
//! [Interesting] //! [Interesting]
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
// Attach gas sensor to Analog A0 // Attach gas sensor to Analog A0
upm::MQ4 *sensor = new upm::MQ4(0); upm::MQ4 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
uint16_t buffer [128]; uint16_t buffer[128];
thresholdContext ctx; thresholdContext ctx;
ctx.averageReading = 0; ctx.averageReading = 0;
@ -60,12 +60,11 @@ int main(int argc, char **argv)
// Repeatedly, take a sample every 2 microseconds; // Repeatedly, take a sample every 2 microseconds;
// find the average of 128 samples; and // find the average of 128 samples; and
// print a running graph of asteriskss as averages // print a running graph of asteriskss as averages
while (shouldRun) while (shouldRun) {
{ int len = sensor.getSampledWindow(2, 128, buffer);
int len = sensor->getSampledWindow (2, 128, buffer);
if (len) { if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len); int thresh = sensor.findThreshold(&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 5); sensor.printGraph(&ctx, 5);
if (thresh) { if (thresh) {
// do something .... // do something ....
} }
@ -74,8 +73,6 @@ int main(int argc, char **argv)
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,16 +22,16 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "mq5.hpp"
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdint.h>
#include <sys/time.h> #include <stdio.h>
#include "gas.hpp"
#include "mq5.hpp"
int is_running = 0; int is_running = 0;
uint16_t buffer [128]; uint16_t buffer[128];
upm::MQ5 *sensor = NULL;
void void
sig_handler(int signo) sig_handler(int signo)
@ -44,9 +44,9 @@ sig_handler(int signo)
//! [Interesting] //! [Interesting]
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
sensor = new upm::MQ5(0); upm::MQ5 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
thresholdContext ctx; thresholdContext ctx;
@ -55,10 +55,10 @@ main(int argc, char **argv)
ctx.averagedOver = 2; ctx.averagedOver = 2;
while (!is_running) { while (!is_running) {
int len = sensor->getSampledWindow (2, 128, buffer); int len = sensor.getSampledWindow(2, 128, buffer);
if (len) { if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len); int thresh = sensor.findThreshold(&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 7); sensor.printGraph(&ctx, 7);
if (thresh) { if (thresh) {
// do something .... // do something ....
} }
@ -67,8 +67,6 @@ main(int argc, char **argv)
std::cout << "exiting application" << std::endl; std::cout << "exiting application" << std::endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,12 +22,12 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "mq6.hpp"
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdint.h>
#include <sys/time.h>
#include "gas.hpp"
#include "mq6.hpp"
bool shouldRun = true; bool shouldRun = true;
@ -36,20 +36,20 @@ using namespace std;
void void
sig_handler(int signo) sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT) {
{
shouldRun = false; shouldRun = false;
} }
} }
//! [Interesting] //! [Interesting]
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
// Attach gas sensor to Analog A0 // Attach gas sensor to Analog A0
upm::MQ6 *sensor = new upm::MQ6(0); upm::MQ6 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
uint16_t buffer [128]; uint16_t buffer[128];
thresholdContext ctx; thresholdContext ctx;
ctx.averageReading = 0; ctx.averageReading = 0;
@ -60,12 +60,11 @@ int main(int argc, char **argv)
// Repeatedly, take a sample every 2 microseconds; // Repeatedly, take a sample every 2 microseconds;
// find the average of 128 samples; and // find the average of 128 samples; and
// print a running graph of asteriskss as averages // print a running graph of asteriskss as averages
while (shouldRun) while (shouldRun) {
{ int len = sensor.getSampledWindow(2, 128, buffer);
int len = sensor->getSampledWindow (2, 128, buffer);
if (len) { if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len); int thresh = sensor.findThreshold(&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 5); sensor.printGraph(&ctx, 5);
if (thresh) { if (thresh) {
// do something .... // do something ....
} }
@ -74,8 +73,6 @@ int main(int argc, char **argv)
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,12 +22,12 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "mq7.hpp"
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdint.h>
#include <sys/time.h>
#include "gas.hpp"
#include "mq7.hpp"
bool shouldRun = true; bool shouldRun = true;
@ -36,20 +36,20 @@ using namespace std;
void void
sig_handler(int signo) sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT) {
{
shouldRun = false; shouldRun = false;
} }
} }
//! [Interesting] //! [Interesting]
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
// Attach gas sensor to Analog A0 // Attach gas sensor to Analog A0
upm::MQ7 *sensor = new upm::MQ7(0); upm::MQ7 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
uint16_t buffer [128]; uint16_t buffer[128];
thresholdContext ctx; thresholdContext ctx;
ctx.averageReading = 0; ctx.averageReading = 0;
@ -60,12 +60,11 @@ int main(int argc, char **argv)
// Repeatedly, take a sample every 2 microseconds; // Repeatedly, take a sample every 2 microseconds;
// find the average of 128 samples; and // find the average of 128 samples; and
// print a running graph of asteriskss as averages // print a running graph of asteriskss as averages
while (shouldRun) while (shouldRun) {
{ int len = sensor.getSampledWindow(2, 128, buffer);
int len = sensor->getSampledWindow (2, 128, buffer);
if (len) { if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len); int thresh = sensor.findThreshold(&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 5); sensor.printGraph(&ctx, 5);
if (thresh) { if (thresh) {
// do something .... // do something ....
} }
@ -74,8 +73,6 @@ int main(int argc, char **argv)
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,12 +22,12 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "mq8.hpp"
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdint.h>
#include <sys/time.h>
#include "gas.hpp"
#include "mq8.hpp"
bool shouldRun = true; bool shouldRun = true;
@ -36,20 +36,20 @@ using namespace std;
void void
sig_handler(int signo) sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT) {
{
shouldRun = false; shouldRun = false;
} }
} }
//! [Interesting] //! [Interesting]
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
// Attach gas sensor to Analog A0 // Attach gas sensor to Analog A0
upm::MQ8 *sensor = new upm::MQ8(0); upm::MQ8 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
uint16_t buffer [128]; uint16_t buffer[128];
thresholdContext ctx; thresholdContext ctx;
ctx.averageReading = 0; ctx.averageReading = 0;
@ -60,12 +60,11 @@ int main(int argc, char **argv)
// Repeatedly, take a sample every 2 microseconds; // Repeatedly, take a sample every 2 microseconds;
// find the average of 128 samples; and // find the average of 128 samples; and
// print a running graph of asteriskss as averages // print a running graph of asteriskss as averages
while (shouldRun) while (shouldRun) {
{ int len = sensor.getSampledWindow(2, 128, buffer);
int len = sensor->getSampledWindow (2, 128, buffer);
if (len) { if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len); int thresh = sensor.findThreshold(&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 5); sensor.printGraph(&ctx, 5);
if (thresh) { if (thresh) {
// do something .... // do something ....
} }
@ -74,8 +73,6 @@ int main(int argc, char **argv)
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,16 +22,16 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "mq9.hpp"
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdint.h>
#include <sys/time.h> #include <stdio.h>
#include "gas.hpp"
#include "mq9.hpp"
int is_running = 0; int is_running = 0;
uint16_t buffer [128]; uint16_t buffer[128];
upm::MQ9 *sensor = NULL;
void void
sig_handler(int signo) sig_handler(int signo)
@ -44,9 +44,9 @@ sig_handler(int signo)
//! [Interesting] //! [Interesting]
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
sensor = new upm::MQ9(0); upm::MQ9 sensor(0);
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
thresholdContext ctx; thresholdContext ctx;
@ -55,10 +55,10 @@ main(int argc, char **argv)
ctx.averagedOver = 2; ctx.averagedOver = 2;
while (!is_running) { while (!is_running) {
int len = sensor->getSampledWindow (2, 128, buffer); int len = sensor.getSampledWindow(2, 128, buffer);
if (len) { if (len) {
int thresh = sensor->findThreshold (&ctx, 30, buffer, len); int thresh = sensor.findThreshold(&ctx, 30, buffer, len);
sensor->printGraph(&ctx, 5); sensor.printGraph(&ctx, 5);
if (thresh) { if (thresh) {
// do something .... // do something ....
} }
@ -67,8 +67,6 @@ main(int argc, char **argv)
std::cout << "exiting application" << std::endl; std::cout << "exiting application" << std::endl;
delete sensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,10 +22,13 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <stdint.h>
#include <stdio.h>
#include <string>
#include "tp401.hpp" #include "tp401.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
@ -34,37 +37,41 @@ using namespace std;
std::string std::string
airQuality(uint16_t value) airQuality(uint16_t value)
{ {
if(value < 50) return "Fresh Air"; if (value < 50)
if(value < 200) return "Normal Indoor Air"; return "Fresh Air";
if(value < 400) return "Low Pollution"; if (value < 200)
if(value < 600) return "High Pollution - Action Recommended"; return "Normal Indoor Air";
if (value < 400)
return "Low Pollution";
if (value < 600)
return "High Pollution - Action Recommended";
return "Very High Pollution - Take Action Immediately"; return "Very High Pollution - Take Action Immediately";
} }
int main () int
main()
{ {
upm::TP401* airSensor = new upm::TP401(0); // Instantiate new grove air quality sensor on analog pin A0 upm::TP401 airSensor(0);
cout << airSensor->name() << endl; cout << airSensor.name() << endl;
fprintf(stdout, "Heating sensor for 3 minutes...\n"); fprintf(stdout, "Heating sensor for 3 minutes...\n");
// wait 3 minutes for sensor to warm up // wait 3 minutes for sensor to warm up
for(int i = 0; i < 3; i++) { for (int i = 0; i < 3; i++) {
if(i) { if (i) {
fprintf(stdout, "Please wait, %d minute(s) passed..\n", i); fprintf(stdout, "Please wait, %d minute(s) passed..\n", i);
} }
sleep(60); upm_delay(60);
} }
fprintf(stdout, "Sensor ready!\n"); fprintf(stdout, "Sensor ready!\n");
while(true) { while (true) {
uint16_t value = airSensor->getSample(); // Read raw value uint16_t value = airSensor.getSample(); // Read raw value
float ppm = airSensor->getPPM(); // Read CO ppm (can vary slightly from previous read) float ppm = airSensor.getPPM(); // Read CO ppm (can vary slightly from previous read)
fprintf(stdout, "raw: %4d ppm: %5.2f %s\n", value, ppm, airQuality(value).c_str()); fprintf(stdout, "raw: %4d ppm: %5.2f %s\n", value, ppm, airQuality(value).c_str());
usleep(2500000); // Sleep for 2.5s upm_delay_us(2500000); // Sleep for 2.5s
} }
delete airSensor;
return 0; return 0;
} }
//! [Interesting] //! [Interesting]

View File

@ -22,10 +22,11 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "gp2y0a.hpp" #include "gp2y0a.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
@ -35,39 +36,38 @@ bool shouldRun = true;
#define GP2Y0A_AREF 5.0 #define GP2Y0A_AREF 5.0
#define SAMPLES_PER_QUERY 20 #define SAMPLES_PER_QUERY 20
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main() int
main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Note, for the Grove 80cm version of this sensor, due to the way // Note, for the Grove 80cm version of this sensor, due to the way
// it is wired, you need to plug this into the A0 port, where it // it is wired, you need to plug this into the A0 port, where it
// will use the available A1 pin for data. // will use the available A1 pin for data.
// Instantiate a GP2Y0A on analog pin A1 // Instantiate a GP2Y0A on analog pin A1
upm::GP2Y0A *volts = new upm::GP2Y0A(1); upm::GP2Y0A volts(1);
// The higher the voltage (closer to AREF) the closer the object is. NOTE: // The higher the voltage (closer to AREF) the closer the object is. NOTE:
// the measured voltage will probably not exceed 3.3 volts. // the measured voltage will probably not exceed 3.3 volts.
// Every second, print the averaged voltage value (averaged over 20 samples). // Every second, print the averaged voltage value (averaged over 20 samples).
while (shouldRun) while (shouldRun) {
{ cout << "AREF: " << GP2Y0A_AREF << ", Voltage value (higher means closer): "
cout << "AREF: " << GP2Y0A_AREF << volts.value(GP2Y0A_AREF, SAMPLES_PER_QUERY) << endl;
<< ", Voltage value (higher means closer): "
<< volts->value(GP2Y0A_AREF, SAMPLES_PER_QUERY) << endl;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete volts;
return 0; return 0;
} }

View File

@ -22,79 +22,71 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h>
#include <stdio.h>
#include "gprs.hpp" #include "gprs.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
using namespace upm; using namespace upm;
void printUsage(char *progname) void
printUsage(char* progname)
{ {
cout << "Usage: " << progname << " [AT command]" << endl; cout << "Usage: " << progname << " [AT command]" << endl;
cout << endl; cout << endl;
cout << "If an argument is supplied on the command line, that argument is" cout << "If an argument is supplied on the command line, that argument is" << endl;
<< endl;
cout << "sent to the module and the response is printed out." << endl; cout << "sent to the module and the response is printed out." << endl;
cout << endl; cout << endl;
cout << "If no argument is used, then the manufacturer and the current" cout << "If no argument is used, then the manufacturer and the current" << endl;
<< endl;
cout << "saved profiles are queried and the results printed out." << endl; cout << "saved profiles are queried and the results printed out." << endl;
cout << endl; cout << endl;
cout << endl; cout << endl;
} }
// simple helper function to send a command and wait for a response // simple helper function to send a command and wait for a response
void sendCommand(upm::GPRS* sensor, string cmd) void
sendCommand(upm::GPRS& sensor, string cmd)
{ {
// commands need to be terminated with a carriage return // commands need to be terminated with a carriage return
cmd += "\r"; cmd += "\r";
sensor->writeDataStr(cmd); sensor.writeDataStr(cmd);
// wait up to 1 second // wait up to 1 second
if (sensor->dataAvailable(1000)) if (sensor.dataAvailable(1000)) {
{ cout << "Returned: " << sensor.readDataStr(1024) << endl;
cout << "Returned: " << sensor->readDataStr(1024) << endl; } else {
}
else
{
cerr << "Timed out waiting for response" << endl; cerr << "Timed out waiting for response" << endl;
} }
} }
int
int main(int argc, char **argv) main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Instantiate a GPRS Module on UART 0 // Instantiate a GPRS Module on UART 0
upm::GPRS* sensor = new upm::GPRS(0); upm::GPRS sensor(0);
// Set the baud rate, 19200 baud is the default. // Set the baud rate, 19200 baud is the default.
if (sensor->setBaudRate(19200) != mraa::SUCCESS) if (sensor.setBaudRate(19200) != 0) {
{
cerr << "Failed to set tty baud rate" << endl; cerr << "Failed to set tty baud rate" << endl;
return 1; return 1;
} }
printUsage(argv[0]); printUsage(argv[0]);
if (argc > 1) if (argc > 1) {
{
cout << "Sending command line argument (" << argv[1] << ")..." << endl; cout << "Sending command line argument (" << argv[1] << ")..." << endl;
sendCommand(sensor, argv[1]); sendCommand(sensor, argv[1]);
} } else {
else
{
// query the module manufacturer // query the module manufacturer
cout << "Querying module manufacturer (AT+CGMI)..." << endl; cout << "Querying module manufacturer (AT+CGMI)..." << endl;
sendCommand(sensor, "AT+CGMI"); sendCommand(sensor, "AT+CGMI");
sleep(1); upm_delay(1);
// query the saved profiles // query the saved profiles
cout << "Querying the saved profiles (AT&V)..." << endl; cout << "Querying the saved profiles (AT&V)..." << endl;
@ -104,8 +96,7 @@ int main(int argc, char **argv)
// http://www.seeedstudio.com/wiki/images/7/72/AT_Commands_v1.11.pdf // http://www.seeedstudio.com/wiki/images/7/72/AT_Commands_v1.11.pdf
} }
//! [Interesting] //! [Interesting]
delete sensor;
return 0; return 0;
} }

View File

@ -22,28 +22,29 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "grove.hpp" #include <string>
#include "grovebutton.hpp"
#include "upm_utilities.h"
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
// This example uses GPIO 0 // This example uses GPIO 0
//! [Interesting] //! [Interesting]
// Create the button object using GPIO pin 0 // Create the button object using GPIO pin 0
upm::GroveButton* button = new upm::GroveButton(0); upm::GroveButton button(0);
// Read the input and print, waiting one second between readings // Read the input and print, waiting one second between readings
while( 1 ) { while (1) {
std::cout << button->name() << " value is " << button->value() << std::endl; std::cout << button.name() << " value is " << button.value() << std::endl;
sleep(1); upm_delay(1);
} }
// Delete the button object // Delete the button object
delete button; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -22,47 +22,47 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "grove.hpp"
#include "groveled.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main() main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a grove LED on D2. Here we are controlling a Grove // Instantiate a grove LED on D2. Here we are controlling a Grove
// Multi-color flash LED. We just just need to turn it on - it will // Multi-color flash LED. We just just need to turn it on - it will
// then cycle through various colors (red, green, blue, purple) on it's // then cycle through various colors (red, green, blue, purple) on it's
// own until turned off. // own until turned off.
upm::GroveLed* led = new upm::GroveLed(2); upm::GroveLed led(2);
// start the light show // start the light show
led->on(); led.on();
// just sleep until interrupted // just upm_delay until interrupted
while (shouldRun) while (shouldRun)
sleep(1); upm_delay(1);
//! [Interesting] //! [Interesting]
led->off(); led.off();
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete led;
return 0; return 0;
} }

View File

@ -23,33 +23,34 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "grove.hpp" #include <string>
#include "groveled.hpp"
#include "upm_utilities.h"
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Create the Grove LED object using GPIO pin 2 // Create the Grove LED object using GPIO pin 2
upm::GroveLed* led = new upm::GroveLed(2); upm::GroveLed led(2);
// Print the name // Print the name
std::cout << led->name() << std::endl; std::cout << led.name() << std::endl;
// Turn the LED on and off 10 times, pausing one second // Turn the LED on and off 10 times, pausing one second
// between transitions // between transitions
for (int i=0; i < 10; i++) { for (int i = 0; i < 10; i++) {
led->on(); led.on();
sleep(1); upm_delay(1);
led->off(); led.off();
sleep(1); upm_delay(1);
} }
// Delete the Grove LED object // Delete the Grove LED object
delete led; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -23,27 +23,28 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "grove.hpp" #include <string>
#include "grovelight.hpp"
#include "upm_utilities.h"
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Create the light sensor object using AIO pin 0 // Create the light sensor object using AIO pin 0
upm::GroveLight* light = new upm::GroveLight(0); upm::GroveLight light(0);
// Read the input and print both the raw value and a rough lux value, // Read the input and print both the raw value and a rough lux value,
// waiting one second between readings // waiting one second between readings
while( 1 ) { while (1) {
std::cout << light->name() << " raw value is " << light->raw_value() << std::cout << light.name() << " raw value is " << light.raw_value() << ", which is roughly "
", which is roughly " << light->value() << " lux" << std::endl; << light.value() << " lux" << std::endl;
sleep(1); upm_delay(1);
} }
// Delete the light sensor object // Delete the light sensor object
delete light; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -22,37 +22,38 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include "grove.hpp" #include <string>
#include "groverelay.hpp"
#include "upm_utilities.h"
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
// This example uses GPIO 0 // This example uses GPIO 0
//! [Interesting] //! [Interesting]
// Create the relay switch object using GPIO pin 0 // Create the relay switch object using GPIO pin 0
upm::GroveRelay* relay = new upm::GroveRelay(0); upm::GroveRelay relay(0);
// Close and then open the relay switch 3 times, // Close and then open the relay switch 3 times,
// waiting one second each time. The LED on the relay switch // waiting one second each time. The LED on the relay switch
// will light up when the switch is on (closed). // will light up when the switch is on (closed).
// The switch will also make a noise between transitions. // The switch will also make a noise between transitions.
for ( int i = 0; i < 3; i++ ) { for (int i = 0; i < 3; i++) {
relay->on(); relay.on();
if ( relay->isOn() ) if (relay.isOn())
std::cout << relay->name() << " is on" << std::endl; std::cout << relay.name() << " is on" << std::endl;
sleep(1); upm_delay(1);
relay->off(); relay.off();
if ( relay->isOff() ) if (relay.isOff())
std::cout << relay->name() << " is off" << std::endl; std::cout << relay.name() << " is off" << std::endl;
sleep(1); upm_delay(1);
} }
// Delete the relay switch object // Delete the relay switch object
delete relay; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -22,36 +22,46 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <iomanip> #include <stdint.h>
#include "grove.hpp" #include <stdio.h>
#include <string>
#include "groverotary.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int main () int
main()
{ {
//! [Interesting] //! [Interesting]
// Instantiate a rotary sensor on analog pin A0 // Instantiate a rotary sensor on analog pin A0
upm::GroveRotary* knob = new upm::GroveRotary(0); upm::GroveRotary knob(0);
// Print sensor name to confirm it initialized properly // Print sensor name to confirm it initialized properly
cout << knob->name() << endl; cout << knob.name() << endl;
while(true) { while (true) {
float abs_value = knob->abs_value(); // Absolute raw value float abs_value = knob.abs_value(); // Absolute raw value
float abs_deg = knob->abs_deg(); // Absolute degrees float abs_deg = knob.abs_deg(); // Absolute degrees
float abs_rad = knob->abs_rad(); // Absolute radians float abs_rad = knob.abs_rad(); // Absolute radians
float rel_value = knob->rel_value(); // Relative raw value float rel_value = knob.rel_value(); // Relative raw value
float rel_deg = knob->rel_deg(); // Relative degrees float rel_deg = knob.rel_deg(); // Relative degrees
float rel_rad = knob->rel_rad(); // Relative radians float rel_rad = knob.rel_rad(); // Relative radians
fprintf(stdout, "Absolute: %4d raw %5.2f deg = %3.2f rad Relative: %4d raw %5.2f deg %3.2f rad\n", fprintf(stdout,
(int16_t)abs_value, abs_deg, abs_rad, (int16_t)rel_value, rel_deg, rel_rad); "Absolute: %4d raw %5.2f deg = %3.2f rad Relative: %4d raw %5.2f "
"deg %3.2f rad\n",
(int16_t) abs_value,
abs_deg,
abs_rad,
(int16_t) rel_value,
rel_deg,
rel_rad);
usleep(2500000); // Sleep for 2.5s upm_delay_us(2500000); // Sleep for 2.5s
} }
//! [Interesting] //! [Interesting]
delete knob;
return 0; return 0;
} }

View File

@ -22,29 +22,31 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <iomanip> #include <stdint.h>
#include "grove.hpp" #include <stdio.h>
#include <string>
#include "groveslide.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int main () int
main()
{ {
//! [Interesting] //! [Interesting]
upm::GroveSlide* slide = new upm::GroveSlide(0); // Instantiate new grove slide potentiometer on analog pin A0 upm::GroveSlide slide(0);
cout << slide->name() << endl; cout << slide.name() << endl;
while(true) { while (true) {
float adc_value = slide->raw_value(); // Read raw value float adc_value = slide.raw_value(); // Read raw value
float volts = slide->voltage_value(); // Read voltage, board reference set at 5.0V float volts = slide.voltage_value(); // Read voltage, board reference set at 5.0V
fprintf(stdout, "%4d = %.2f V\n", (uint16_t)adc_value, volts); fprintf(stdout, "%4d = %.2f V\n", (uint16_t) adc_value, volts);
usleep(2500000); // Sleep for 2.5s upm_delay_us(2500000); // Sleep for 2.5s
} }
//! [Interesting] //! [Interesting]
delete slide;
return 0; return 0;
} }

View File

@ -23,33 +23,33 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <iomanip> #include <stdio.h>
#include "grove.hpp" #include <string>
#include "grovetemp.hpp"
#include "upm_utilities.h"
int int
main(int argc, char **argv) main(int argc, char** argv)
{ {
//! [Interesting] //! [Interesting]
// Create the temperature sensor object using AIO pin 0 // Create the temperature sensor object using AIO pin 0
upm::GroveTemp* temp = new upm::GroveTemp(0); upm::GroveTemp temp(0);
std::cout << temp->name() << std::endl; std::cout << temp.name() << std::endl;
// Read the temperature ten times, printing both the Celsius and // Read the temperature ten times, printing both the Celsius and
// equivalent Fahrenheit temperature, waiting one second between readings // equivalent Fahrenheit temperature, waiting one second between readings
for (int i=0; i < 10; i++) { for (int i = 0; i < 10; i++) {
int celsius = temp->value(); int celsius = temp.value();
int fahrenheit = (int) (celsius * 9.0/5.0 + 32.0); int fahrenheit = (int) (celsius * 9.0 / 5.0 + 32.0);
printf("%d degrees Celsius, or %d degrees Fahrenheit\n", printf("%d degrees Celsius, or %d degrees Fahrenheit\n", celsius, fahrenheit);
celsius, fahrenheit); upm_delay(1);
sleep(1);
} }
// Delete the temperature sensor object // Delete the temperature sensor object
delete temp; //! [Interesting]
//! [Interesting]
return 0; return 0;
} }

View File

@ -22,48 +22,45 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <iostream> #include <iostream>
#include <unistd.h>
#include <signal.h> #include <signal.h>
#include "grovecollision.hpp" #include "grovecollision.hpp"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// The was tested with the Grove Collision Sensor // The was tested with the Grove Collision Sensor
// Instantiate a Grove Collision on digital pin D2 // Instantiate a Grove Collision on digital pin D2
upm::GroveCollision* collision = new upm::GroveCollision(2); upm::GroveCollision collision(2);
bool collisionState = false; bool collisionState = false;
cout << "No collision" << endl; cout << "No collision" << endl;
while (shouldRun) while (shouldRun) {
{ if (collision.isColliding() && !collisionState) {
if (collision->isColliding() && !collisionState)
{
cout << "Collision!" << endl; cout << "Collision!" << endl;
collisionState = true; collisionState = true;
} } else if (collisionState) {
else if (collisionState)
{
cout << "No collision" << endl; cout << "No collision" << endl;
collisionState = false; collisionState = false;
} }
} }
//! [Interesting] //! [Interesting]
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete collision;
return 0; return 0;
} }

View File

@ -22,57 +22,57 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <unistd.h>
#include <iostream> #include <iostream>
#include <signal.h> #include <signal.h>
#include "groveehr.hpp" #include "groveehr.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int
int main() main()
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// Instantiate a Grove Ear-clip Heart Rate sensor on digital pin D2 // Instantiate a Grove Ear-clip Heart Rate sensor on digital pin D2
upm::GroveEHR* heart = new upm::GroveEHR(2); upm::GroveEHR heart(2);
// set the beat counter to 0, init the clock and start counting beats // set the beat counter to 0, init the clock and start counting beats
heart->clearBeatCounter(); heart.clearBeatCounter();
heart->initClock(); heart.initClock();
heart->startBeatCounter(); heart.startBeatCounter();
while (shouldRun) while (shouldRun) {
{
// we grab these just for display purposes in this example // we grab these just for display purposes in this example
uint32_t millis = heart->getMillis(); uint32_t millis = heart.getMillis();
uint32_t beats = heart->beatCounter(); uint32_t beats = heart.beatCounter();
// heartRate() requires that at least 5 seconds pass before // heartRate() requires that at least 5 seconds pass before
// returning anything other than 0 // returning anything other than 0
int hr = heart->heartRate(); int hr = heart.heartRate();
// output milliseconds passed, beat count, and computed heart rate // output milliseconds passed, beat count, and computed heart rate
cout << "Millis: " << millis << " Beats: " << beats; cout << "Millis: " << millis << " Beats: " << beats;
cout << " Heart Rate: " << hr << endl; cout << " Heart Rate: " << hr << endl;
sleep(1); upm_delay(1);
} }
heart->stopBeatCounter(); heart.stopBeatCounter();
//! [Interesting] //! [Interesting]
cout << "Exiting..." << endl; cout << "Exiting..." << endl;
delete heart;
return 0; return 0;
} }

View File

@ -22,45 +22,46 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#include <iostream> #include <iostream>
#include <unistd.h>
#include <signal.h> #include <signal.h>
#include "groveeldriver.hpp" #include "groveeldriver.hpp"
#include "upm_utilities.h"
using namespace std; using namespace std;
int shouldRun = true; int shouldRun = true;
void sig_handler(int signo) void
sig_handler(int signo)
{ {
if (signo == SIGINT) if (signo == SIGINT)
shouldRun = false; shouldRun = false;
} }
int main(int argc, char **argv) int
main(int argc, char** argv)
{ {
signal(SIGINT, sig_handler); signal(SIGINT, sig_handler);
//! [Interesting] //! [Interesting]
// The was tested with the Grove El Driver Module // The was tested with the Grove El Driver Module
// Instantiate a Grove El Driver on digital pin D2 // Instantiate a Grove El Driver on digital pin D2
upm::GroveElDriver* eldriver = new upm::GroveElDriver(2); upm::GroveElDriver eldriver(2);
bool lightState = true; bool lightState = true;
while (shouldRun) while (shouldRun) {
{
if (lightState) if (lightState)
eldriver->on(); eldriver.on();
else else
eldriver->off(); eldriver.off();
lightState = !lightState; lightState = !lightState;
sleep(1); upm_delay(1);
} }
//! [Interesting] //! [Interesting]
eldriver->off(); eldriver.off();
cout << "Exiting" << endl; cout << "Exiting" << endl;
delete eldriver;
return 0; return 0;
} }

Some files were not shown because too many files have changed in this diff Show More