Skip to content

Commit

Permalink
Bumping version to 1.4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jun 28, 2019
1 parent 3276a6d commit ab1bd5f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## 1.4.13 - 2019-06-28
## 1.4.14 - 2019-06-28
* Update deps
* Use --self-contained for Firmware
* Hook into view
Expand Down
4 changes: 2 additions & 2 deletions src/Client/ReleaseNotes.fs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module internal ReleaseNotes

let Version = "1.4.13"
let Version = "1.4.14"

let IsPrerelease = false

let Notes = """
# Release Notes
## 1.4.13 - 2019-06-28
## 1.4.14 - 2019-06-28
* Update deps
* Use --self-contained for Firmware
* Hook into view
Expand Down
15 changes: 12 additions & 3 deletions src/PiServer/read-tag.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
"use strict";
const mfrc522 = require("mfrc522-rpi");
//# Init WiringPi with SPI Channel 0
mfrc522.initWiringPi(0);
const Mfrc522 = require("mfrc522-rpi");
const SoftSPI = require("rpi-softspi");

const softSPI = new SoftSPI({
clock: 23, // pin number of SCLK
mosi: 19, // pin number of MOSI
miso: 21, // pin number of MISO
client: 24 // pin number of CS
});

// GPIO 24 can be used for buzzer bin (PIN 18), Reset pin is (PIN 22).
const mfrc522 = new Mfrc522(softSPI).setResetPin(22).setBuzzerPin(18);

function decimalToHex(d) {
var padding = 2;
Expand Down

0 comments on commit ab1bd5f

Please sign in to comment.