2015-04-07 12:50:56 -06:00
|
|
|
/*
|
|
|
|
* 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 <iostream>
|
|
|
|
|
|
|
|
#include <mraa/gpio.h>
|
|
|
|
|
|
|
|
namespace upm {
|
|
|
|
/**
|
2015-08-10 18:53:31 +03:00
|
|
|
* @brief SX6119-based FM Receiver library
|
2015-04-07 12:50:56 -06:00
|
|
|
* @defgroup sx6119 libupm-sx6119
|
|
|
|
* @ingroup seeed gpio sound
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @sensor sx6119
|
|
|
|
* @library sx6119
|
2016-12-15 15:15:21 -08:00
|
|
|
* @comname FM Receiver
|
2015-06-01 15:44:07 -07:00
|
|
|
* @altname SX6119 FM Receiver
|
2015-04-07 12:50:56 -06:00
|
|
|
* @type sound
|
|
|
|
* @man seeed
|
2016-12-15 15:15:21 -08:00
|
|
|
* @web http://wiki.seeed.cc/Grove-FM_Receiver/
|
2015-04-07 12:50:56 -06:00
|
|
|
* @con gpio
|
|
|
|
*
|
2015-08-10 18:53:31 +03:00
|
|
|
* @brief API support for the SX6119-based Grove FM Receiver
|
2015-04-07 12:50:56 -06:00
|
|
|
*
|
2015-08-10 18:53:31 +03:00
|
|
|
* This class implements support for the SX6119 FM Receiver. There are
|
|
|
|
* two digital pins: one that toggles power on/off, and the other that
|
2015-04-07 12:50:56 -06:00
|
|
|
* does a seek to the next station.
|
|
|
|
*
|
2015-05-22 01:31:14 -07:00
|
|
|
* @image html sx6119.jpg
|
2015-04-07 12:50:56 -06:00
|
|
|
* @snippet sx6119.cxx Interesting
|
|
|
|
*/
|
|
|
|
class SX6119 {
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
2015-08-10 18:53:31 +03:00
|
|
|
* SX6119 constructor
|
2015-04-07 12:50:56 -06:00
|
|
|
*
|
2015-08-10 18:53:31 +03:00
|
|
|
* @param powerPin Pin to use for recording
|
|
|
|
* @param seekPin Pin to use for seeking to the next station
|
2015-04-07 12:50:56 -06:00
|
|
|
*/
|
|
|
|
SX6119(int powerPin, int seekPin);
|
|
|
|
|
|
|
|
/**
|
2015-08-10 18:53:31 +03:00
|
|
|
* SX6119 destructor
|
2015-04-07 12:50:56 -06:00
|
|
|
*/
|
|
|
|
~SX6119();
|
|
|
|
|
|
|
|
/**
|
2015-08-10 18:53:31 +03:00
|
|
|
* Toggles the device power on or off
|
2015-04-07 12:50:56 -06:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
void togglePower();
|
|
|
|
|
|
|
|
/**
|
2015-08-10 18:53:31 +03:00
|
|
|
* Seeks to the next station
|
2015-04-07 12:50:56 -06:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
void seek();
|
|
|
|
|
|
|
|
private:
|
|
|
|
mraa_gpio_context m_gpioPower;
|
|
|
|
mraa_gpio_context m_gpioSeek;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|