mirror of
https://github.com/nymea/nymea-plugins.git
synced 2026-08-05 03:33:51 +02:00
77 lines
2.7 KiB
C++
77 lines
2.7 KiB
C++
#ifndef PIANOHAT_H
|
|
#define PIANOHAT_H
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2018 Simon Stürz <simon.stuerz@guh.io> *
|
|
* *
|
|
* This file is part of nymea. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Lesser General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2.1 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with this library; If not, see *
|
|
* <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include <QObject>
|
|
|
|
#include "touchsensor.h"
|
|
#include "plugin/device.h"
|
|
|
|
|
|
class PianoHat : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum Key {
|
|
// Sensor one 0x28
|
|
KeyC = 0,
|
|
KeyCSharp = 1,
|
|
KeyD = 2,
|
|
KeyDSharp = 3,
|
|
KeyE = 4,
|
|
KeyF = 5,
|
|
KeyFSharp = 6,
|
|
KeyG = 7,
|
|
// Sensor two 0x2b
|
|
KeyGSharp = 8,
|
|
KeyA = 9,
|
|
KeyASharp = 10,
|
|
KeyB = 11,
|
|
KeyHighC = 12,
|
|
KeyOctaveDown = 13,
|
|
KeyOctaveUp = 14,
|
|
KeyInstrument = 15
|
|
};
|
|
Q_ENUM(Key)
|
|
|
|
explicit PianoHat(QObject *parent = nullptr);
|
|
|
|
void enable();
|
|
void disable();
|
|
|
|
private:
|
|
TouchSensor *m_sensorOne = nullptr;
|
|
TouchSensor *m_sensorTwo = nullptr;
|
|
|
|
signals:
|
|
void keyPressed(const Key &key, bool pressed);
|
|
|
|
private slots:
|
|
void onSensorOneKeyPressedChanged(quint8 key, bool pressed);
|
|
void onSensorTwoKeyPressedChanged(quint8 key, bool pressed);
|
|
|
|
};
|
|
|
|
#endif // PIANOHAT_H
|