close now...
This commit is contained in:
parent
d2170f1adb
commit
8cf39c4a80
@ -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;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
11
nymea-app/platformoptions.cpp
Normal file
11
nymea-app/platformoptions.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
#include "platformoptions.h"
|
||||
|
||||
PlatformOptions::PlatformOptions(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool PlatformOptions::screenBacklight() const
|
||||
{
|
||||
QFile f()
|
||||
}
|
||||
17
nymea-app/platformoptions.h
Normal file
17
nymea-app/platformoptions.h
Normal 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
|
||||
Reference in New Issue
Block a user