aREST – Get Started: Ethernet Communications

details

aREST – Get Started: Ethernet Communications

by aREST

The aREST framework is a complete solution to build powerful RESTful applications based on the Arduino, the Raspberry Pi and other open source hardware platform. It can handle all kind of communications via Serial, WiFi, Ethernet, and much more. It includes libraries for boards themselves, like Arduino boards, and also server-side code to handle the communications between a server and remote devices. The aREST framework is of course completely open-source and free to use.

Overview

The aREST framework was created to give RESTful interface to several embedded boards & platforms. In a nutshell, the library allows you to send commands to a given board running aREST, provoke an action (or just get some data), and send data back in a JSON container.

For example, to set the state of pin 6 to HIGH on an Arduino board running aREST, connected to your local network via Ethernet, and with the IP address 192.168.1.101, you would send the command:

192.168.1.101/digital/6/1

It’s that simple. As an answer, the board will then send:

{“message”: “Pin D6 set to 1”, “id”: “1”, “name”: “arduino”, “connected”: true}

This makes aREST really easy to use for your connected project. You don’t have to change the code on your embedded boards anymore: set it once, and then interact with your boards using a RESTful interface.

aREST Library

Refer to Github.
https://github.com/marcoschwartz/aREST

Learn More

Goto original
Library on GitHub

TAG : 201408, W5100, Ethernet, Arduino, IoT, Restful, aREST

aREST – Get Started: Ethernet Communications

by aREST

The aREST framework is a complete solution to build powerful RESTful applications based on the Arduino, the Raspberry Pi and other open source hardware platform. It can handle all kind of communications via Serial, WiFi, Ethernet, and much more. It includes libraries for boards themselves, like Arduino boards, and also server-side code to handle the communications between a server and remote devices. The aREST framework is of course completely open-source and free to use.

Overview

The aREST framework was created to give RESTful interface to several embedded boards & platforms. In a nutshell, the library allows you to send commands to a given board running aREST, provoke an action (or just get some data), and send data back in a JSON container.

For example, to set the state of pin 6 to HIGH on an Arduino board running aREST, connected to your local network via Ethernet, and with the IP address 192.168.1.101, you would send the command:

192.168.1.101/digital/6/1

It’s that simple. As an answer, the board will then send:

{“message”: “Pin D6 set to 1”, “id”: “1”, “name”: “arduino”, “connected”: true}

This makes aREST really easy to use for your connected project. You don’t have to change the code on your embedded boards anymore: set it once, and then interact with your boards using a RESTful interface.

aREST Library

Refer to Github.
https://github.com/marcoschwartz/aREST

Learn More

Goto original
Library on GitHub

TAG : 201408, W5100, Ethernet, Arduino, IoT, Restful, aREST

COMMENTS

Please Login to comment
  Subscribe  
Notify of