Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CMRI",
"version": "1.6.0",
"version": "1.7.0",
"description": "A library for interfacing Arduino with the C/MRI computer control system for model railroads. This library allows you to easily interface your Arduino with JMRI (Java Model Railroad Interface) by emulating Bruce Chubb's Computer/Model Railroad Interface (C/MRI) System. It provides a simple API to handle GET, SET, and POLL requests from JMRI automatically, with support for up to 2048 digital lines.",
"keywords": "CMRI, JMRI, model-railroad, arduino, communication",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=CMRI
version=1.6.0
version=1.7.0
author=Michael Adams <github@michaeladams.org>
maintainer=Michael Adams <github@michaeladams.org>
sentence=A library for interfacing Arduino with the C/MRI computer control system for model railroads.
Expand Down
2 changes: 1 addition & 1 deletion src/CMRI.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef CMRI_h
#define CMRI_h

#define _CMRI_VERSION 1.6.0 // version of this library
#define _CMRI_VERSION 1.7.0 // version of this library
#include <Arduino.h>

class CMRI
Expand Down