You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
2.8 KiB

/*
###############################################################################
#
# Temboo Arduino library
#
# Copyright 2017, Temboo Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
# either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
#
###############################################################################
*/
#ifndef TEMBOOMESSAGING_H_
#define TEMBOOMESSAGING_H_
#ifndef TEMBOO_LIBRARY_VERSION
#define TEMBOO_LIBRARY_VERSION 2
#endif
#include <Arduino.h>
#include <Process.h>
#include "utility/TembooWebSocketRequestHandles.h"
#define TEMBOO_MONITORING_ERROR_OK (0)
#define TEMBOO_MONITORING_ERROR_ACCOUNT_MISSING (201)
#define TEMBOO_MONITORING_ERROR_CHOREO_MISSING (203)
#define TEMBOO_MONITORING_ERROR_APPKEY_NAME_MISSING (205)
#define TEMBOO_MONITORING_ERROR_APPKEY_MISSING (207)
#define TEMBOO_MONITORING_ERROR_DEVICEID_MISSING (209)
#define TEMBOO_MONITORING_ERROR_REQUEST_TOO_LARGE (251)
#define TEMBOO_MONITORING_ERROR_NOT_CONNECTION_TIME (253)
class TembooMessaging : public Process {
public:
TembooMessaging(TembooSensor** sensors, int pinTableSize);
void begin();
void setAccountName(const String& accountName);
void setAccountName(const char* accountName);
void setAppKeyName(const String& appKeyName);
void setAppKeyName(const char* appKeyName);
void setAppKey(const String& appKey);
void setAppKey(const char* appKey);
void setDeviceID(const String& appKey);
void setDeviceID(const char* appKey);
int initiateConnection();
WSMessageRequest poll();
static void sendData(int pin, int pinVal, bool requestResponse=false);
void sendData(int pin, float pinVal);
void updatePinValue(int pinNum, int pinVal);
int retrievePinValue(int pinNum);
int addTembooSensor(TembooSensor* sensor);
void setSensorsToDefaultState();
bool isConnected();
private:
const char* m_accountName;
const char* m_appKey;
const char* m_appKeyName;
const char* m_deviceID;
bool m_connectionStatus;
int m_sensorTableSize;
int m_sensorTableDepth;
long int m_connectionAttemptTime;
TembooSensor** m_sensorTable;
unsigned long m_lastPingTime;
void startMessaging();
void disconnectWSConnection(int closeCode, const char* closeReason);
void sendError(const char* errorText);
void sendPing();
};
#endif