Skip to content

Commit 87a4dfe

Browse files
committed
Update to 2.4.0
1 parent 5277b67 commit 87a4dfe

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Kerbal Simpit Changelog
22
=======================
33

4+
* **2.4.0**: 2024-02-20
5+
6+
* Fix action groups activating instead of toggling in AllCommandDemo example.
7+
* Added KSP game version flag.
8+
* Updated keywords and docs.
9+
* Added example AllTheFeedbackDemo to show how all the outgoing messages are used.
10+
* Added KSP2 resource channels
11+
* Added Advanced Action Group Message (it supports all KSP2 Action Groups)
12+
* Added Set Single Action Group Message (it supports all KSP2 Action Groups)
13+
* Added Time warp commands for KSP2
14+
* Added Intersects Message
15+
416
* **2.0.0**: 2021-09-11
517

618
* Improve the init process by purging the whole USB buffer before attemping an handshake (this prevent an issue preventing the handshake to take place in some cases after an Arduino reset)

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name=KerbalSimpit
2-
version=2.3.0
2+
version=2.4.0
33
author=Rogor, LRTNZ <simpit.team@gmail.com>
4-
maintainer=Rogor, LRTNZ <simpit.team@gmail.com>
4+
maintainer=Rogor, LRTNZ, Tetopia <simpit.team@gmail.com>
55
sentence=A library for interfacing with the Kerbal Space Program video game.
66
paragraph=Works with an accompanying KSP plugin (https://github.com/Simpit-team), to allow your Arduino to receive telemetry and send commands over a serial connection.
77
category=Communication

src/KerbalSimpit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "KerbalSimpitMessageTypes.h"
1010
#include "PayloadStructs.h"
1111

12-
const char KERBALSIMPIT_VERSION[] = "1.3.0"; /**< Library version sent to the plugin for compatibility checking. */
12+
const char KERBALSIMPIT_VERSION[] = "2.4.0"; /**< Library version sent to the plugin for compatibility checking. */
1313
const byte MAX_PAYLOAD_SIZE = 32; /**< Maximum payload size does not include header. Header is 4 chars. */
1414

1515
/** The KerbalSimpit class manages a serial connection to KSP.

0 commit comments

Comments
 (0)