Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Tainter committed Jan 17, 2017
1 parent 9deb18d commit 0951ff6
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions doorlock.js
Expand Up @@ -3,8 +3,8 @@
//*** SMARTPHONE DOORLOCK ***//

// ************* PARAMETERS *************** //
//
// Parameters: unlockedState and lockedState
//
// These parameters are in microseconds.
// The servo pulse determines the degree
// at which the horn is positioned. In our
Expand All @@ -17,9 +17,18 @@
// The GPIO pin the signal wire on your servo
// is connected to
//
// Parameter: blynkToke
// Parameters: buttonPin
// The GPIO pin the signal wire on your button
// is connected to. It is okay to have no button connected
//
// Parameters: ledPin
// The GPIO pin the signal wire on your led
// is connected to. It is okay to have no ledconnected
//
// Parameter: blynkToken
// The token which was generated for your blynk
// project
//
// **************************************** //
var unlockedState = 1000;
var lockedState = 2200;
Expand Down

0 comments on commit 0951ff6

Please sign in to comment.