Tessel Introduction

Post on 05-Jul-2015

89 views 0 download

description

Tessel is a microcontroller that runs JavaScript. It's Node-compatible and ships with Wifi built in. Use it to easily make physical devices that connect to the web. Website: http://tessel.io

Transcript of Tessel Introduction

The InternetCC3000 Wifi Chip

The InternetCC3000 Wifi Chip

The BrainARM Cortex M3 Microprocessor

The InternetCC3000 Wifi Chip

The BrainARM Cortex M3 Microprocessor

Enough Memory...that you probably don’t have to worry about it

32MB each of Flash and RAM

npm install tessel -g

Installing

npm install tessel -g

Installing

tessel update

Updating

npm install tessel -g

Installing

tessel update

Updating

tessel wifi -n <ssid> -p <pw>

Getting online

Blinking Lights

var tessel = require(‘tessel’);

setInterval(function () {tessel.led[0].toggle();

}, 100);

tessel run blink.js

Camera

Camera

npm install camera-vc0706

npm install camera-vc0706

camera.takePicture(function (){})

Camera

Get started at tessel.io/startSee projects at tessel.io/projectsFind documentation at tessel.io/docs

Happy hacking!@technicalhumans