/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2016-2018 Simon Stürz * * * * 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 * * . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef NUIMO_H #define NUIMO_H #include #include #include "typeutils.h" #include "plugin/device.h" #include "hardware/bluetoothlowenergy/bluetoothlowenergydevice.h" class Nuimo : public QObject { Q_OBJECT public: enum SwipeDirection { SwipeDirectionLeft, SwipeDirectionRight, SwipeDirectionUp, SwipeDirectionDown }; enum MatrixType { MatrixTypeUp, MatrixTypeDown, MatrixTypeLeft, MatrixTypeRight, MatrixTypePlay, MatrixTypePause, MatrixTypeStop, MatrixTypeMusic, MatrixTypeHeart }; explicit Nuimo(Device *device, BluetoothLowEnergyDevice *bluetoothDevice, QObject *parent = nullptr); Device *device(); BluetoothLowEnergyDevice *bluetoothDevice(); void showImage(const MatrixType &matrixType); private: Device *m_device = nullptr; BluetoothLowEnergyDevice *m_bluetoothDevice = nullptr; QLowEnergyService *m_deviceInfoService = nullptr; QLowEnergyService *m_batteryService = nullptr; QLowEnergyService *m_inputService = nullptr; QLowEnergyService *m_ledMatrixService = nullptr; QLowEnergyCharacteristic m_deviceInfoCharacteristic; QLowEnergyCharacteristic m_batteryCharacteristic; QLowEnergyCharacteristic m_ledMatrixCharacteristic; QLowEnergyCharacteristic m_inputButtonCharacteristic; QLowEnergyCharacteristic m_inputSwipeCharacteristic; QLowEnergyCharacteristic m_inputRotationCharacteristic; uint m_rotationValue; void showMatrix(const QByteArray &matrix, const int &seconds); void printService(QLowEnergyService *service); // Set states void setBatteryValue(const QByteArray &data); signals: void availableChanged(); void buttonPressed(); void buttonReleased(); void batteryValueChaged(const uint &percentage); void swipeDetected(const SwipeDirection &direction); void rotationValueChanged(const uint &value); private slots: void onConnectedChanged(const bool &connected); void onServiceDiscoveryFinished(); void onDeviceInfoServiceStateChanged(const QLowEnergyService::ServiceState &state); void onBatteryServiceStateChanged(const QLowEnergyService::ServiceState &state); void onBatteryCharacteristicChanged(const QLowEnergyCharacteristic &characteristic, const QByteArray &value); void onInputServiceStateChanged(const QLowEnergyService::ServiceState &state); void onInputCharacteristicChanged(const QLowEnergyCharacteristic &characteristic, const QByteArray &value); void onLedMatrixServiceStateChanged(const QLowEnergyService::ServiceState &state); }; #endif // NUIMO_H