evectis / temboo

Temboo Arduino Library v1.2 with added support for Spark Core

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Temboo Arduino Library with Spark support

This repository holds a modified version of the Temboo Arduino library v1.2 with support for spark core. Instructions to build an application give here are for CLI mode. So please consult the spark.io web site for details how to install the CLI tools for the Spark Core.

Author: The Temboo Spark Core support was added by Karl N Kaiser. Please check-out my DYI IoT blog under http://bentuino.com

Installation

  1. Get the Spark Core firmware:

%git clone https://github.com/spark/core-firmware.git

%git clone https://github.com/spark/core-common-lib.git

%git clone https://github.com/spark/core-communication-lib.git

  1. Note: This step is only required with older firmware - Go to core-firmware/inc and uncomment the line 54 of file spark_wiring_ipaddress.h with your favorite editor

    // Overloaded cast operator to allow IPAddress objects to be used where a pointer

    // to a four-byte uint8_t array is expected

    //operator uint32_t() { return ((uint32_t)_address); };

    //bool operator==(const IPAddress& addr) { return (((uint32_t)_address)) == (((uint32_t)addr._address)); };

    bool operator==(const uint8_t* addr);

  2. Save your TembooAccount.h you generated with DeviceCoder to temboo-arduino-library-1.2\Temboo

  3. Build application:

%cd core-firmware/build

%make -f makefile.temboo clean all

  1. Connect your Spark Core to your computer via a USB cable

  2. Push both buttons, release Reset button and continue holding the other button until RGB-LED lights up yellow

  3. Download application into Spark Core

%make -f makefile.temboo program-dfu

Example

Two simple Spark application examples are included:

core-firmware/src/application_gxls.cpp - Example demonstrates the Temboo library with Google Spreadsheet

core-firmware/src/application_gmail.cpp - Example demonstrates the Temboo library with Gmail

to change the example that is compiled into the spark core edit the first line in the core-firmware/src/build.mk file:

CPPSRC += $(TARGET_SRC_PATH)/application.cpp => CPPSRC += $(TARGET_SRC_PATH)/application_gxls.cpp

or

CPPSRC += $(TARGET_SRC_PATH)/application_gmail.cpp

Testing

This version SHA eb93840 was tested with web based Spark SDK using SPARK FIRMWARE V0.3.4 (OCT 21) CHANGELOG:

  • core-firmware 6c98a17
  • core-communication-lib d824a68
  • core-common-lib 3cdaed3

Building this code was tested under Mac OS X 10.10 Yosemite following Spark's tool installation

Building this code was tested under Windows 8.1 using cygwin and the MINGW version of the ARM GCC compiler tool chain.

About

Temboo Arduino Library v1.2 with added support for Spark Core

License:Other


Languages

Language:C++ 93.5%Language:Makefile 3.3%Language:C 2.3%Language:Arduino 0.5%Language:JavaScript 0.4%