Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 574 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 574 Bytes

ocpp-go-client

ocpp-go-client

Golang Client package for Open Charge Point Protocol (OCPP)

N|Solid

Installation

Configuration

import "github.com/slimdestro/ocpp-go-client"

endpoint := "ocpp-server-here"
client := ocpp.NewClient(endpoint)

chargeBoxID := "12345"
err := client.BootNotification(chargeBoxID)
if err != nil {
    fmt.Println("BootNotification failed:", err)
}

Author

slimdestro(Mukul Kumar)