-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
951ea98
commit 8e027a8
Showing
2 changed files
with
30 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* VanLiveConnect - Show all received information from the VAN bus on a "live" web page. | ||
* | ||
* Written by Erik Tromp | ||
* | ||
* Version 1.1.0 - November, 2024 | ||
* | ||
* MIT license, all text above must be included in any redistribution. | ||
*/ | ||
|
||
#ifndef VanLiveConnectVersion_h | ||
#define VanLiveConnectVersion_h | ||
|
||
#define VAN_LIVE_CONNECT_VERSION "1.1.0" | ||
|
||
#define VAN_LIVE_CONNECT_VERSION_MAJOR 1 | ||
#define VAN_LIVE_CONNECT_VERSION_MINOR 1 | ||
#define VAN_LIVE_CONNECT_VERSION_PATCH 0 | ||
|
||
#define VAN_LIVE_CONNECT_VERSION_INT 001001000 | ||
|
||
#endif /* VanLiveConnectVersion_h */ |