ckollars / electric-objects

A node.js API for the Electric Objects EO1 frame

Home Page:https://www.electricobjects.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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('where@jed.is', '●●●●●●●●●')
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.

About

A node.js API for the Electric Objects EO1 frame

https://www.electricobjects.com

License:MIT License


Languages

Language:JavaScript 100.0%