SPARK CORE A DIY guide for KingMakers KANDARP JANI DAN TEBBS

Size: px
Start display at page:

Download "SPARK CORE A DIY guide for KingMakers KANDARP JANI DAN TEBBS"

Transcription

1 SPARK CORE A DIY guide for KingMakers KANDARP JANI (janikd@hotmail.com) DAN TEBBS

2 What is the Spark Core? A Wi-Fi based module for connecting sensors, controllers and other gizmos to the Internet. The Core includes the powerful STM32F103CB ARM 32-bit Cortex -M3 CPU Core 72Mhz operating frequency, 1.25 DMIPS/MHz (Dhrystone 2.1) 128KB of Flash memory 20KB of SRAM 12 bit ADC USB 2.0 full-speed interface USART, SPI and I2C interfaces JTAG Debug mode Spark Core Development is Arduino-like (gotcha is: most libs won't work without porting) o Small, low-cost, low-power computer that can run a single application. o Has a set of "pins" GPIO (General Purpose Input and Output) pins, both digital and analog. D0 to D7 A0 to A7 o Supports Serial (also called UART), SPI, or I2C (also called Wire).

3 Has a Wi-Fi module, Uses SmartConfig to receive SSID & Password from the Spark Core Phone App Connects it to your local Wi-Fi network using the SSID/Password Establishes a connection to the Spark Cloud. (REST API)

4 Buttons The RESET button - Put the Core in a hard reset, effectively powering down and then re-powering the micro-controller The MODE Button - Smart Config mode - Clear the Wifi-Network s from Core s memory - Bootloader mode for flashing new firmware via USB - Factory reset mode for bringing the core to original firmware

5 LEDs - The small blue LED is the user LED. It is connected to D7. - The larger LED in the middle is a full-color RGB LED which always shows the status of the Core's Wi-Fi / internet connection. The RGB LED states: Flashing blue Solid blue Flashing green Flashing cyan High-speed flashing cyan Slow breathing cyan Flashing magenta Listening mode, waiting for network information. Smart Config complete, network information found. Connecting to local Wi-Fi network. Connecting to Spark Cloud. Spark Cloud handshake. Successfully connected to Spark Cloud. Updating firmware.

6 Pins

7 SETUP - Step 1 - Phone or Tablet Setting up Spark on Phone 1. Go to the Google Play Store or iphone apps 2. Search for Spark Core a Install the app. 4. Sign up for an account simply using an address.

8 1. Power the Core SETUP - Step 2 - Core 2. Make sure it is blinking blue. a. If not - Hold down the MODE button until it starts blinking blue, then continue.

9 SETUP - Step 3 WIFI / CLAIMING 1. Make sure your phone is connected to the WiFi you want to use 2. Click on the wifi button in the app 3. SSID of the phone should show up on the app 4. Enter your password and 5. click CONNECT! 6. Be PATIENT, Observe the RGB LED on your core 7. If this works, you have now claimed this core and only your account has access to it. This may take a little while- but be patient. It should go through the following colors:

10 The RGB LED states: Flashing blue Solid blue Flashing green Flashing cyan High-speed flashing cyan Slow breathing cyan Flashing magenta Listening mode, waiting for network information. Smart Config complete, network information found. Connecting to local Wi-Fi network. Connecting to Spark Cloud. Spark Cloud handshake. Successfully connected to Spark Cloud. Updating firmware.

11 SETUP - Step 4 - The Tinker Screen

12 LETS TINKER Blink an LED with Tinker 1. Tap D7 2. Then digitalwrite in the popup. 3. Then tap the D7 circle The tiny blue LED should turn off and on.

13 SETUP - Step 5 - Web IDE Go to Spark.io/build 1. Sign in using the same user name ID ( ) you used earlier.

14 See Your Core Via The Web 1. CLICK on the on the bottom left 2. CLICK on the > (GREATER THAN ICON) 3. Device ID: identifies the device uniquely

15

16 Blink Your LED via THE WEB 1. Click on the CODE ICON 2. Click "BLINK AN LED" under the Example apps title. 3. Brings up the familiar Arduino IDE like Code environment.

17 4. Click FORK THIS SAMPLE

18 FLASH THE FIRMWARE FROM THE CLOUD 1. Click on verify if you want to verify that the code compile s 2. Click on the flash button 3. Spark Cores should start flashing magenta, then more magenta, then green, then cyan (fast), then cyan (breathing)

19 REST API (Cloud API ) Cloud Functions 1. Allows reading the value of a variable exposed in the spark firmware via the Cloud using HTTP GET GET /v1/devices/{device_id}/{variable}. 2. Allows calling a function that you implement in the spark firmware via the Cloud using HTTP POST POST /v1/devices/{device_id}/{function}

20 Reading a variable from Spark Core via the Cloud Step 1: Expose the Variable via Spark.variable() Expose a variable through the Spark Cloud so that it can be called with: // EXAMPLE USAGE int analogvalue = 0; double tempc = 0; char *message = "my name is spark"; void setup() { // variable name max length is 12 characters long Spark.variable("analogvalue", &analogvalue, INT); Spark.variable("temp", &tempc, DOUBLE); Spark.variable("mess", message, STRING); pinmode(a0, INPUT); } void loop()

21 { } // Read the analog value of the sensor (TMP36) analogvalue = analogread(a0); //Convert the reading into degree celcius tempc = (((analogvalue * 3.3)/4095) - 0.5) * 100; delay(200);

22 STEP 2: Get your API TOKEN.

23 STEP 3: Read from the Cloud OPTION 1: 1. Enter your CORE ID 2. Enter your API Token

24 STEP 3: Read from the Cloud with CURL OPTION 2: USE CURL 1. Download : 2. Open cmd.exe on windows and run the following commands # Core ID is abcdef # Your access token is curl " access_token= " curl " access_token= " curl " access_token= " # In return you'll get something like this: my name is spark

25 Calling a function on Spark Core via the Cloud Spark.function() Expose a function through the Spark Cloud so that it can be called with POST device/{function}. int brewcoffee(string command); void setup() { // register the Spark function Spark.function("brew", brewcoffee); } void loop() { // this loops forever } // this function automagically gets called upon a matching POST request

26 int brewcoffee(string command) { // look for the matching argument "coffee" <-- max of 64 characters long if(command == "coffee") { // do something here activatewaterheater(); activatewaterpump(); return 1; } else return -1; } COMPLEMENTARY API CALL POST /v1/devices/{device_id}/{function} # EXAMPLE REQUEST curl \ -d access_token= \ -d "args=coffee"

27 Appendix Troubleshooting Wi-Fi Setup - It needs to be blinking blue before attempting setup, but it is green or cyan: Hold down the Mode Button for 10 sec. The LED will change to blue. The LED will do several quick flashes. At this point it is ready for a Wi-Fi Setup attempt. The core never progresses past the blinking green stage: Did you select the right Wi-Fi network SSID? Did you use the correct password for that network? Is your phone/tablet device already connected to that network? Claiming the Core - The core is slow blinking cyan, but still doesn't show in the app: This can happen if the core is already claimed on someone else's account. Have that person sign in to the app, and release that core. Then try again to claim the core from your own app and account.

ArduCAM CC3200 UNO board

ArduCAM CC3200 UNO board ArduCAM CC3200 UNO board User Guide Rev 1.2, Mar 2017 Table of Contents 1 Introduction... 2 2 Features... 3 3 Pin Definition... 4 4 Getting Started CC3200 with Energia... 5 4.1 Out of the Box Test... 5

More information

Documentation for Wifi-Enabled Data Logging - System Control By: Jesse Jenkins

Documentation for Wifi-Enabled Data Logging - System Control By: Jesse Jenkins Documentation for Wifi-Enabled Data Logging - System Control By: Jesse Jenkins Code for this project is found on Github: https://github.com/hedronuser/metabolizer For getting started with Blynk, check

More information

How to connect my TP-Link Smart Plug to my home network via Kasa?

How to connect my TP-Link Smart Plug to my home network via Kasa? How to connect my TP-Link Smart Plug to my home network via Kasa? This Article Applies to: TP-Link smart devices can be controlled by Kasa App locally and remotely. By this means we can easily make the

More information

ESPino - Specifications

ESPino - Specifications ESPino - Specifications Summary Microcontroller ESP8266 (32-bit RISC) WiFi 802.11 (station, access point, P2P) Operating Voltage 3.3V Input Voltage 4.4-15V Digital I/O Pins 9 Analog Input Pins 1 (10-bit

More information

Lesson 6 Intel Galileo and Edison Prototype Development Platforms. Chapter-8 L06: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 6 Intel Galileo and Edison Prototype Development Platforms. Chapter-8 L06: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 6 Intel Galileo and Edison Prototype Development Platforms 1 Intel Galileo Gen 2 Boards Based on the Intel Pentium architecture Includes features of single threaded, single core and 400 MHz constant

More information

INNOV.NET PTY LTD. User guide

INNOV.NET PTY LTD. User guide User guide Version1 2016 0 Contents Compatibility... 1 What s in the package?... 1 Setup the RM Pro... 1 Meaning of the LED indicators... 2 Setup e-control on your smartphone... 2 Can I program a remote

More information

FireBeetle ESP8266 IOT Microcontroller SKU: DFR0489

FireBeetle ESP8266 IOT Microcontroller SKU: DFR0489 FireBeetle ESP8266 IOT Microcontroller SKU: DFR0489 Introduction DFRobot FireBeetle is a series of low-power-consumption development hardware designed for Internet of Things (IoT). Firebeetle ESP8266 is

More information

Lesson 5 Arduino Prototype Development Platforms. Chapter-8 L05: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 5 Arduino Prototype Development Platforms. Chapter-8 L05: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 5 Arduino Prototype Development Platforms 1 Arduino Boards, Modules And Shields Popular AVR MCU based products Each board has clear markings on the connection pins, sockets and in-circuit connections

More information

Thank you for purchasing the Mobile WiFi. This Mobile WiFi brings you a high speed wireless network connection.

Thank you for purchasing the Mobile WiFi. This Mobile WiFi brings you a high speed wireless network connection. Quick Start Thank you for purchasing the Mobile WiFi. This Mobile WiFi brings you a high speed wireless network connection. This document will help you understand your Mobile WiFi so you can start using

More information

Digispark DIY: the Smallest USB Arduino

Digispark DIY: the Smallest USB Arduino materiały pobrane ze strony: https://www.instructables.com/id/digispark-diy-the-smallest-usb-arduino/ 2017-06-21 Digispark DIY: the Smallest USB Arduino by smching in arduino Digispark is an ATtiny85 based

More information

User Manual.

User Manual. 1 Zebora Wi-Fi SmartPlug User Manual Email: support@zeboragroup.com 1. Information Back Front 1. Red LED (Power) 2. Blue LED (Wi-Fi) 3. Power On/Off Button (Press and hold~5 sec to reset) 4. AC Output

More information

5.1 Configure each Sensor Pin Rename Set Rules Export Data Switching Nodes... 25

5.1 Configure each Sensor Pin Rename Set Rules Export Data Switching Nodes... 25 Hi-Gate User Manual Hi-Gate User Manual Hi-Gate User Manual Contents 1 Introduction... 3 1.1 Hi-Gate... 3 1.1.1 What is Hi-Gate... 3 1.1.2 Specifications... 3 1.1.3 Features... 4 1.2 Hi-Node... 5 1.2.1

More information

XNUCLEO-F030R8, Improved STM32 NUCLEO Board

XNUCLEO-F030R8, Improved STM32 NUCLEO Board XNUCLEO-F030R8, Improved STM32 NUCLEO Board STM32 Development Board, Supports Arduino, Compatible with NUCLEO-F030R8 XNUCLEO-F030R8 Features Compatible with NUCLEO-F030R8, onboard Cortex-M0 microcontroller

More information

ARDUINO YÚN MINI Code: A000108

ARDUINO YÚN MINI Code: A000108 ARDUINO YÚN MINI Code: A000108 The Arduino Yún Mini is a compact version of the Arduino YUN OVERVIEW: Arduino Yún Mini is a breadboard PCB developed with ATmega 32u4 MCU and QCA MIPS 24K SoC CPU operating

More information

Smart Plug User Guide

Smart Plug User Guide Smart Plug User Guide Version 1.2 Copyright 2016 About This Guide This document introduces to users an example of ESP IOT Platform applications, the Espressif Smart Plug. The document includes the following

More information

INNOV.NET PTY LTD. User guide

INNOV.NET PTY LTD. User guide User guide 0 Contents Compatibility... 1 What s in the package?... 1 Add device... 2 Legend... 2 Meaning of the LED indicators... 2 Setup the RM Mini 3... 3 Setup e-control on your smartphone... 3 How

More information

Android SmartTV initial manual

Android SmartTV initial manual Android SmartTV initial manual This guide contains explicit steps to follow in activating the Android SmartTV and navigate through the android based menu. Table of contents 1. Remote control 2.Switch to

More information

How to connect my TP-LINK Smart Switch to my home network via Kasa?

How to connect my TP-LINK Smart Switch to my home network via Kasa? How to connect my TP-LINK Smart Switch to my home network via Kasa? This Article Applies to: HS200 Kasa APP is designed to control TP-Link Smart Device both locally and remotely. With Kasa, you can easily

More information

Garage Door Control Button. What s inside: Quickstart Guide Model No. WGO x Garage Door Control Button

Garage Door Control Button. What s inside: Quickstart Guide Model No. WGO x Garage Door Control Button Add-On Device Quickstart Guide 1 Garage Door Control Button Quickstart Guide Model No. WGO2001 What s inside: 1x Garage Door Control Button 1x Power Adapter 2x U-fork Wires Mounting Accessories and Double-sided

More information

SEG-X3 Smart Gateway. Quick Start Guide

SEG-X3 Smart Gateway. Quick Start Guide SEG-X3 Smart Gateway Quick Start Guide 1. Introduction The SEG-X3 Smart Gateway acts as a central platform for your smart home system. It allows you to add ZigBee devices into the system while at the same

More information

ARDUINO PRIMO. Code: A000135

ARDUINO PRIMO. Code: A000135 ARDUINO PRIMO Code: A000135 Primo combines the processing power from the Nordic nrf52 processor, an Espressif ESP8266 for WiFi, as well as several onboard sensors and a battery charger. The nrf52 includes

More information

ARDUINO YÚN Code: A000008

ARDUINO YÚN Code: A000008 ARDUINO YÚN Code: A000008 Arduino YÚN is the perfect board to use when designing connected devices and, more in general, Internet of Things projects. It combines the power of Linux with the ease of use

More information

ARDUINO INDUSTRIAL 1 01 Code: A000126

ARDUINO INDUSTRIAL 1 01 Code: A000126 ARDUINO INDUSTRIAL 1 01 Code: A000126 The Industrial 101 is a small form-factor YUN designed for product integration. OVERVIEW: Arduino Industrial 101 is an Evaluation board for Arduino 101 LGA module.

More information

Adafruit Feather nrf52840 Express

Adafruit Feather nrf52840 Express Adafruit Feather nrf52840 Express PRODUCT ID: 4062 The Adafruit Feather nrf52840 Express is the new Feather family member with Bluetooth Low Energy and native USB support featuring the nrf52840! It's our

More information

Thank you for choosing the LTE Mobile WiFi Smart. The LTE Mobile WiFi Smart allows you to access a wireless network at high speeds.

Thank you for choosing the LTE Mobile WiFi Smart. The LTE Mobile WiFi Smart allows you to access a wireless network at high speeds. Thank you for choosing the LTE Mobile WiFi Smart. The LTE Mobile WiFi Smart allows you to access a wireless network at high speeds. Note: This guide briefly describes the appearance of the LTE Mobile WiFi

More information

Downloaded from manuals search engine. Quick Start

Downloaded from   manuals search engine. Quick Start Quick Start Thank you for purchasing the Mobile WiFi. This Mobile WiFi brings you a high speed wireless network connection. This document will help you understand your Mobile WiFi so you can start using

More information

Cassia Hub Bluetooth Router. ios & ANDROID APPLICATION GUIDE

Cassia Hub Bluetooth Router. ios & ANDROID APPLICATION GUIDE Cassia Hub Bluetooth Router ios & ANDROID APPLICATION GUIDE Items Included. Cassia Hub (). Power Adapter (). User Guide () Product Inputs / Controls. LED indicator. USB. Ethernet. Power (VDC) GETTING STARTED

More information

mconnect CDMCM-210 User Guide v1.2.0

mconnect CDMCM-210 User Guide v1.2.0 mconnect CDMCM-210 User Guide v1.2.0 mconnect CDMCM-210 Evaluation Kit Packages 3 4 2 5 7 1 CDMCM-210 module 2 EVM-MCM-21 Evaluation Board 3 External Antenna 4 Antenna Connector Cable 5 On-Board WiFi module

More information

RAK WisCam. Quick Start Guide V1.4

RAK WisCam. Quick Start Guide V1.4 RAK WisCam Quick Start Guide V1.4 Shenzhen Rakwireless Technology Co., Ltd www.rakwireless.com info@rakwireless.com 2015 Rakwireless Reserves All Rights The Name Of Actual Companies And Products Mentioned

More information

Supplementary Manual for WSD-1500H-W WiFi Electric Smoker Controller

Supplementary Manual for WSD-1500H-W WiFi Electric Smoker Controller AUBER INSTRUMENTS Instruction Manual WWW.AUBERINS.COM Supplementary Manual for WSD-00H-W WiFi Electric Smoker Controller Version.0 (Nov, 207). Overview Auber s WSD-00H-W is a temperature controlling device

More information

ARROW ARIS EDGE Board User s Guide 27/09/2017

ARROW ARIS EDGE Board User s Guide 27/09/2017 ARROW ARIS EDGE Board User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and is subject

More information

WiFi dashcam Roadview 16GB

WiFi dashcam Roadview 16GB WiFi dashcam Roadview 16GB EAN: 8719326008493 Thank you for buying our product. Before using the product, we suggest you refer to this user manual in order to get the best possible user experience. 1 1.

More information

EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG

EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG EMBEDDED SYSTEMS WITH ROBOTICS AND SENSORS USING ERLANG Adam Lindberg github.com/eproxus HARDWARE COMPONENTS SOFTWARE FUTURE Boot, Serial console, Erlang shell DEMO THE GRISP BOARD SPECS Hardware & specifications

More information

Quick Installation Guide

Quick Installation Guide Quick Installation Guide NEXTAV TM Cloud Hub - Table of Contents Product Features... 1 Ways to Connect... 1 Hardware and Accessories... 2 Product Parameters... 2 Minimum Hardware Requirements... 2 Product

More information

ARDUINO M0 PRO Code: A000111

ARDUINO M0 PRO Code: A000111 ARDUINO M0 PRO Code: A000111 The Arduino M0 Pro is an Arduino M0 with a step by step debugger With the new Arduino M0 Pro board, the more creative individual will have the potential to create one s most

More information

Photon RedBoard Hookup Guide

Photon RedBoard Hookup Guide Page 1 of 13 Photon RedBoard Hookup Guide Introduction The SparkFun Photon RedBoard is an over-the-air-programmable WiFi development board that is compatible with the Particle cloud. At the heart of the

More information

Intel Galileo gen 2 Board

Intel Galileo gen 2 Board Intel Galileo gen 2 Board The Arduino Intel Galileo board is a microcontroller board based on the Intel Quark SoC X1000, a 32- bit Intel Pentium -class system on a chip (SoC). It is the first board based

More information

TANGIBLE MEDIA & PHYSICAL COMPUTING INTRODUCTION TO ARDUINO

TANGIBLE MEDIA & PHYSICAL COMPUTING INTRODUCTION TO ARDUINO TANGIBLE MEDIA & PHYSICAL COMPUTING INTRODUCTION TO ARDUINO AGENDA ARDUINO HARDWARE THE IDE & SETUP BASIC PROGRAMMING CONCEPTS DEBUGGING & HELLO WORLD INPUTS AND OUTPUTS DEMOS ARDUINO HISTORY IN 2003 HERNANDO

More information

mbed Kit User Guide of NQ62x daughter board

mbed Kit User Guide of NQ62x daughter board mbed Kit User Guide of NQ62x daughter board mbed Kit User Guide Sheet 1 of 10 Nov 17, 2016 Index: 1. Introduction... 4 1.1 Minimum Requirements... 4 2. Kit Content... 4 2.1 DELTA DFXE-SM001 mbed kit hardware

More information

SMART WI-FI OUTDOOR PLUG START GUIDE

SMART WI-FI OUTDOOR PLUG START GUIDE SMART WI-FI OUTDOOR PLUG START GUIDE Thank you for purchasing your MERKURY smart home product. Get started using your new devices by downloading Geeni, one convenient app that manages everything straight

More information

To ensure strong WiFi connectivity, you may need a WiFi Extender. Network Connection Guide

To ensure strong WiFi connectivity, you may need a WiFi Extender. Network Connection Guide To ensure strong WiFi connectivity, you may need a WiFi Extender. Network Connection Guide SkyTrak can be connected to your ipad in two ways: Via a direct Wi-Fi Connection OR Through your home network/wireless

More information

Husarion CORE2. Husarion CORE2 is a development board for Internet-connected automation & robotic devices.

Husarion CORE2. Husarion CORE2 is a development board for Internet-connected automation & robotic devices. Husarion CORE2 Husarion CORE2 is a development board for Internet-connected automation & robotic devices. CORE2 Development board for Internet connected automation & robotic devices. compatible with Husarion

More information

[MG2420] MCU Module Datasheet. (No. ADS0705) V1.0

[MG2420] MCU Module Datasheet. (No. ADS0705) V1.0 [MG2420] MCU Module Datasheet (No. ADS0705) V1.0 REVISION HISTORY Version Date Description VER.1.0 2013.10.22 First version release. V1.0 Page:2/17 CONTENTS 1. INTRODUCTION... 4 1.1. DEFINITIONS... 4 2.

More information

Installation. Manual

Installation. Manual Installation Manual Thank you for purchasing Nexx Garage! Installation will be quick and easy and should take about 30 minutes to complete. For additional installation instructions, please visit our website

More information

HSPA+ WiFi Router with Voice

HSPA+ WiFi Router with Voice NETCOMM LIBERTY SERIES HSPA+ WiFi Router with Voice 3G22WV Quick Start Guide This router has been designed to be placed on a desktop. All of the cables exit from the rear for better organization. The LED

More information

nettalk DUO WiFi Configuration (using an Android smartphone)

nettalk DUO WiFi Configuration (using an Android smartphone) nettalk DUO WiFi Configuration (using an Android smartphone) Step 1. Activate your Device a. Locate your username and password inside of the box. b. Go to www.nettalk.com/activate and follow the activation

More information

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM FRDM-KL02Z User Manual Rev. 0 Freescale Semiconductor Inc. FRDMKL02ZUM 1. Overview The Freescale Freedom development platform is an evaluation and development tool ideal for rapid prototyping of microcontroller-based

More information

Mi Home Security Camera Connection Guide. (ios)

Mi Home Security Camera Connection Guide. (ios) Mi Home Security Camera Connection Guide (ios) 1. Navigate to the APP Store with your iphone and search for Mi Home, or scan the QR code below to download and install Mi Home APP. 2. Plug in the Mi Home

More information

Home automation hub installation and setup guide

Home automation hub installation and setup guide installation and setup guide is placed in a closed off area, the wireless signal strength may be compromised. Note: To prevent radio frequency (RF) interference, we recommend that you place the away from

More information

IDUINO for maker s life. User Manual. For IDUINO development Board.

IDUINO for maker s life. User Manual. For IDUINO development Board. User Manual For IDUINO development Board 1.Overview 1.1 what is Arduino? Arduino is an open-source prototyping platform based on easy-to-use hardware and software. Arduino boards are able to read inputs

More information

Pg 3. Specifications. Hardware Required

Pg 3. Specifications. Hardware Required 1 NodeMCU Dev Board is based on widely explored esp8266 System on Chip from Express if. It combined features of WIFI access point and station + microcontroller and uses simple LUA based programming language.

More information

Configuration of AIO GATEWAY V5 via ConfigTool NEO

Configuration of AIO GATEWAY V5 via ConfigTool NEO Configuration of AIO GATEWAY V5 via ConfigTool NEO If you want to use your AIO GATEWAY V5 in combination with AIO CREATOR NEO, it is necessary to configure the gateway and connect it to your network. For

More information

Smart Plug Software Design Reference Manual

Smart Plug Software Design Reference Manual NXP Semiconductors Document Number: DRM158 Design Reference Manual Rev. 0, 03/2017 Smart Plug Software Design Reference Manual 1. Introduction This design reference manual describes a solution for a smart

More information

THE SHADE STORE APP SETUP INSTRUCTIONS

THE SHADE STORE APP SETUP INSTRUCTIONS SETUP INSTRUCTIONS ABOUT THE APP: The Shade Store app allows for control of your motorized window treatments through your smartphone/tablet. The app allows for: Individual and group control Scene control

More information

keyestudio Keyestudio MEGA 2560 R3 Board

keyestudio Keyestudio MEGA 2560 R3 Board Keyestudio MEGA 2560 R3 Board Introduction: Keyestudio Mega 2560 R3 is a microcontroller board based on the ATMEGA2560-16AU, fully compatible with ARDUINO MEGA 2560 REV3. It has 54 digital input/output

More information

The Riverside Robotic Society June 2016 ESP8266

The Riverside Robotic Society June 2016 ESP8266 ESP8266 ESP8266 The ESP8266 is a low-cost Wi-Fi chip with full TCP/IP stack, radio and microcontroller produced by Shanghai-based Chinese manufacturer, Espressif. Features: SOC (System on a Chip) 32-bit

More information

Seeeduino LoRaWAN. Description

Seeeduino LoRaWAN. Description Seeeduino LoRaWAN SKU 102010128 LoRaWAN Class A/C Ultra long range communication Ultra low power consumption Arduino programming (based on Arduino Zero bootloader) Embeded with lithim battery management

More information

Supplementary Manual for TH220-W Wireless Temperature and Humidity Controller

Supplementary Manual for TH220-W Wireless Temperature and Humidity Controller AUBER INSTRUMENTS Instruction Manual WWW.AUBERINS.COM Supplementary Manual for TH220-W Wireless Temperature and Humidity Controller Version 1.0 (Feb, 2017) 1. Overview Auber s TH220-W is a temperature

More information

Installation. SIM card. microsd card (optional)

Installation. SIM card. microsd card (optional) Quick Start Installation SIM card 1 microsd card (optional) 2 2 1 1 2 1 Wi-Fi connection SSID: xxxx Wi-Fi Key: xxxx Press the MENU button to access the menu and view the current SSID and Wi-Fi key on

More information

WF121: b/g/n module. Product Presentation

WF121: b/g/n module. Product Presentation WF121: 802.11 b/g/n module Product Presentation Topics Key features Benefits WF121 overview The Wi-Fi software stack Evaluation tools Certifications Use cases Key features WF121: Key features 802.11 b/g/n

More information

IDUINO for maker s life. User Manual. For IDUINO Mega2560 Board(ST1026)

IDUINO for maker s life. User Manual. For IDUINO Mega2560 Board(ST1026) User Manual For IDUINO Mega2560 Board(ST1026) 1.Overview 1.1 what is Arduino? Arduino is an open-source prototyping platform based on easy-to-use hardware and software. Arduino boards are able to read

More information

MYD-SAMA5D3X Development Board

MYD-SAMA5D3X Development Board MYD-SAMA5D3X Development Board MYC-SAMA5D3X CPU Module as Controller Board DDR2 SO-DIMM 200-pin Signals Consistent with Atmel's Official Board 536MHz Atmel SAMA5D3 Series ARM Cortex-A5 Processors 512MB

More information

Introduction to Arduino. Wilson Wingston Sharon

Introduction to Arduino. Wilson Wingston Sharon Introduction to Arduino Wilson Wingston Sharon cto@workshopindia.com Physical computing Developing solutions that implement a software to interact with elements in the physical universe. 1. Sensors convert

More information

Installing the Linksys app on your Android device via the Google Play Store and Google Play Website

Installing the Linksys app on your Android device via the Google Play Store and Google Play Website User Guide Installing the Linksys app on your Android device via the Google Play Store and Google Play Website The Linksys app is a free mobile application that allows you to securely access your home

More information

MiCOKit-3166 Development Kit Hardware Manual

MiCOKit-3166 Development Kit Hardware Manual Hardware Engineering Department Working Group Track Number: Jing Minhua MXCHIP Co., Ltd Version: 1.1 July 2017 Category: Reference Manual Open MiCOKit-3166 Development Kit Hardware Manual Abstract MiCOKit

More information

Introduction to Microprocessors: Arduino

Introduction to Microprocessors: Arduino Introduction to Microprocessors: Arduino tswsl1989@sucs.org October 7, 2013 What is an Arduino? Open Source Reference designs for hardware Firmware tools + GUI Mostly based around 8-bit Atmel AVR chips

More information

WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107

WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107 WiFiBee MT7681 (Arduino WiFi Wireless Programming) SKU: TEL0107 Introduction The WiFi Bee MT7681 is an Arduino WiFi XBee module based on the MT7681 serial Wi-Fi module. It is compatible with an XBee slot,

More information

Sten-SLATE ESP Kit. Description and Programming

Sten-SLATE ESP Kit. Description and Programming Sten-SLATE ESP Kit Description and Programming Stensat Group LLC, Copyright 2016 Overview In this section, you will be introduced to the processor board electronics and the arduino software. At the end

More information

Lab 01 Arduino 程式設計實驗. Essential Arduino Programming and Digital Signal Process

Lab 01 Arduino 程式設計實驗. Essential Arduino Programming and Digital Signal Process Lab 01 Arduino 程式設計實驗 Essential Arduino Programming and Digital Signal Process Arduino Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's

More information

Arduino Platform Part I

Arduino Platform Part I Arduino Platform Part I Justin Mclean Class Software Email: justin@classsoftware.com Twitter: @justinmclean Blog: http://blog.classsoftware.com Who am I? Director of Class Software for almost 15 years

More information

SP-1101W / SP-2101W with EdiLife Quick Installation Guide

SP-1101W / SP-2101W with EdiLife Quick Installation Guide SP-1101W / SP-2101W with EdiLife Quick Installation Guide 08-2018 / v1.0 CONTENTS I Introduction... 1 II Smart Plug Setup... 2 II-1 Package Contents... 2 II-2 Hardware Installation... 3 III EdiLife App

More information

Panoramic Talking Camera

Panoramic Talking Camera Panoramic Talking Camera IPC2201 home8alarm.com 1-844-800-6482 support@home8alarm.com 1 Table of Contents Chapter 1. Introduction... 1 1.1 System Requirement... 1 Chapter 2. Hardware Overview... 2 Chapter

More information

Bluno Mega 2560 (SKU:DFR0323)

Bluno Mega 2560 (SKU:DFR0323) Bluno Mega 2560 (SKU:DFR0323) From Robot Wiki Contents 1 Introduction 2 Specification 3 Pin Out 4 Supported Android Devices 5 Supported Apple Devices 6 Tutorial o 6.1 More advantages o 6.2 The serial port

More information

CONNECTING SERVICES IN IOT DESIGN

CONNECTING SERVICES IN IOT DESIGN CONNECTING SERVICES IN IOT DESIGN RELOC s.r.l. Conference Lake Garda, 7-8 April 2016 Internet-of-Things Evolution of the Internet in which everyday physical objects are seamlessly integrated into the information

More information

G120 Module Specifications

G120 Module Specifications G120 Module is a surface-mount System on Module (SoM) that runs.net Micro Framework software platform; a tiny version of Microsoft.NET framework. The value of G120 Module is not only in the hardware capabilities

More information

Introduction. Built-in speaker. Infrared lights. Camera lens. Reset button. Indicator light. Micro- USB port for power supply.

Introduction. Built-in speaker. Infrared lights. Camera lens. Reset button. Indicator light. Micro- USB port for power supply. Axel USER MANUAL Contents Introduction 4 LED Indicators 5 What s Included 6 Wi-Fi Requirements 7 Mobile Device Requirements 7 Download the Momentum App 8 Pairing 9 Pairing additional Momentum Devices 11

More information

PV-RC300W. WI-FI 1.3M pix Cam Matchbox DVR Quick Guide

PV-RC300W. WI-FI 1.3M pix Cam Matchbox DVR Quick Guide PV-RC300W WI-FI 1.3M pix Cam Matchbox DVR Quick Guide A. Regarding the Device 1. Power On/Off Button & WI-FI On/Off 2. REC Button & Client Button & WI-FI Reset 3. Memory Card Slot 4. Camera Lens 5. USB

More information

HOW TO ADD A QCW2MPSL ENTRY CAMERA

HOW TO ADD A QCW2MPSL ENTRY CAMERA HOW TO ADD A QCW2MPSL ENTRY CAMERA Written By: Q-See 2018 qplus.dozuki.com/ Page 1 of 10 INTRODUCTION Q-SEE PLUS IS ONLY COMPATIBLE WITH WI-FI ENABLED QCW IP CAMERAS. 2018 qplus.dozuki.com/ Page 2 of 10

More information

RTX41xx Introduction. March 2013

RTX41xx Introduction. March 2013 RTX41xx Introduction March 2013 RTX AT A GLANCE One-stop shop for complex wireless system development Engineering Services Enterprise Professional wireless IP telephony for PBX systems in the Enterprise

More information

Getting to Know Your Mobile WiFi

Getting to Know Your Mobile WiFi Quick Start Thank you for purchasing the O2 4G Pocket Hotspot Mobile WiFi. Mobile WiFi allows you to connect to high speed mobile broadband from any Wi-Fi capable device. This document will help you understand

More information

SR-201 Network Relay Quick Start Guide

SR-201 Network Relay Quick Start Guide SR-201 Network Relay Quick Start Guide Table of Content Connect to your device...2 Change configurations...3 Setup remote control via internet...4 Android software...5 Integrate to your applications...6

More information

AWS DeepRacer Getting Started Guide

AWS DeepRacer Getting Started Guide AWS DeepRacer Getting Started Guide 1 Getting Started Guide Contents What s in the box Assemble your car Get connected Test drive Autonomous model management 2 What s in the box 1 2 6 8 9 5 11 10 4 7 3

More information

Everything in your eyes. ismartviewpro. (For iphone) User Manual VER 5.0

Everything in your eyes. ismartviewpro. (For iphone) User Manual VER 5.0 IP Cloud Network Camera Everything in your eyes ismartviewpro (For iphone) User Manual 2018-01 VER 5.0 1. ismartviewpro Summary ismartviewpro (iphoneversion) is developed application software based on

More information

TANA SL-1 QUICK START GUIDE. ver. 1.9 EN

TANA SL-1 QUICK START GUIDE. ver. 1.9 EN TANA SL-1 QUICK START GUIDE ver. 1.9 EN THANK YOU FOR BUYING Welcome to the world of Electrocompaniet! Through more than 40 years of ceaseless practice, we learned how to combine timeless Scandinavian

More information

Introduction. See page #6 for device requirements.

Introduction. See page #6 for device requirements. W-FI CAMERA USER MANUAL Contents Introduction 4 Camera LED Indicators 5 Wi-Fi Requirements 6 Mobile Device Requirements 6 Download the Momentum App 7 Create an Account 8 Setup 10 Pairing 10 Connecting

More information

ARROW ARIS EDGE S3 Board User s Guide 21/02/2018

ARROW ARIS EDGE S3 Board User s Guide 21/02/2018 ARROW ARIS EDGE S3 Board User s Guide All information contained in these materials, including products and product specifications, represents information on the product at the time of publication and is

More information

HD Ovi Digital Clock WiFi Hidden Camera. User s Guide WHEN YOU NEED TO KNOW.

HD Ovi Digital Clock WiFi Hidden Camera. User s Guide WHEN YOU NEED TO KNOW. HD Ovi Digital Clock WiFi Hidden Camera User s Guide WHEN YOU NEED TO KNOW. HD Ovi Digital Clock WiFi Hidden Camera The HD Ovi Digital Clock WiFi Hidden Camera is a fully functional clock, displaying time

More information

HARDWARE REFERENCE IMM-NRF51822

HARDWARE REFERENCE IMM-NRF51822 HARDWARE REFERENCE IMM-NRF51822 Micro-module Copyright 2014 I-SYST, all rights reserved. This document may not be reproduced in any form without, express written consent from I-SYST. Limited Warranty The

More information

The Otto Home Control app allows for control of your motorized window coverings through your smartphone/tablet

The Otto Home Control app allows for control of your motorized window coverings through your smartphone/tablet TM SET UP INSTRUCTIONS ABOUT THE OTTO HOME CONTROL APP The Otto Home Control app allows for control of your motorized window coverings through your smartphone/tablet THE APP ALLOWS FOR: Individual and

More information

The Software of Things T Y S O N T U T T L E C E O S I L I C O N L A B S A S P E N C O R E C E O S U M M I T S H E N Z H E N 8 N O V E M B E R 2018

The Software of Things T Y S O N T U T T L E C E O S I L I C O N L A B S A S P E N C O R E C E O S U M M I T S H E N Z H E N 8 N O V E M B E R 2018 The Software of Things T Y S O N T U T T L E C E O S I L I C O N L A B S A S P E N C O R E C E O S U M M I T S H E N Z H E N 8 N O V E M B E R 2018 Most technology we ve built so far was for the Internet

More information

Introduction. Package Checklist. Minimum System Requirements. Registering Your Product. More Help

Introduction. Package Checklist. Minimum System Requirements. Registering Your Product. More Help Introduction Keep a watch on your family, pet, home or office 24/7, even when you re not there. Creative Live! Cam IP SmartHD gives you a live update on your phone, wherever you are. Get activity alerts,

More information

CRESTRON INTEGRATION WITH THE SHADE STORE MOTORS CRESTRON INTEGRATION OVERVIEW:

CRESTRON INTEGRATION WITH THE SHADE STORE MOTORS CRESTRON INTEGRATION OVERVIEW: CRESTRON INTEGRATION WITH THE SHADE STORE MOTORS CRESTRON INTEGRATION OVERVIEW: Take your motorized window treatment experience to the next level by integrating them into your Crestron smart home control

More information

ARDUINO BOARD LINE UP

ARDUINO BOARD LINE UP Technical Specifications Pinout Diagrams Technical Comparison Board Name Processor Operating/Input Voltage CPU Speed Analog In/Out Digital IO/PWM USB UART 101 Intel Curie 3.3 V/ 7-12V 32MHz 6/0 14/4 Regular

More information

Supplementary Manual for HD220-W Wireless Dual Output Programmable Humidity Controller

Supplementary Manual for HD220-W Wireless Dual Output Programmable Humidity Controller AUBER INSTRUMENTS Instruction Manual WWW.AUBERINS.COM Supplementary Manual for HD220-W Wireless Dual Output Programmable Humidity Controller Version 1.0 (Sep, 2016) 1. Overview Auber s HD220-W is a two-stage

More information

DENT Instruments ELITEpro Mobile App

DENT Instruments ELITEpro Mobile App DENT Instruments ELITEpro Mobile App Version 3.0 Instruction Guide Revision: Final Draft May 20, 2015 Page 2 of 16 Instruction Guide: ELITEpro Mobile App 2015 DENT Instruments, Inc. All rights reserved.

More information

Automate Pulse Set-Up Instructions

Automate Pulse Set-Up Instructions Automate Pulse Set-Up Instructions ABOUT THE AUTOMATE SHADES SKILL The Automate Pulse app allows for control of your motorized window coverings through your smartphone/tablet THE APP ALLOWS FOR: Individual

More information

Installing your Nokia Home

Installing your Nokia Home Installing your Nokia Home 1. Installing the Nokia Home app 2. Plugging in your Nokia Home 3. Pairing your Nokia Home with your Device 4. Installing your Nokia Home: - Creating a Nokia account (optional)

More information

IoT.js. Next generation web for connected things. Samsung Electronics Software Center Piotr Marcinkiewicz 2017

IoT.js. Next generation web for connected things. Samsung Electronics Software Center Piotr Marcinkiewicz 2017 IoT.js Next generation web for connected things Samsung Electronics Software Center Piotr Marcinkiewicz 2017 Agenda Introduction Architecture Node.js vs. IoT.js APIs You are invited Community Q&A 01 02

More information

CoLinkEx_LPC11C14 EVB Kit User Guide

CoLinkEx_LPC11C14 EVB Kit User Guide CoLinkEx_LPC11C14 EVB Kit User Guide Rev. 1.0 Release: 2012-05-07 Website: http://www.coocox.org Forum: http://www.coocox.org/forum/forum.php?id=1 Techinal: master@coocox.com Market: market@coocox.com

More information