Before device deployment check the compatible device FIRMWARE as it is very important to have tested FW. The FW for each device is documented on the Supported devices page. In case the device is not on the list, contact our support.
signageOS allows you to manage any supported System On Chip device with your own application.
With just one single JS file you insert into the your app and all the device management features you have dreamed of are ready at your service.
Simply copy & paste following snippet into your “index.html” of your SoC application. Device will do the verification automatically and connects itself into the device management console Box. Since this point you can do anything like with our full featured signageOS application.
<script type="text/javascript">
var SOS_ORGANIZATION = "...organization UID (not token_id nor token_secret) goes here...";
var SOS_DEVICE_NAME = "...optionally set device name here...";
</script>
<script type="text/javascript" src="snippet.js"></script>
Currently supported SoC platforms. Let’s download snippet.js file and pack it with your application in the root directory:
- SSSP2 – (https://2.signageos.io/app/sssp/1.0.36-master.48400171/snippet.js)
- SSSP3 – (https://2.signageos.io/app/sssp/1.0.36-master.48400171/snippet.js)
- Tizen 2
- Tizen 3
- webOS 1
- webOS 2
- webOS 3
- webOS 3.2
Necessary application settings by platform
SSSP 2/3 Add these lines to tag of app:
<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/API/Widget.js"></script>
<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/API/Plugin.js"></script>
<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/API/TVKeyValue.js"></script>
<script type="text/javascript" language="javascript" src="$MANAGER_WIDGET/Common/Plugin/Define.js"></script>
SSSP4 - Tizen
- Application type: WGT
- App privileges:
webOS 3.2
- Application type: IPK
Tizen
You can use signageOS snippet to bring management features to your own Tizen widget application, below you can find individual steps along with snippet download directory:
Link - Download directory
There are several pieces of code to integrate into your application's index.html file:
1) in the Head tag, include following meta tag:
<meta name="orientation" content="landscape"></meta>
<script type="text/javascript" language="javascript" src="$WEBAPIS/webapis/webapis.js"></script>
<script type="text/javascript" language="javascript" src="$B2BAPIS/b2bapis/b2bapis.js"></script>
<script>
window.__SOS_AUTO_VERIFICATION = {
organizationUid: "123abcd456efgh",
deviceName: "SnippetTest",
};
</script>
<script type="text/javascript" language="javascript" src="js/snippet.js"></script>
Make sure to include your organization UID (you can find this information in Box), deviceName is an optional parameter
Important to note that NodeJS and application upgrade is not supported