UNPKG

node-red-contrib-ocpp

Version:

A set of nodes to communicate via OCPP to a compatible charge box or central system

13 lines (11 loc) 295 B
'use strict'; module.exports = function(RED) { function OcppRemoteCSNode(n) { RED.nodes.createNode(this, n); this.cbId = n.cbId; this.url = n.url; this.name = n.name || n.cbId; this.ocppver = n.ocppver; } RED.nodes.registerType('ocpp-remote-cs', OcppRemoteCSNode); };