Skip to content

Instantly share code, notes, and snippets.

View monchopena's full-sized avatar
💛
All you need is love!

Moncho Pena monchopena

💛
All you need is love!
View GitHub Profile
@monchopena
monchopena / ardunio_password.h
Created May 21, 2018 18:05
This is a simple demo for the Arduino Wifi Shield
#define SECRET_SSID "wifiname"
#define SECRET_PASS "secret"
@monchopena
monchopena / arduino_demo.ino
Created December 22, 2017 11:47
Programa de Arduino que espera comandos por puerto Serial
const int pinLED = 13;
void setup()
{
Serial.begin(9600);
pinMode(pinLED, OUTPUT);
}
void loop()
{
@monchopena
monchopena / arduino_demo.py
Created December 22, 2017 11:45
Ejemplo de Programa de Arduino conectado por USB a Raspberry PI
"""A demo of the Google CloudSpeech recognizer."""
import os
import aiy.audio
import aiy.cloudspeech
import aiy.voicehat
import serial, time