UNPKG

iot-sol

Version:

Intel(r) IoT Services Orchestration Layer - HTML5 IDE + Node.js middleware to create and host distributed IoT Apps in minutes

53 lines (52 loc) 2.23 kB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta name="generator" content="pandoc" /> <meta name="author" content="Copyright 2015 Intel Corporation All Rights Reserved." /> <title>IoT Services Orchestration Layer</title> <style type="text/css">code{white-space: pre;}</style> <link rel="stylesheet" href="styles/style.css" type="text/css" /> </head> <body> <div id="header"> <h1 class="title">IoT Services Orchestration Layer</h1> <h2 class="author">Copyright 2015 Intel Corporation All Rights Reserved.</h2> </div> <div id="TOC"> <ul> <li><a href="#counter">Counter</a><ul> <li><a href="#count">count</a><ul> <li><a href="#description">Description</a></li> <li><a href="#inport">Inport</a></li> <li><a href="#outport">Outport</a></li> </ul></li> <li><a href="#countdown">countdown</a><ul> <li><a href="#description-1">Description</a></li> <li><a href="#inport-1">Inport</a></li> <li><a href="#outport-1">Outport</a></li> </ul></li> </ul></li> </ul> </div> <h1 id="counter">Counter</h1> <h2 id="count">count</h2> <h3 id="description">Description</h3> <p>This service provides count-up kind counter, the initial value is 0.</p> <h3 id="inport">Inport</h3> <p><code>trigger</code>: Any. Event to increase the counter.</p> <p><code>reset</code>: Boolean. True value to reset the counter.</p> <h3 id="outport">Outport</h3> <p><code>out</code>: Any. The current value of counter.</p> <h2 id="countdown">countdown</h2> <h3 id="description-1">Description</h3> <p>This service provides count-down kind counter, the initial value is 0.</p> <h3 id="inport-1">Inport</h3> <p><code>trigger</code>: Any. Event to decrease the counter.</p> <p><code>reset</code>: Boolean. True value to reset the counter with value of <code>orig</code>.</p> <p><code>orig</code>: Integer. The original value of counter.</p> <h3 id="outport-1">Outport</h3> <p><code>hit</code>: Boolean. When and only when the value of counter decreas to 0, <code>hit</code> output true.</p> </body> </html>