2014-01-10 17:44:51 +01:00
|
|
|
/* Copyright (C) 2014 Kristian Lauszus, TKJ Electronics. All rights reserved.
|
|
|
|
|
|
|
|
This software may be distributed and modified under the terms of the GNU
|
|
|
|
General Public License version 2 (GPL2) as published by the Free Software
|
|
|
|
Foundation and appearing in the file GPL2.TXT included in the packaging of
|
|
|
|
this file. Please note that GPL2 Section 2[b] requires that all works based
|
|
|
|
on this software must also be made publicly available under the terms of
|
|
|
|
the GPL2 ("Copyleft").
|
|
|
|
|
|
|
|
Contact information
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
Kristian Lauszus, TKJ Electronics
|
|
|
|
Web : http://www.tkjelectronics.com
|
|
|
|
e-mail : kristianl@tkjelectronics.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ps4bt_h_
|
|
|
|
#define _ps4bt_h_
|
|
|
|
|
|
|
|
#include "BTHID.h"
|
2014-01-18 22:36:01 +01:00
|
|
|
#include "PS4Parser.h"
|
2014-01-10 17:44:51 +01:00
|
|
|
|
2014-01-10 18:23:22 +01:00
|
|
|
/**
|
|
|
|
* This class implements support for the PS4 controller via Bluetooth.
|
|
|
|
* It uses the BTHID class for all the Bluetooth communication.
|
|
|
|
*/
|
2014-01-18 22:36:01 +01:00
|
|
|
class PS4BT : public BTHID, public PS4Parser {
|
2014-01-10 17:44:51 +01:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Constructor for the PS4BT class.
|
2014-01-12 17:20:18 +01:00
|
|
|
* @param p Pointer to the BTHID class instance.
|
2014-01-10 17:44:51 +01:00
|
|
|
*/
|
2014-01-18 22:36:01 +01:00
|
|
|
PS4BT(BTD *p, bool pair = false, const char *pin = "0000") :
|
|
|
|
BTHID(p, pair, pin) {
|
|
|
|
PS4Parser::Reset();
|
2014-01-10 17:44:51 +01:00
|
|
|
};
|
|
|
|
|
2014-01-18 22:36:01 +01:00
|
|
|
/** @name BTHID implementation */
|
2014-01-10 17:44:51 +01:00
|
|
|
/**
|
2014-01-18 22:36:01 +01:00
|
|
|
* Used to parse Bluetooth HID data.
|
|
|
|
* @param bthid Pointer to the BTHID class.
|
|
|
|
* @param len The length of the incoming data.
|
|
|
|
* @param buf Pointer to the data buffer.
|
2014-01-10 17:44:51 +01:00
|
|
|
*/
|
2014-01-18 22:36:01 +01:00
|
|
|
virtual void ParseBTHID(BTHID *bthid, uint8_t len, uint8_t *buf) {
|
|
|
|
PS4Parser::Parse(len, buf);
|
|
|
|
};
|
2014-01-10 17:44:51 +01:00
|
|
|
|
|
|
|
/**
|
2014-01-18 22:36:01 +01:00
|
|
|
* Called when a device is successfully initialized.
|
|
|
|
* Use attachOnInit(void (*funcOnInit)(void)) to call your own function.
|
|
|
|
* This is useful for instance if you want to set the LEDs in a specific way.
|
2014-01-10 17:44:51 +01:00
|
|
|
*/
|
2014-01-18 22:36:01 +01:00
|
|
|
virtual void OnInitBTHID() {
|
|
|
|
if (pFuncOnInit)
|
|
|
|
pFuncOnInit(); // Call the user function
|
2014-01-10 17:44:51 +01:00
|
|
|
};
|
|
|
|
|
2014-01-18 22:36:01 +01:00
|
|
|
/** Used to reset the different buffers to there default values */
|
|
|
|
virtual void ResetBTHID() {
|
|
|
|
PS4Parser::Reset();
|
2014-01-10 17:44:51 +01:00
|
|
|
};
|
2014-01-18 22:36:01 +01:00
|
|
|
/**@}*/
|
2014-01-10 17:44:51 +01:00
|
|
|
|
2014-01-18 22:36:01 +01:00
|
|
|
/** True if a device is connected */
|
|
|
|
bool connected() {
|
|
|
|
BTHID::connected;
|
2014-01-10 17:44:51 +01:00
|
|
|
};
|
|
|
|
|
2014-01-12 17:20:18 +01:00
|
|
|
/**
|
|
|
|
* Used to call your own function when the device is successfully initialized.
|
|
|
|
* @param funcOnInit Function to call.
|
|
|
|
*/
|
|
|
|
void attachOnInit(void (*funcOnInit)(void)) {
|
|
|
|
pFuncOnInit = funcOnInit;
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2014-01-10 17:44:51 +01:00
|
|
|
void (*pFuncOnInit)(void); // Pointer to function called in onInit()
|
|
|
|
};
|
|
|
|
#endif
|