eprzenic / aREST_UI

Embedded UI for the aREST framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aREST_UI Build Status

Version 1.0.1

Overview

aREST UI is an embedded UI for the aREST framework. Currently works with the Arduino Mega & Arduino Due with the CC3000 WiFi chip, the WiFi shield, and the Ethernet shield. It works as well with the WildFire v3 board.

It also works with the ESP8266 WiFi chip.

If you want to know more about aREST, go over to http://arest.io/.

Contents

  • aREST_UI.h: the library file.
  • examples: several examples using the aREST UI library

Requirements

To use the library with Arduino boards you will need the latest version of the Arduino IDE:

You will also need the aREST library:

For WiFi using the CC3000 chip

Setup

To install the library, simply clone this repository in the /libraries folder of your Arduino folder.

Quick test (WiFi)

  1. Connect a LED & resistor to pin number 6 of your Arduino Mega board
  2. Open the WiFi_CC3000 example sketch and modify the WiFi SSID and password
  3. Upload the sketch to the board
  4. Go to a web browser and type http://arduino.local
  5. Click on the 'On' button and the LED should turn on

Quick test (WildFire)

  1. Connect a LED & resistor to pin number 6 of your WildFire board
  2. Open the WildFire example sketch and modify the WiFi SSID and password
  3. Upload the sketch to the board
  4. Go to a web browser and type http://wildfire.local
  5. Click on the 'On' button and the LED should turn on

API documentation

Create aREST UI instance

You can simply create an instance of aREST UI with the following command:

aREST_UI ui = aREST_UI();

Title

If you don't want to run with the default title, set your own for the UI.

ui.title("Your title");

Button

Buttons are used to control the state of a digital output pin. The command creates two button inside the interface, one 'On' button, and one 'Off' button. For example, the following command creates a pair of buttons to control pin number 6:

ui.button(6)

Slider

The slider command creates a slider to control a pin via PWM. For example, it can be used to control the intensity of a LED connected to this pin. The following command creates a pair of buttons to control pin number 6:

ui.slider(6);

Label

Labels are used to display the value of variables inside the interface. Before you can use this command, you need to create the corresponding variable first. The following command declares a variable called temperature:

ui.variable("temperature",&temperature);

After that, you can use the following command to create the corresponding label inside the interface:

ui.label("temperature");

About

Embedded UI for the aREST framework


Languages

Language:C++ 100.0%