Andre Garzia
I am a software developer and technologist from Niteroi, Brazil working on resources for unlocking new digital skills across the world.
npm i -g t2-cli
Dificuldade em instalar, siga as instruções do "getting started" do Tessel 😘
// Importe a biblioteca de hardware do Tessel
var tessel = require('tessel');
// Inicie com um dos LEDs acesos.
tessel.led[2].on();
// Pisca!
setInterval(function () {
tessel.led[2].toggle();
tessel.led[3].toggle();
}, 100);
console.log("To piscando! (Aperte CTRL + C para parar)");
Será que você consegue fazer um remix juntando o experimento1 e o experimento2?
By Andre Garzia
Um workshop sobre IoT com NodeMCU e Lua
I am a software developer and technologist from Niteroi, Brazil working on resources for unlocking new digital skills across the world.