Revisions
-
DiegoTc revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ Preview Card 1 You Will Need Wiring Code -
DiegoTc revised this gist
Aug 6, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ var b = require('bonescript'); var led = "P8_12"; var state = 0; b.pinMode(led, 'out'); -
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,8 +13,7 @@ </span> </p> <p> <span style="font-family: 'Gotham SSm A', 'Gotham SSm B';"> <img src="https://learn.adafruit.com/system/assets/assets/000/009/108/medium800/beaglebone_fritzing.png?1396883299" style="width: 263px; float: none;"> <br> </span> </p> -
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ Preview Card 1 You Will Need Wiring Writing the program -
DiegoTc revised this gist
Jul 23, 2014 . 3 changed files with 1 addition and 1 deletion.There are no files selected for viewing
File renamed without changes.File renamed without changes.This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ Overview You Will Need Wiring Writing the program -
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1 @@ <h5 style="font-family: 'Gotham SSm A', 'Gotham SSm B'; line-height: 20px; color: rgb(0, 0, 0); margin: 0px; font-size: 16px; padding-bottom: 5px;"><span style="color: rgb(0, 172, 236); background-position: initial;">Blinking an LED with BeagleBone Black<br><span style="color: rgb(51, 51, 51); font-size: 13px; line-height: 18.571430206298828px; background-color: rgb(255, 255, 255); background-position: initial;">Make an LED Blink using Python on a BeagleBone Black<br></span><span style="color: rgb(51, 51, 51); font-size: 12px; line-height: 17.142858505249023px; background-color: rgb(255, 255, 255); background-position: initial;">In this tutorial, you will learn how to control an external LED using a BeagleBone Black (BBB) from Bonescript Library.<br></span><img src="https://learn.adafruit.com/system/guides/images/000/000/309/medium310/overview.jpg?1396718934" style="width: 152.25px; height: 92.59375px;"><br></span></h5> -
DiegoTc revised this gist
Jul 23, 2014 . 2 changed files with 17 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ var b = require('bonescript'); var led = "P8_10"; var state = 0; b.pinMode(led, 'out'); toggleLED = function() { state = state ? 0 : 1; b.digitalWrite(led, state); }; timer = setInterval(toggleLED, 100); stopTimer = function() { clearInterval(timer); }; setTimeout(stopTimer, 3000); File renamed without changes. -
DiegoTc revised this gist
Jul 23, 2014 . 2 changed files with 30 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,29 @@ <p> <span style="font-family: 'Gotham SSm A', 'Gotham SSm B'; font-size: 30px; line-height: 30px;"> Wiring </span> <br> </p> <p> <span style="font-family: 'Gotham SSm A', 'Gotham SSm B';"> Wire up the solderless breadboard using the header leads as shown below. </span> <span style="font-family: 'Gotham SSm A', 'Gotham SSm B'; font-size: 30px; line-height: 30px;"> <br> </span> </p> <p> <span style="font-family: 'Gotham SSm A', 'Gotham SSm B';"> <img src="https://learn.adafruit.com/system/assets/assets/000/009/108/medium800/beaglebone_fritzing.png?1396883299" style="width: 263px;"> <br> </span> </p> <p> <span style="font-family: 'Gotham SSm A', 'Gotham SSm B';"> Push the LED leads into the breadboard, with the longer (positive) lead towards the top of the breadboard. It does not matter which way around the resistor goes. </span> <span style="font-family: 'Gotham SSm A', 'Gotham SSm B';"> <br> </span> </p> <span style="font-family: 'Gotham SSm A', 'Gotham SSm B';">The top two connections on the BBB expansion header we are using (P8) are both GND. The other lead is connected to pin 10, which is the right-hand connector on the fifth row down. The pins are numbered left to right, 1, 2 then on the next row down 3,4 etc.</span> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ Overview You Will Need Card 3 Wiring -
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
-
DiegoTc revised this gist
Jul 23, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ <p><span style="font-family: 'Gotham SSm A', 'Gotham SSm B'; font-size: 30px; line-height: 30px;">Wiring</span><br></p><p><span style="font-family: 'Gotham SSm A', 'Gotham SSm B';">Wire up the solderless breadboard using the header leads as shown below.</span><span style="font-family: 'Gotham SSm A', 'Gotham SSm B'; font-size: 30px; line-height: 30px;"><br></span></p><p><span style="font-family: 'Gotham SSm A', 'Gotham SSm B';"><img src="https://learn.adafruit.com/system/assets/assets/000/009/108/medium800/beaglebone_fritzing.png?1396883299" style="width: 263px;"><br></span></p><p><span style="font-family: 'Gotham SSm A', 'Gotham SSm B';">Push the LED leads into the breadboard, with the longer (positive) lead towards the top of the breadboard. It does not matter which way around the resistor goes.</span><span style="font-family: 'Gotham SSm A', 'Gotham SSm B';"><br></span></p> -
DiegoTc revised this gist
Jul 23, 2014 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ Overview You Will Need Card 3 Card 4 -
DiegoTc revised this gist
Jul 23, 2014 . No changes.There are no files selected for viewing
NewerOlder