Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
Temboo KEYWORD1
TembooMQTTEdgeDevice KEYWORD1
TembooCoAPEdgeDevice KEYWORD1
TembooYunShield KEYWORD1

#######################################
# Datatypes (KEYWORD2)
Expand All @@ -17,6 +18,7 @@ TembooCoAPEdgeDevice KEYWORD1
TembooChoreo KEYWORD2
TembooCoAPChoreo KEYWORD2
TembooMQTTChoreo KEYWORD2
TembooYunShieldChoreo KEYWORD2

#######################################
# Methods and Functions (KEYWORD2)
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ paragraph=Use this library to connect your Arduino or Genuino board to Temboo, m
category=Communication
url=http://www.temboo.com/arduino
architectures=*
version=1.1.4
version=1.1.6
core-dependencies=arduino (>=1.5.0)
55 changes: 55 additions & 0 deletions src/TembooYunShield.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
###############################################################################
#
# Temboo Arduino library
#
# Copyright 2015, 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 TEMBOOYUNSHIELD_H_
#define TEMBOOYUNSHIELD_H_

#include <Arduino.h>

///////////////////////////////////////////////////////
// BEGIN ARDUINO YUN SHIELD SUPPORT
///////////////////////////////////////////////////////

#include <Process.h>

class TembooYunShieldChoreo : public Process {

public:
void begin() {Process::begin("temboo");}
void setAccountName(const String& accountName) { addParameter("-a" + accountName);}
void setAppKeyName(const String& appKeyName) { addParameter("-u" + appKeyName);}
void setAppKey(const String& appKey) { addParameter("-p" + appKey);}
void setChoreo(const String& choreo) { addParameter("-c" + choreo);}
void setCredential(const String& credentialName) { addParameter("-e" + credentialName);}
void setSavedInputs(const String& savedInputsName) { addParameter("-e" + savedInputsName);}
void setProfile(const String& profileName) { addParameter("-e" + profileName);}
void addInput(const String& inputName, const String& inputValue) { addParameter("-i" + inputName + ":" + inputValue);}
void addOutputFilter(const String& filterName, const String& filterPath, const String& variableName) { addParameter("-o" + filterName + ":" + filterPath + ":" + variableName);}
void setSettingsFileToWrite(const String& filePath) { addParameter("-w" + filePath);}
void setSettingsFileToRead(const String& filePath) { addParameter("-r" + filePath);}
void setGatewayAddress(const String& addr) { addParameter("-s" + addr);}

};



#endif //TEMBOOYUNSHIELD_H_
5 changes: 3 additions & 2 deletions src/utility/TembooSession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ int TembooSession::executeChoreo(
uint32toa((uint32_t)TembooSession::getTime(), buffer);

uint16_t contentLength = getAuth(fmt, appKeyValue, buffer, auth);

m_client.stop();
if (m_client.connected()) {
m_client.stop();
}
m_client.flush();

int connected = 0;
Expand Down