Skip to content

Commit fa7b389

Browse files
committed
Moved bonescript to node_modules
1 parent 8ed5d0c commit fa7b389

16 files changed

Lines changed: 6 additions & 6 deletions

File tree

analog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var bb = require('./bonescript');
1+
var bb = require('bonescript');
22

33
var inputPin = bone.P9_39;
44
var outputPin = bone.P9_14;
@@ -12,4 +12,4 @@ loop = function() {
1212
analogWrite(outputPin, value);
1313
};
1414

15-
bb.run();
15+
bb.run();

blinkled.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var bb = require('./bonescript');
1+
var bb = require('bonescript');
22

33
var ledPin = bone.P8_3;
44
var ledPin2 = bone.USR3;
@@ -17,4 +17,4 @@ loop = function() {
1717
delay(1000);
1818
};
1919

20-
bb.run();
20+
bb.run();

input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var bb = require('./bonescript');
1+
var bb = require('bonescript');
22

33
var outputPin = bone.P8_3;
44
var inputPin = bone.P8_5;
File renamed without changes.

0 commit comments

Comments
 (0)