Skip to content

Commit

Permalink
Merge pull request #1 from bflatau/master
Browse files Browse the repository at this point in the history
Master
  • Loading branch information
bflatau authored Jan 7, 2022
2 parents abde238 + badf7d0 commit 810c20a
Show file tree
Hide file tree
Showing 61 changed files with 4,021 additions and 796 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "ext/splitflap"]
path = ext/splitflap
url = https://github.com/scottbez1/splitflap.git
branch = dev/chainlinkBaseUpdates
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,15 @@ to run node as a sudo user:

to run npm as a sudo user:
`sudo "$(which npm)" install -g angular-cli`

`to pull submodule `
git submodule update --init --recursive

`install typescript globally (as root)`
npm install -g typescript

`scott note`
had to add this in the splitflapjs folder: npm i --save-dev @types/node
working with Node:

v12.22.5
3 changes: 3 additions & 0 deletions arduino/RFIDTEST/RFIDTEST.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ void setup()
Serial.begin(9600); // Initiate a serial communication
SPI.begin(); // Initiate SPI bus
mfrc522.PCD_Init(); // Initiate MFRC522
pinMode(7, OUTPUT); // Set the board pin to blink
Serial.println("Approximate your card to the reader...");
Serial.println();

Expand Down Expand Up @@ -58,7 +59,9 @@ void loop()

else {
Serial.println(" Access denied");
digitalWrite (7, HIGH);
delay(3000);
digitalWrite (7, LOW);
}
}

Expand Down
3 changes: 3 additions & 0 deletions arduino/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
https://randomnerdtutorials.com/security-access-using-mfrc522-rfid-reader-with-arduino/

https://github.com/miguelbalboa/rfid/
Binary file added arduino/rfid-master.zip
Binary file not shown.
Binary file modified codeart_backend/.DS_Store
Binary file not shown.
8 changes: 7 additions & 1 deletion codeart_backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ for sysdevpath in $(find /sys/bus/usb/devices/usb*/ -name dev); do
[[ -z "$ID_SERIAL" ]] && exit
echo "/dev/$devname - $ID_SERIAL"
)
done
done


take off raspi-io for non raspi development


"splitflapjs": "file:../ext/splitflap/software/js/splitflapjs"
Loading

0 comments on commit 810c20a

Please sign in to comment.