Skip to content

Commit

Permalink
Merge pull request #1 from tessel/kb-nits-on-nits
Browse files Browse the repository at this point in the history
hopefully improvements
  • Loading branch information
rwaldron committed Oct 14, 2015
2 parents 1397401 + 3d8df6b commit aeb5a64
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 12 additions & 1 deletion blinky.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Great! Now you're set up to run code on Tessel. Your "tessel-code" folder now co
// Import the interface to Tessel hardware
var tessel = require('tessel');

// Turn one of the LEDs on to start.
// Turn one of the LEDs on to start.
tessel.led[2].on();

setInterval(function () {
Expand All @@ -44,6 +44,11 @@ setInterval(function () {
}, 100);
{% endhighlight %}

</div>
</div>
<div class="row">
<div class="large-9 columns">

In your command line, enter

`t2 run index.js`
Expand All @@ -52,8 +57,14 @@ to run your code in Tessel's RAM.

**Look at your Tessel!** The blue and green LEDs on your Tessel's LED panel should blink back and forth.

</div>
<div class="large-3 columns">

![](http://i.imgur.com/kZIZNcL.gif)

</div>
</div>

<hr>

**Bonus:** mess with the code to make the LEDs blink in sync.
Expand Down
4 changes: 3 additions & 1 deletion wifi.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ To connect to a new network, enter in your command line (without brackets)

`t2 wifi -n <network-name> -p <password>`

Tessel 2 will save network credentials and attempt to reconnect automatically on startup. Wifi connectivity is indicated by the ob-board Wifi LED, which will blink with every packet it receives.
Tessel 2 will save network credentials and attempt to reconnect automatically on startup.

Wifi connectivity is indicated by the on-board amber Wifi LED, which will blink with every packet it receives.

</div>
<div class="large-6 columns">
Expand Down

0 comments on commit aeb5a64

Please sign in to comment.