Skip to content

filnko/ebusJ-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ebusJ - Java client for ebusd

This project provides java classes to access the ebusd easily. Not all functions are implemented. Feel free to submit a pull request.

For more information and usage instructions concerning ebusd visit john30's repo here.

Read

Read value from a configured message. The result will be retrieved directly from the eBUS.

Use with or without circuit:

String read(String name) throws EbusException;
String read(String name, String circuit) throws EbusException;

Write

Write value in a configured message.

void write(String name, String circuit, String value) throws EbusException;

Find

Find configured messages by name.

List<EbusFindResult> find() throws EbusException;

State

Report the bus state (signal acquisition).

String state() throws EbusException;

Information

Reports information about the daemon, the configuration, and seen devices.

String info() throws EbusException;

About

Java client for ebusd

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages