mirror of
https://github.com/eclipse/upm.git
synced 2025-03-19 06:57:30 +03:00
89 lines
2.9 KiB
C
89 lines
2.9 KiB
C
![]() |
/*
|
||
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||
|
* Copyright (c) 2015 Intel Corporation.
|
||
|
*
|
||
|
* 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/aio.hpp>
|
||
|
#include "lcm1602.h"
|
||
|
|
||
|
namespace upm
|
||
|
{
|
||
|
/**
|
||
|
* @library i2clcd
|
||
|
* @sensor sainsmartks
|
||
|
* @comname SainSmart LCD Keypad Shield
|
||
|
* @type display
|
||
|
* @man sainsmart
|
||
|
* @web http://www.sainsmart.com/sainsmart-1602-lcd-keypad-shield-for-arduino-duemilanove-uno-mega2560-mega1280.html
|
||
|
* @con gpio analog
|
||
|
*
|
||
|
* @brief API for Sainsmart LCD Keypad Shield
|
||
|
*
|
||
|
* The Sainsmart LCD Keypad Shield uses 6 digital outputs and 1
|
||
|
* analog input (for the keypad). The outputs are used to drive an
|
||
|
* attached LCM1602 LCD controller.
|
||
|
*
|
||
|
* @snippet sainsmartks.cxx Interesting
|
||
|
*/
|
||
|
class SAINSMARTKS : public Lcm1602
|
||
|
{
|
||
|
public:
|
||
|
/**
|
||
|
* SAINSMARTKS constructor
|
||
|
*
|
||
|
* As this is a shield, you will not likely have any choice over
|
||
|
* the pins that are used. For this reason, we provide defaults
|
||
|
* for all of them -- of course they can be changed if your device
|
||
|
* is different.
|
||
|
*
|
||
|
* @param rs register select pin
|
||
|
* @param enable enable pin
|
||
|
* @param d0 data 0 pin
|
||
|
* @param d1 data 1 pin
|
||
|
* @param d2 data 2 pin
|
||
|
* @param d3 data 3 pin
|
||
|
* @param keypad analog pin of the keypad
|
||
|
*/
|
||
|
SAINSMARTKS(uint8_t rs=8, uint8_t enable=9,
|
||
|
uint8_t d0=4, uint8_t d1=5, uint8_t d2=6, uint8_t d3=7,
|
||
|
uint8_t keypad=0);
|
||
|
/**
|
||
|
* SAINSMARTKS destructor
|
||
|
*/
|
||
|
~SAINSMARTKS();
|
||
|
|
||
|
/**
|
||
|
* returns the floating point representation of the key that is
|
||
|
* being pushed. Each key produces a different value between 0.0
|
||
|
* and 1.0, and only one key can be read at a time.
|
||
|
*
|
||
|
* @return the floating point value representing a key
|
||
|
*/
|
||
|
float getRawKeyValue();
|
||
|
|
||
|
private:
|
||
|
mraa::Aio m_aioKeypad;
|
||
|
};
|
||
|
}
|