ManagerEnergy

Access this instance at HomeyAPIV2.energy.

Extends

Instance Properties

homey

homey: HomeyAPIV3

The Homey of the Manager.

Type

uri

uri: String

The URI of the Item, e.g. homey:manager:bar.

Type

  • String

Instance Methods

addListener

addListener(event, callback)

Parameters

Name Type Description
event
string
callback
function

connect

(async) connect(): Promise.<void>

Connect to this manager's Socket.io namespace.

Returns

Promise.<void>

destroy

destroy()

Destroy this Manager by cleaning up all references, unbinding event listeners and disconnecting from the Socket.io namespace.

disconnect

(async) disconnect(): Promise.<void>

Disconnect from this manager's Socket.io namespace.

Returns

Promise.<void>

emit

emit(event, …data)

Parameters

Name Type Description
event
string
data
any <repeatable>

getLiveReport

(async) getLiveReport(opts): Promise.<any>

Scopes

homey.insights.readonly

HTTP

GET /api/manager/energy/live

Parameters

Name Type Description
opts
object
zone
string <optional>
}

Returns

Promise.<any>

getOptionCurrency

(async) getOptionCurrency(): Promise.<any>

Scopes

SYSTEM_READONLY

HTTP

GET /api/manager/energy/option/currency

Returns

Promise.<any>

getOptionKWhCost

(async) getOptionKWhCost(): Promise.<any>

Scopes

SYSTEM_READONLY

HTTP

GET /api/manager/energy/option/kWhCost

Returns

Promise.<any>

isConnected

isConnected(): Boolean

If this manager's namespace is connected to Socket.io.

Returns

Boolean

off

off(event, callback)

Parameters

Name Type Description
event
string
callback
function

on

on(event, callback)

Parameters

Name Type Description
event
string
callback
function

once

once(event, callback)

Parameters

Name Type Description
event
string
callback
function

removeAllListeners

removeAllListeners(event)

Parameters

Name Type Description
event
string

removeListener

removeListener(event, callback)

Shortcut to EventEmitter#off

Parameters

Name Type Description
event
string
callback
function

setOptionCurrency

(async) setOptionCurrency(opts): Promise.<any>

Scopes

SYSTEM

HTTP

PUT /api/manager/energy/option/currency

Parameters

Name Type Description
opts
object
value
string
}

Returns

Promise.<any>

setOptionKWhCost

(async) setOptionKWhCost(opts): Promise.<any>

Scopes

SYSTEM

HTTP

PUT /api/manager/energy/option/kWhCost

Parameters

Name Type Description
opts
object
value
number
}

Returns

Promise.<any>

unsetOptionCurrency

(async) unsetOptionCurrency(): Promise.<any>

Scopes

SYSTEM

HTTP

DELETE /api/manager/energy/option/currency

Returns

Promise.<any>

unsetOptionKWhCost

(async) unsetOptionKWhCost(): Promise.<any>

Scopes

SYSTEM

HTTP

DELETE /api/manager/energy/option/kWhCost

Returns

Promise.<any>