Entradas

Mostrando entradas de abril, 2019

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 ...