Entradas

SKETCHUP 7

Imagen

SKETCHUP6

Imagen

SKETCHUP 5

Imagen

SKETCHUP 4

Imagen

SKETCHUP 3

Imagen

SKETCH UP 2

Imagen

SKETCHUP 1

Imagen

EJEMPLO DE CÓDIGO DE MATRIZ

CÓDIGO EN ARDUINO BLOCKS BLOG ORIGINAL DEL CÓDIGO #include < SPI . h > #include < Wire . h > #include < Adafruit_GFX . h > #include < Adafruit_LEDBackpack . h > double i ; Adafruit_8x8matrix ledmatrix_1 = Adafruit_8x8matrix ( ) ; double math_random_int ( int a , int b ) {   if ( a > b ) {     int c = a ;     a = b ;     b = c ;   }   return ( double ) random ( a , b + 1 ) ; } static const uint8_t PROGMEM ledmatrix_data_sprite_face_happy [ ] PROGMEM = { B00000000 , B01100110 , B01100110 , B00000000 , B00000000 , B11000011 , B01100110 , B00111100 } ; static const uint8_t PROGMEM ledmatrix_data_sprite_face_sad [ ] PROGMEM = { B00000000 , B01100110 , B00100100 , B00000000 , B00111100 , B01100110 , B11000011 , B10000001 } ; static const uint8_t PROGMEM ledmatrix_data_sprite_face_angry [ ] PROGMEM = { B00000000 , B01000010 , B01100110 , B00000000 , B00000000 , B11111111 , B10100101 , B11111111

POSIBLE CÓDIGO PARA GUANTELETE

#include < EducationShield . h > VUMeter me ; int pins [ ] = { 3 , 5 , 6 , 9 , 10 , 11 } ; int pinCount = 6 ; int ORANGE = 3 ; int RED = 5 ; int BLUE = 6 ; int PURPLE = 9 ; int GREEN = 10 ; int YELLOW = 11 ; void setup ( ) { me . config ( pinCount , pins ) ; me . begin ( ) ; // put your setup code here, to run once: } void loop ( ) {   for ( int i = 0 ; i <= 255 ; i ++ ) {     analogWrite ( ORANGE , i ) ;     delay ( 10 ) ; } for ( int i = 0 ; i <= 255 ; i ++ ) {     analogWrite ( RED , i ) ;     delay ( 10 ) ; }     for ( int i = 0 ; i <= 255 ; i ++ ) {     analogWrite ( BLUE , i ) ;     delay ( 10 ) ; }     for ( int i = 0 ; i <= 255 ; i ++ ) {     analogWrite ( PURPLE , i ) ;     delay ( 10 ) ; }     for ( int i = 0 ; i <= 255 ; i ++ ) {     analogWrite ( GREEN , i ) ;     delay ( 10 ) ; }     for ( int i = 0 ; i &

SPOT DE AUDACITY

Este es nuestro anuncio de radio. Promocionamos un pack "PremiumPlus" en una plataforma de música, llamada "AllRecords". Ofrecemos toda la música que existe, sin ninguna interrupción por los anuncios, la posibilidad de reproducción en bucle y sin orden en las listas propias o públicas. Nos pareció un buen tema, ya que la mayoría de nosotros escuchamos cualquier tipo de música durante todo el día. Con estos controles, podremos dedicar más tiempo a la música más cómodamente. Hemos utilizado 10 pistas diferentes. 9 de ellas son nuestras voces, y la música de fondo es la décima. El título original es " Birds ", de Coldplay , pero la hemos usado en su versión instrumental. Utilizamos el efecto de la reducción de sonido, para el ruido de fondo, el efecto de cambio de tono, o la herramienta de envolvente. "ALLRECORDS" SPOT 

RESUMEN BLOQUE 3

Imagen

ENCUESTA DE ARDUINO

Imagen

DRAWDIO

Imagen
#include < EducationShield . h > #include "pitches.h" CapacitiveSwitch me = CapacitiveSwitch ( 2 , 3 ) ; Melody speaker = Melody ( 8 ) ; int lowerThreshold = 200 ; int upperThreshold = 1100 ; int toneLow = NOTE_C3 ; int toneHigh = NOTE_B6 ; void setup ( ) { } void loop ( ) {     int value = me . getValue ( lowerThreshold ) ;     int pitch ;   if ( value > 0 ) {     pitch = map ( value , lowerThreshold , upperThreshold , toneLow , toneHigh ) ;   } else {     pitch = 0 ;   }     speaker . playTone ( pitch , 10 ) ; }

P.O.V.

Imagen
int ledPins [ ] = { 2 , 3 , 4 , 5 , 7 } ; int pinCount = 5 ; VUMeter vuMeter ; int rowCount = 0 ; int rowLength = 22 ; int delayTime = 9 ; // The message where 0 is LOW and 1 is HIGH boolean message [ 5 ] [ 22 ] = {   // H H H H   O O O O   L L L L   A A A A   { 0 , 1 , 0 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 1 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 0 , 0 , 0 } ,   { 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 } ,   { 0 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 0 , 0 } ,   { 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 0 , 0 , 1 , 0 , 0 } ,   { 0 , 1 , 0 , 0 , 1 , 0 , 0 , 1 , 1 , 0 , 0 , 1 , 1 , 1 , 1 , 0 , 1 , 0 , 0 , 1 , 0 , 0 } } ; void setup ( ) {   vuMeter . config ( pinCount , ledPins ) ;   vuMeter . begin ( ) ; } void loop ( ) {   if ( rowCount == rowLength ) {     rowCount = 0 ;   } else {     for ( in

PRUEBAS CON MOTOR DC

int motor = 9 ; void setup ( ) {   pinMode ( motor , OUTPUT ) ; // put your setup code here, to run once: } void loop ( ) { digitalWrite ( motor , HIGH ) ; delay ( 1000 ) ; digitalWrite ( motor , LOW ) ; delay ( 1000 ) ; // put your main code here, to run repeatedly: }

ENTRADAS ANALÓGICAS 5

Imagen

AUDACITY (AUDIOS)

Imagen

SIGUE EXPERIMENTANDO 2

int buzzer = 9 ; int val = 0 ; void setup ( ) { pinMode ( buzzer , OUTPUT ) ; } void loop ( ) { int val = analogRead ( A0 ) ; tone ( buzzer , val , 500 ) ; delay ( 2000 ) ; }

BLOQUE 3 SEÑALES ANALÓGICAS 4

Imagen

BLOQUE 3 SEÑALES ANALÓGICAS 3

Imagen