using eclipse and lua for the internet of things with eclipse koneki, mihini and paho

47
Using Eclipse & Lua for the Internet of Things Benjamin Cabé – [email protected] Gaétan Morice – [email protected]

Upload: benjamin-cabe

Post on 19-May-2015

3.029 views

Category:

Technology


6 download

DESCRIPTION

The Internet of Things (IoT) or Machine to Machine (M2M), is a technological field that will radically change the global network by enabling the communication of virtually every single object with each other. Studies state that more than 50 billions objects may be connected to the Internet by 2020. In a near future, everything from a light bulb to a power plant, from a pacemaker to an hospital, from a car to a road network will be part of the Internet. While this revolution is already happening (your house or your car may be "connected" already!), there are still lots of barriers to its growth, especially since existing solutions are almost always proprietary, and cannot interoperate easily. There are several very active M2M initiatives at Eclipse aiming at lowering these barriers, all under the umbrella of the M2M Industry Working Group. Last year, projects Paho (communication protocols for M2M) and Koneki (tools for M2M developers, in particular a complete IDE for Lua development) were created, and in July 2012 project Mihini was proposed to establish Lua as a reference platform for building M2M and IoT solutions. The purpose of this talk is to give you a clear understanding of the afore mentioned Eclipse projects, as well as to show you that real M2M solutions can already be developed thanks to them. We will briefly introduce the Lua programming language, explain why it is a good fit for embedded M2M development, and then demonstrate the development of an actual working solution making use of the Mihini framework, a Paho MQTT client, and the Koneki tooling. The use case will also leverage Open Hardware such as Arduino and a RaspberryPi, therefore you can expect nice demos!

TRANSCRIPT

Page 1: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Using Eclipse & Lua for the Internet of Things

Benjamin Cabé – [email protected] Gaétan Morice – [email protected]

Page 2: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

� IoT? M2M?

Technology that supports wired or wireless communication between devices

Page 3: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

50

bill ion devices by 2020

Page 4: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

50

bill ion devices by 2020

Page 5: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho
Page 6: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho
Page 7: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho
Page 8: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho
Page 9: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho
Page 10: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Communication Infrastructure

Smart Pill Box

Heartbeat Sensor

Weight Scale

Blood Pressure

Medical Services Gateway

Near field

Blood Sugar

Internet of Things

Patient

Clinical Trial

Doctor

Page 11: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Ready then?

Page 12: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

…Not quite!!

Page 13: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

M2M market = fragmented

Page 14: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

M2M development = complex

Page 15: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

M2M vendors = lock-in

Page 16: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

?

Page 17: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho
Page 18: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Framework

Tools

3 projects

Protocols

Page 19: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

M2M embedded programming

•  low-level C

•  memory management

•  multithreaded programming

•  read sensor values

•  control actuators

•  consolidate data

•  communicate

Page 20: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Example: Sending an SMS int main(){ unsigned char char1[10]; unsigned char char_buf[8]="AT+CSQ\n"; // unsigned char sms_buf[20] = "AT+CMGS="xxxxxxxxx"; int wc_fd; /********* Init of serial port ************/ wc_fd = init_wc(wc_fd); sleep(3); //writing to serial port write(wc_fd,char_buf,sizeof(char_buf)); usleep(40000); //reading from serial port read(wc_fd,char1,sizeof(char1)); sleep(2); close(wc_fd); return 0;} // end of main// initialization of serial portstruct termios options;ttys5_fd = open("/dev/ttyS5", O_RDWR );if (ttys5_fd < 0){ printf("\nFail to open serial port 2\n"); return 0;}init_tty( ttys5_fd ,BAUD_RATE);return ttys5_fd;-----------------------------------//initializing baud rateint init_tty( int fd ,long wBaud){ long baud; switch (wBaud) {

sms.send( '+33612345678’, 'My SMS’, )

Page 21: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Simplify M2M programming

Page 22: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

What is Lua?

•  High-level programming language

•  Scripting

•  Extensible

•  Simple

•  E!cient

•  Portable

Page 23: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

You need an IDE! •  Project structure

•  Syntax coloring

•  Content assist

•  Code navigation

•  Code formatting

•  Documentation

•  Code templates

•  Debugger

•  Remote development

June 2012: first release (0.8)

Dec. 2012: 0.9 release

June 2013: graduate w/ Kepler

20,000+ installations already!

Page 24: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

DEMO

Using Koneki LDT for remote Lua development

Page 25: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

101

•  http://www.eclipse.org/koneki/ldt •  Download standalone IDE •  Or install in existing Eclipse

–  from Juno repository –  from nightly/milestones repositories

•  Execution environments: –  http://sierrawireless.github.com/lua-execution-

environments/

•  Contact the team –  http://eclipse.org/forums/eclipse.koneki

Page 26: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

http://www.sxc.hu/photo/1036004

Page 27: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

•  Low-bandwidth

•  Low-power

•  Payload agnostic

•  Adjustable QoS

•  Large ecosystem

Page 28: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

broker broker

(optional) bridge

publishsubscribe

keepalivelast will & testamentusername/password

topic/subtopic

topic/#

Page 29: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

101 •  http://eclipse.org/paho/ •  Eclipse Paho delivers clients for MQTT in C and

Java –  http://eclipse.org/paho/download.php

•  Lua client available soon –  https://github.com/geekscape/mqtt_lua

•  MQTT view in Eclipse –  http://git.eclipse.org/c/paho/org.eclipse.paho.esf.git/

•  Free broker hosted at Eclipse: m2m.eclipse.org

•  Contact the team –  paho-dev mailing-list

Page 30: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Lua VM + MQTT client to go?

Page 31: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Application framework for M2M

•  Set of libraries providing building blocks to develop user M2M applications: – Serial and I/O management, – Networking (FTP, HTTP, E-mail clients), – GPS, – Cryptography, – Modbus, – Local storage – etc. http://www.eclipse.org/mihini

Page 32: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Smart agent for M2M

•  M2M data queues

•  Network bearers

•  Device management

•  Application container

•  Application configuration

http://www.eclipse.org/mihini

Page 33: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

101

•  http://www.eclipse.org/proposals/technology.mihini

•  http://eclipse.org/mihini

•  Code will be available on Github soon

•  Initial contribution planned for Q1

Page 34: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Let me show you!

Page 35: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Step 1 – Early prototyping

•  Greenhouse business – Connect gardening equipments to each

other – Remote monitoring of sensors – Remote control

•  M2M Gateway not selected yet, neither is the rest of the equipment (PLCs)

Page 36: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

m2m.eclipse.org MQTT broker

Raspberry Pi Mobile phone

humidity temperature illuminance

light ON/OFF

Modbus RTU

Page 37: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Two Lua applications

Embedded

–  Uses Modbus library to talk to Arduino PLC

–  Collects sensor data/controls actuators

–  Publishes MQTT messages

–  Subscribe to commands

Mobile

Corona SDK

–  Subscribes to MQTT messages

–  Displays sensor data with a fancy UI

–  Publish command to switch on/o" the light

Page 38: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

M2M Developer Kit

•  Actual hardware early in the dev. process is key

Affordable! Simple! Industrial!

•  http://wiki.eclipse.org/Mihini/Developer_Kit •  Arduino code & schematics available after the conference

Page 39: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Step 2 – Use an industrial gateway

•  Need for rugged, industrial-grade M2M gateway

•  Take the Mihini codebase and compile it against the gateway’s toolchain

•  Mihini porting layer – straightforward for Linux-based devices

with AT modem – porting layer for other solutions

Page 40: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

m2m.eclipse.org MQTT broker

Rugged wireless gateway

Mobile phone

humidity temperature illuminance

light ON/OFF

Modbus RTU

Page 41: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Step 3 – Industrial deployment

•  Use a real PLC – Mihini dev. kit is replaced by a real PLC – Only the configuration of the application

(modbus registries #) will have to be updated

•  Use a reliable, multi-tenant, M2M server

Page 42: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

M2M server

Rugged wireless gateway

humidity temperature illuminance

light ON/OFF

Modbus RTU

Telco!

Billing! etc…!

Mobile phone

Page 43: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Conclusion

•  Developing an M2M app with Mihini is simple – Demo app written in a couple hours

•  Mihini apps are portable

•  Mihini itself is easily portable – make install

•  Koneki provides support for editing, debugging and deploying M2M apps

Page 44: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

M2M AT ECLIPSE IS ALSO…

Page 45: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

A developer portal

Page 46: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

An all-in-one IDE

•  June 2013 •  Ready-to-use •  Market Place

Page 47: Using Eclipse and Lua for the Internet of Things with Eclipse Koneki, Mihini and Paho

Join us!

•  BoF: tomorrow – 7 pm Schubartsaal

•  Industry Working Groups booth