13

Tessel Introduction

Embed Size (px)

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

Citation preview

Page 1: Tessel Introduction
Page 2: Tessel Introduction

The InternetCC3000 Wifi Chip

Page 3: Tessel Introduction

The InternetCC3000 Wifi Chip

The BrainARM Cortex M3 Microprocessor

Page 4: Tessel Introduction

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

Page 5: Tessel Introduction

npm install tessel -g

Installing

Page 6: Tessel Introduction

npm install tessel -g

Installing

tessel update

Updating

Page 7: Tessel Introduction

npm install tessel -g

Installing

tessel update

Updating

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

Getting online

Page 8: Tessel Introduction

Blinking Lights

var tessel = require(‘tessel’);

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

}, 100);

tessel run blink.js

Page 9: Tessel Introduction
Page 10: Tessel Introduction

Camera

Page 11: Tessel Introduction

Camera

npm install camera-vc0706

Page 12: Tessel Introduction

npm install camera-vc0706

camera.takePicture(function (){})

Camera

Page 13: Tessel Introduction

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

Happy hacking!@technicalhumans