2015-09-24 17:00:37 -07:00
|
|
|
UPM (Useful Packages & Modules) Sensor/Actuator repository for MRAA
|
2015-09-23 03:18:10 +03:00
|
|
|
|
2015-09-24 17:00:37 -07:00
|
|
|
UPM is a high level repository for sensors that use MRAA. Each sensor links
|
|
|
|
to MRAA and are not meant to be interlinked although some groups of sensors
|
2015-09-23 03:18:10 +03:00
|
|
|
may be. Each sensor contains a header which allows to interface with it.
|
|
|
|
Typically a sensor is represented as a class and instantiated.
|
|
|
|
|
|
|
|
The constructor is expected to initialise the sensor and parameters may be used
|
|
|
|
to provide identification/pin location on the board.
|
|
|
|
|
|
|
|
Typically an update() function will be called in order to get new data from the
|
|
|
|
sensor in order to reduce load when doing multiple reads to sensor data.
|
|
|
|
|
|
|
|
### Example
|
|
|
|
|
|
|
|
A sensor/actuator is expected to work as such (here is the servo ES08A API):
|
|
|
|
@snippet ES08ASample.java Interesting
|
|
|
|
|
|
|
|
However implementation and API design is completely up to the developer, some
|
|
|
|
enumerable sensors for example may provide much clever instantiation. Displays
|
|
|
|
may also create more complex structures in order to interface with them.
|
|
|
|
|
2015-09-24 15:38:26 -07:00
|
|
|
Browse through the list of all [examples](https://github.com/intel-iot-devkit/upm/tree/master/examples/java).
|
2015-09-23 03:18:10 +03:00
|
|
|
|
|
|
|
Multi-sensor samples for the starter and specialized kits can be found in the
|
|
|
|
[iot-devkit-samples](https://github.com/intel-iot-devkit/iot-devkit-samples) repository.
|
|
|
|
|
|
|
|
### Supported Sensors
|
|
|
|
|
2015-09-23 12:46:38 -07:00
|
|
|
Supported [sensor list](http://iotdk.intel.com/docs/master/upm/java/modules.html) from API documentation.
|
2015-09-23 03:18:10 +03:00
|
|
|
|
2016-10-31 11:57:28 -07:00
|
|
|
You can also refer to the [Intel® IoT Developer Zone](https://software.intel.com/iot/hardware/sensors).
|
2015-09-23 03:18:10 +03:00
|
|
|
|
2015-09-24 15:30:37 -07:00
|
|
|
### IDE Compatibility
|
2015-09-23 03:18:10 +03:00
|
|
|
|
2015-09-24 15:30:37 -07:00
|
|
|
If you would like to create Eclipse IDE projects using the UPM Java samples,
|
|
|
|
please follow the instructions provided on the Intel Developer Zone IDE page.
|
|
|
|
|
|
|
|
@htmlonly
|
2016-10-31 11:57:28 -07:00
|
|
|
<a href="https://software.intel.com/iot/software/ide"><img src="../docs/icons/iss.png"/></a>
|
2015-09-24 15:30:37 -07:00
|
|
|
@endhtmlonly
|
2015-09-23 03:18:10 +03:00
|
|
|
|
|
|
|
### Building UPM
|
|
|
|
|
2015-09-24 15:38:26 -07:00
|
|
|
See @ref building here.
|
2015-09-23 03:18:10 +03:00
|
|
|
|
|
|
|
### Making your own UPM module
|
|
|
|
|
2015-09-24 15:38:26 -07:00
|
|
|
@ref porting link has more information on making new UPM modules.
|
2015-09-23 03:18:10 +03:00
|
|
|
|
2015-09-24 15:38:26 -07:00
|
|
|
There is also an example available for @ref max31855 sensor.
|
2015-09-23 03:18:10 +03:00
|
|
|
|
|
|
|
### Naming conventions and rules for new UPM contributions
|
|
|
|
|
2015-09-24 15:38:26 -07:00
|
|
|
Before you begin development, take a look at our @ref naming conventions.
|
2015-09-23 03:18:10 +03:00
|
|
|
|
2015-09-24 15:38:26 -07:00
|
|
|
Also, please read the guidelines for @ref contributions to UPM.
|
2015-09-23 03:18:10 +03:00
|
|
|
|
2015-09-24 15:38:26 -07:00
|
|
|
Don't forget to check the @ref documentation section.
|
2015-09-23 03:18:10 +03:00
|
|
|
|
|
|
|
Make sure you add yourself as an author on every new code file submitted.
|
|
|
|
If you are providing a fix with significant changes, feel free to add yourself
|
|
|
|
as a contributor. Signing-off your commits is mandatory.
|
|
|
|
|
|
|
|
API Documentation
|
|
|
|
==============
|
|
|
|
|
|
|
|
@htmlonly
|
|
|
|
|
2015-09-24 15:38:26 -07:00
|
|
|
<a href="http://iotdk.intel.com/docs/master/upm"><img src="../docs/icons/c++.png"/></a>
|
2015-09-23 12:02:06 -07:00
|
|
|
<a href="http://iotdk.intel.com/docs/master/upm/java"><img src="../docs/icons/java.png"/></a>
|
|
|
|
<a href="http://iotdk.intel.com/docs/master/upm/python"><img src="../docs/icons/python.png"/></a>
|
|
|
|
<a href="http://iotdk.intel.com/docs/master/upm/node"><img src="../docs/icons/node.png"/></a>
|
2015-09-23 03:18:10 +03:00
|
|
|
|
|
|
|
@endhtmlonly
|
|
|
|
|
2015-09-24 15:31:58 -07:00
|
|
|
### Changelog
|
2015-09-24 15:38:26 -07:00
|
|
|
Version @ref changelog here.
|
2015-09-23 03:18:10 +03:00
|
|
|
|
2015-09-24 15:31:58 -07:00
|
|
|
### Known Limitations
|
2015-09-24 15:38:26 -07:00
|
|
|
List of @ref knownlimitations here.
|