View allAll Photos Tagged hacks
Sábado 18 de mayo. Alumnos de 4to de Secundaria, Yellows 2020, participaron en la 5ta Edición del Hack Escolar organizados por Silabuz y Código Perú.
Photo from the turn of the 20th century showing a horse and cart in front of Hacking’s bakery and what was to become the New Ship Methodist Chapel on Walmsgate, Barnoldswick.
First DevCamp to bring hacks & hackers together to build iPad apps. May 22 at KQED. Photos by @Deifell
Pier Luca Santoro - DataMediaHub
Pierluigi Vitale - fondatore Socialistening.it
Nell'hackathon verranno resi machine readable i contenuti relativi ai finanziamenti all'editoria dal 2003 al 2014, saranno evidenziati i casi "anomali" e saranno effettuate le relative infografiche. Oltre a fare finalmente luce a fondo sulla questione i partecipanti impareranno a fare scraping ed a realizzare infografiche.
Sábado 18 de mayo. Alumnos de 4to de Secundaria, Yellows 2020, participaron en la 5ta Edición del Hack Escolar organizados por Silabuz y Código Perú.
// Wire Master Reader
// by Nicholas Zambetti
// Demonstrates use of the Wire library
// Reads data from an I2C/TWI slave device
// Refer to the "Wire Slave Sender" example for use with this
// Created 29 March 2006
// This example code is in the public domain.
#include
void setup()
{
Serial.begin(9600); // start serial for output
Wire.begin(0x0D);
}
byte a[10];
void loop()
{
Wire.beginTransmission(0x0D);
Wire.send(0);
Wire.endTransmission();
Wire.requestFrom(0x0D, 23);
for (int i=0; i 0 clockwise <255 anticlockwise
Serial.print(' ');
Serial.println(a[21],DEC); //rotation dir 0=clockwise 255=anticlockwise
}