close now...

This commit is contained in:
Michael Zanetti 2018-08-13 13:04:39 +02:00
parent d2170f1adb
commit 8cf39c4a80
3 changed files with 31 additions and 4 deletions

View File

@ -209,10 +209,9 @@ void AWSClient::getCredentialsForIdentity(const QString &identityId)
settings.setValue("secretKey", m_secretKey);
settings.setValue("sessionToken", m_sessionToken);
qDebug() << "Raw GetCredentialsForIdentity reply:" << qUtf8Printable(data);
qDebug() << "GetCredentialsForIdentity reply: \nAccess Key ID:" << m_accessKeyId << "\nSecret Key:" << m_secretKey << "\nsessionkey:" << m_sessionToken << "\nExpiration:" << m_expirationDate;
postToMQTT();
qDebug() << "AWS Credentials for Identity received.";
// qDebug() << "Raw GetCredentialsForIdentity reply:" << qUtf8Printable(data);
// qDebug() << "GetCredentialsForIdentity reply: \nAccess Key ID:" << m_accessKeyId << "\nSecret Key:" << m_secretKey << "\nsessionkey:" << m_sessionToken << "\nExpiration:" << m_expirationDate;
});
}

View File

@ -0,0 +1,11 @@
#include "platformoptions.h"
PlatformOptions::PlatformOptions(QObject *parent) : QObject(parent)
{
}
bool PlatformOptions::screenBacklight() const
{
QFile f()
}

View File

@ -0,0 +1,17 @@
#ifndef PLATFORMOPTIONS_H
#define PLATFORMOPTIONS_H
#include <QObject>
class PlatformOptions : public QObject
{
Q_OBJECT
public:
explicit PlatformOptions(QObject *parent = nullptr);
signals:
public slots:
};
#endif // PLATFORMOPTIONS_H