All Projects → jed → Electric Objects

jed / Electric Objects

Licence: mit
A node.js API for the Electric Objects EO1 frame

Programming Languages

javascript
184084 projects - #8 most used programming language

electric-objects

This library provides a node.js API for updating Electric Objects EO1 picture frames, and works by scraping the current web UI. Currently it only exposes the set_url interface, which allows you to update the url of the web page displayed in the Chromium instance of all frames attached to your account.

Usage

let eo = require('electric-objects')
let client = eo('[email protected]', '●●●●●●●●●')
let setUrl = client.setUrl('http://brooklynjs.com')

setUrl.then(() => console.log('Frame updated!'))

API

let eo = require('electric-objects')

This module exports a client constructor function.

let client = eo(email, password)

The constructor takes your email/password credentials and returns a client instance.

client.setUrl(url)

The client instance provides only one method, which takes a URL and returns a promise that resolves when the URL is submitted.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].