Skip to content

JavaIsJavaScript/steve

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SteVe

SteVe was developed at the RWTH Aachen University and means Steckdosenverwaltung, namely socket administration in German. The aim of SteVe is to support the deployment and popularity of electric mobility, so it is easy to install and to use. SteVe provides basic functions for the administration of charge points, user data, and RFID cards for user authentication and was tested successfully in operation.

SteVe is considered as an open platform to implement, test and evaluate novel ideas for electric mobility, like authentication protocols, reservation mechanisms for charge points, and business models for electric mobility. SteVe is distributed under GPL and is free to use. If you are going to deploy SteVe we are happy to see the logo on a charge point.

Supported OCPP protocols

  • OCPP1.2S
  • OCPP1.5S
  • OCPP1.2J
  • OCPP1.5J

Requirements & Configuration

  1. You need JDK 8, Maven and MySQL.

  2. The charge points must be configured to communicate with following addresses. Depending on the OCPP version of the charge point, SteVe will automatically route messages to the version-specific implementation.

  • SOAP: http://<your-server-ip>:<port>/steve/services/CentralSystemService
  • WebSocket/JSON: ws://<your-server-ip>:<port>/steve/websocket/CentralSystemService/<chargeBoxId>
  1. Configuration is defined in main.properties:
  1. The following MySQL statements can be used as database initialization (adjust according to your setup):

    CREATE DATABASE stevedb;
    GRANT ALL PRIVILEGES ON stevedb.* TO 'steve'@'localhost' IDENTIFIED BY 'changeme';
    GRANT SELECT ON mysql.proc TO 'steve'@'localhost' IDENTIFIED BY 'changeme';
    

How to use?

Compile and build an archive ready to run:

mvn package

Start the application:

java -jar steve-***.jar

Access the Web interface:

http://<your-server-ip>:<port>/steve/manager

Screenshots

  1. Home
  2. Heartbeats
  3. Connector Status
  4. Data Management - Reservations
  5. Data Management - Charge Points
  6. Data Management - Users
  7. Data Management - Transactions
  8. Operations - OCPP v1.2
  9. Operations - OCPP v1.5
  10. Settings

Are you having issues?

See the FAQ

About

SteVe - Steckdosenverwaltung

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 97.5%
  • CSS 1.4%
  • Other 1.1%