Skip to content
This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
/ VueLoop Public archive

Simple Java library for getting weather data from the Vantage Vue weather station.

License

Notifications You must be signed in to change notification settings

berry120/VueLoop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

VueLoop

Vantage Vue

Simple library for getting weather data from the Vantage Vue weather station. Serial parameters are hard coded at present since all examples I've found have a baud rate of 19200, but submit an issue / PR if this isn't the case and I'll take a look.

Setup

Maven

<dependency>
  <groupId>com.github.berry120.VueLoop</groupId>
  <artifactId>VueLoop</artifactId>
  <version>1.0</version>
</dependency>

Gradle

compile 'com.github.berry120.VueLoop:VueLoop:1.0'

Example usage

new VueLooper("COM7").loop(new LoopCallback() {

    @Override
    public void weatherDataSent(WeatherLoopPacket packet) {
        System.out.println(packet);
    }
});

About

Simple Java library for getting weather data from the Vantage Vue weather station.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages