Skip to content

Commit 8b7b0a2

Browse files
committed
Update README.md, examples
1 parent 304fdbf commit 8b7b0a2

File tree

13 files changed

+24
-18
lines changed

13 files changed

+24
-18
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ For example, an Arduino Uno (with an ethernet/wifi module) or the inexpensive No
66
* Apple Home and Siri:
77
![HomeKit](https://user-images.githubusercontent.com/12835671/39588413-5a99099a-4ec1-11e8-9a2e-e332fa2d6379.jpg)
88

9-
* Home Assistant:
9+
* [Home Assistant](https://www.home-assistant.io):
1010
![HomeAssistant](https://user-images.githubusercontent.com/12835671/42108879-7362ccf6-7ba1-11e8-902e-d6cb25483a00.png)
1111

12-
* Blynk virtual keypad:
12+
* [Blynk](https://www.blynk.cc) virtual keypad:
1313

1414
![dsc-blynk](https://user-images.githubusercontent.com/12835671/42364975-add27c94-80c2-11e8-8a55-9d6d168ff8c1.png)
1515

@@ -25,7 +25,7 @@ For example, an Arduino Uno (with an ethernet/wifi module) or the inexpensive No
2525
- esp8266: NodeMCU, Wemos D1 Mini, ESP12, etc
2626

2727
## Release notes
28-
* 1.0-develop
28+
* 1.0
2929
- New: [Blynk](https://www.blynk.cc) virtual keypad example sketch and app layout examples
3030
- New: Virtual keypad support for PGM terminals 1-4 command output
3131
- New: Status `dsc.keybusConnected` to check if data is being received from the DSC panel
@@ -51,7 +51,7 @@ For example, an Arduino Uno (with an ethernet/wifi module) or the inexpensive No
5151
- Note: This release changes the library methods to accomodate multiple partitions, existing sketches will need to be updated to match the new example sketches.
5252
* 0.2
5353
- New: Status for zones 9-32
54-
- New: HomeAssistant integration example sketch
54+
- New: [Home Assistant](https://www.home-assistant.io) integration example sketch
5555
- New: Panel data buffering, adds `dscBufferSize` to `dscKeybusInterface.h` to allow configuration of how many panel commands are buffered to customize memory usage (uses 18 bytes of memory per command buffered).
5656
* 0.1 - Initial release
5757

examples/Arduino/HomeAssistant-MQTT/HomeAssistant-MQTT.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* HomeAssistant-MQTT 0.4 (Arduino)
2+
* HomeAssistant-MQTT 1.0 (Arduino)
33
*
44
* Processes the security system status and allows for control using Home Assistant via MQTT.
55
*

examples/Arduino/Homebridge-MQTT/Homebridge-MQTT.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Homebridge-MQTT 0.4 (Arduino)
2+
* Homebridge-MQTT 1.0 (Arduino)
33
*
44
* Processes the security system status and allows for control using Apple HomeKit, including the iOS Home app and
55
* Siri. This uses MQTT to interface with Homebridge and the homebridge-mqttthing plugin for HomeKit integration

examples/Arduino/KeybusReader/KeybusReader.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* DSC Keybus Reader 0.4 (Arduino)
2+
* DSC Keybus Reader 1.0 (Arduino)
33
*
44
* Decodes and prints data from the Keybus to a serial interface, including reading from serial for the virtual
55
* keypad. This is primarily to help decode the Keybus protocol - see the Status examples to put the interface

examples/esp8266/Email/Email.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Email Notification 0.4 (esp8266)
2+
* Email Notification 1.0 (esp8266)
33
*
44
* Processes the security system status and demonstrates how to send an email when the status has changed. Configure
55
* the email SMTP server settings in sendEmail().

examples/esp8266/HomeAssistant-MQTT/HomeAssistant-MQTT.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* HomeAssistant-MQTT 0.4 (esp8266)
2+
* HomeAssistant-MQTT 1.0 (esp8266)
33
*
44
* Processes the security system status and allows for control using Home Assistant via MQTT.
55
*

examples/esp8266/Homebridge-MQTT/Homebridge-MQTT.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Homebridge-MQTT 0.4 (esp8266)
2+
* Homebridge-MQTT 1.0 (esp8266)
33
*
44
* Processes the security system status and allows for control using Apple HomeKit, including the iOS Home app and
55
* Siri. This uses MQTT to interface with Homebridge and the homebridge-mqttthing plugin for HomeKit integration

examples/esp8266/Homey/Homey.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Homey 0.4 (esp8266)
2+
* Homey 1.0 (esp8266)
33
*
44
* Processes the security system status for partition 1 and allows for control using Athom Homey.
55
*

examples/esp8266/KeybusReader/KeybusReader.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* DSC Keybus Reader 0.4 (esp8266)
2+
* DSC Keybus Reader 1.0 (esp8266)
33
*
44
* Decodes and prints data from the Keybus to a serial interface, including reading from serial for the virtual
55
* keypad. This is primarily to help decode the Keybus protocol - see the Status examples to put the interface

examples/esp8266/Pushbullet/Pushbullet.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Pushbullet Push Notification 0.4 (esp8266)
2+
* Pushbullet Push Notification 1.0 (esp8266)
33
*
44
* Processes the security system status and demonstrates how to send a push notification when the status has changed.
55
* This example sends notifications via Pushbullet: https://www.pushbullet.com

0 commit comments

Comments
 (0)