mirror of
https://github.com/eclipse/upm.git
synced 2025-07-01 01:11:10 +03:00
sensortemplate: Added a template sensor
The purpose of the templatesensor is to get contributors up and running faster when adding a new sensor. * Created library named 'sensortemplate' * Added C++ source * Added swig interface files for java, javascript, and python * Added sensortemplate image file * Added examples for c++, java, javascript, and python * Updated contributions.md with steps to create a new sensor from the sensortemplate library. Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
5
src/sensortemplate/CMakeLists.txt
Normal file
5
src/sensortemplate/CMakeLists.txt
Normal file
@ -0,0 +1,5 @@
|
||||
upm_mixed_module_init (NAME sensortemplate
|
||||
DESCRIPTION "Short, Title-Case Description from the SensorTemplate Datasheet"
|
||||
CPP_HDR sensortemplate.hpp
|
||||
CPP_SRC sensortemplate.cxx
|
||||
REQUIRES mraa)
|
14
src/sensortemplate/common.i
Normal file
14
src/sensortemplate/common.i
Normal file
@ -0,0 +1,14 @@
|
||||
/* Include global UPM interface file */
|
||||
%include "../upm.i"
|
||||
|
||||
/* Required for python documentation, ignored for others */
|
||||
%feature("autodoc", "3");
|
||||
|
||||
%{
|
||||
/* SWIG preprocessor copies this directly to the output wrapper*/
|
||||
#include "sensortemplate.hpp"
|
||||
%}
|
||||
|
||||
/* %include is a SWIG directive. SWIG will wrap types exposed in this
|
||||
* header to the target language. */
|
||||
%include "sensortemplate.hpp"
|
17
src/sensortemplate/javaupm_sensortemplate.i
Normal file
17
src/sensortemplate/javaupm_sensortemplate.i
Normal file
@ -0,0 +1,17 @@
|
||||
/* Specify the name of the target JAVA module */
|
||||
%module javaupm_sensortemplate
|
||||
|
||||
/* Include the base sensor interface file */
|
||||
%include "common.i"
|
||||
|
||||
/* Add the JAVA code to load the module */
|
||||
%pragma(java) jniclasscode=%{
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("javaupm_sensortemplate");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
System.err.println("Native code library failed to load. \n" + e);
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
%}
|
5
src/sensortemplate/jsupm_sensortemplate.i
Normal file
5
src/sensortemplate/jsupm_sensortemplate.i
Normal file
@ -0,0 +1,5 @@
|
||||
/* Specify the name of the target JavaScript module */
|
||||
%module jsupm_sensortemplate
|
||||
|
||||
/* Include the base sensor interface file */
|
||||
%include "common.i"
|
9
src/sensortemplate/pyupm_sensortemplate.i
Normal file
9
src/sensortemplate/pyupm_sensortemplate.i
Normal file
@ -0,0 +1,9 @@
|
||||
/* Specify the name of the target JAVA module */
|
||||
%module pyupm_sensortemplate
|
||||
|
||||
/* If documentation is enabled, a full "pyupm_doxy2swig.i file will be
|
||||
* generated and used... Otherwise, use a stub */
|
||||
%include "pyupm_doxy2swig.i"
|
||||
|
||||
/* Include the base sensor interface file */
|
||||
%include "common.i"
|
35
src/sensortemplate/sensortemplate.cxx
Normal file
35
src/sensortemplate/sensortemplate.cxx
Normal file
@ -0,0 +1,35 @@
|
||||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Author: Your Full Name <your@email.address>
|
||||
* Copyright (c) <year> <copyright holder>
|
||||
*
|
||||
* Author: <contributing author full name - if applicable>
|
||||
* Copyright (c) <year> <copyright holder>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#include "sensortemplate.hpp"
|
||||
|
||||
using namespace upm;
|
||||
|
||||
SensorTemplate::SensorTemplate(int i2c_bus): _i2c(i2c_bus) {}
|
||||
|
||||
std::string SensorTemplate::helloWorld() { return "Hello World";}
|
98
src/sensortemplate/sensortemplate.hpp
Normal file
98
src/sensortemplate/sensortemplate.hpp
Normal file
@ -0,0 +1,98 @@
|
||||
/*
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Author: Your Full Name <your@email.address>
|
||||
* Copyright (c) <year> <copyright holder>
|
||||
*
|
||||
* Author: <contributing author full name - if applicable>
|
||||
* Copyright (c) <year> <copyright holder>
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "mraa/i2c.hpp"
|
||||
|
||||
namespace upm
|
||||
{
|
||||
/**
|
||||
* @brief Library block provides a short library description
|
||||
* @defgroup sensortemplate libupm-sensortemplate
|
||||
* @ingroup <manufacturer: adafruit,aeon,amphenol,avago,bosch,catnip,comet,dfrobot,emax,epict,freescale,generic,honeywell,kionix,maxbotix,maxbotix,maxim,meas,mouser,numatolabs,omega,openelectrons,sainsmart,seeed,semtech,silabs,sparkfun,stmicro,ti,trane,veris> <connection: analog,gpio,i2c,pwm,spi,uart> <category: accelerometer,ainput,button,color,compass,digipot,display,electric,flexfor,gaseous,gps,led,light,liquid,medical,motor,other,pressure,relay,rfid,serial,servos,sound,temp,time,touch,video,wifi> (<kit>: eak,gsk,hak,robok,tsk)
|
||||
*/
|
||||
|
||||
/**
|
||||
* @library sensortemplate
|
||||
* @sensor 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*
|
||||
* @comname Short, Title-Case Description from Datasheet. *Manditory*
|
||||
* @altname Alternative names that your sensor driver might have. This may
|
||||
* include manufacturer's name. *Optional*
|
||||
* @altid Alternative chip-ids that your sensor driver supports. *Optional*
|
||||
* @type One or more of: accelerometer,ainput,button,color,compass,digipot,
|
||||
* display,electric,flexfor,gaseous,gps,led,light,liquid,medical,motor,other,pressure,relay,rfid,serial,servos,sound,temp,time,touch,video,wifi *Manditory*
|
||||
* @man One or more of: Sensor manufacturer. Can be 'generic'. *Mandatory*
|
||||
* @web Links to vendors or data-sheets. *Optional*
|
||||
* @con One or more of: analog,gpio,i2c,pwm,spi,uart *Manditory*
|
||||
* @kit One of: gsk, hak, eak, tsk, robok *Optional*
|
||||
*
|
||||
* @brief Short class/sensor description
|
||||
*
|
||||
* Then add a much more detailed description here. Include items such as
|
||||
* board-specifics, testing, etc...
|
||||
*
|
||||
* @image html sensortemplate.png
|
||||
* @snippet <example-name.cxx> Interesting
|
||||
*/
|
||||
|
||||
class SensorTemplate
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* @brief Default constructor for SensorTemplate
|
||||
*
|
||||
* This creates an instance of SensorTemplate given an I2C bus
|
||||
* number.
|
||||
*
|
||||
* @param i2c_bus Target I2C bus
|
||||
* @return sensor context pointer
|
||||
* @throws std::runtime_error on failure to initialize I2C
|
||||
*/
|
||||
SensorTemplate(int i2c_bus);
|
||||
|
||||
/**
|
||||
* SensorTemplate destructor
|
||||
*/
|
||||
virtual ~SensorTemplate() {};
|
||||
|
||||
/**
|
||||
* @brief Hello world method
|
||||
*
|
||||
* Provides an example method which returns 'Hello world'
|
||||
*/
|
||||
std::string helloWorld();
|
||||
private:
|
||||
/* Private I2c instance */
|
||||
mraa::I2c _i2c;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user