VirtusAI/panstamp-java


A Java library for working with panStamp Arduino devices

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.VirtusAI:panstamp-java:'
	}
	dependencies {
		implementation("com.github.VirtusAI:panstamp-java:")
	}
	<dependency>
	    <groupId>com.github.VirtusAI</groupId>
	    <artifactId>panstamp-java</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.VirtusAI" % "panstamp-java" % ""
        
        

                            
    :dependencies [[com.github.VirtusAI/panstamp-java ""]]
        
        

Readme


panstamp-java

The panstamp-java library provides Java programmers the ability to write desktop and server applications that can interface with panStamp Arduino RF networks.

What are panStamps?

PanStamps are autonomous low-power wireless modules programmable from the Arduino IDE and made for telemetry and control projects.

You can read all about them on their commercial site and their wiki. There's a GitHub repository and a community forum.

Versions

The current stable version is 2.2. For more information about different releases, see Releases.

Contributing

I welcome contributions, be it bug fixes or other improvements. If you fix or change something, please submit a pull request. If you want to report a bug, please open an issue.

You're also welcome to join the discussion in the Java thread on the panStamp forum.

Getting the API

I recommend using the Maven artifact from Maven Central, but you can also clone the repository, or download the source as a .zip or .tar.gz file from Releases.

Using Maven Central

Add the dependency below to your pom.xml to use the artifact from Maven Central:

<dependency>
  <groupId>me.legrange</groupId>
  <artifactId>panstamp-java</artifactId>
  <version>2.2</version>
</dependency>

Using the API

There are documented examples on this project's wiki and some simple example programs in the src/main/java/example directory.

References

Licence

This library is released under the Apache 2.0 licence. See the licence file.