Difference between revisions of "Students/Ian Petrov"

From Robert-Depot
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 43: Line 43:
 
----
 
----
 
<pre>
 
<pre>
<span style="color: #7E7E7E;">//Ian&nbsp;Petrov&nbsp;VIS147A&nbsp;Final</span>
+
//Ian Petrov VIS147A Final
<span style="color: #7E7E7E;">//code&nbsp;edited&nbsp;from&nbsp;Adafruit&nbsp;Wave&nbsp;Shield&nbsp;Site</span>
+
//code edited from Adafruit Wave Shield Site
#include&nbsp;<FatReader.h>
+
#include <FatReader.h>
#include&nbsp;<SdReader.h>
+
#include <SdReader.h>
#include&nbsp;<avr/pgmspace.h>
+
#include <avr/pgmspace.h>
#include&nbsp;<span style="color: #006699;">"WaveUtil.h"</span>
+
#include "WaveUtil.h"
#include&nbsp;<span style="color: #006699;">"WaveHC.h"</span>
+
#include "WaveHC.h"
  
  
SdReader&nbsp;card;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #7E7E7E;">// This object holds the information for the card</span>
+
SdReader card;   // This object holds the information for the card
FatVolume&nbsp;vol;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #7E7E7E;">// This holds the information for the partition on the card</span>
+
FatVolume vol;   // This holds the information for the partition on the card
FatReader&nbsp;root;&nbsp;&nbsp;&nbsp;<span style="color: #7E7E7E;">// This holds the information for the filesystem on the card</span>
+
FatReader root;   // This holds the information for the filesystem on the card
FatReader&nbsp;f;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #7E7E7E;">// This holds the information for the file we're play</span>
+
FatReader f;     // This holds the information for the file we're play
  
WaveHC&nbsp;wave;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #7E7E7E;">// This is the only wave (audio) object, since we will only play one at a time</span>
+
WaveHC wave;     // This is the only wave (audio) object, since we will only play one at a time
  
#define&nbsp;DEBOUNCE&nbsp;100&nbsp;&nbsp;<span style="color: #7E7E7E;">// button debouncer</span>
+
#define DEBOUNCE 100 // button debouncer
  
<span style="color: #7E7E7E;">//&nbsp;this&nbsp;handy&nbsp;function&nbsp;will&nbsp;return&nbsp;the&nbsp;number&nbsp;of&nbsp;bytes&nbsp;currently&nbsp;free&nbsp;in&nbsp;RAM,&nbsp;great&nbsp;for&nbsp;debugging!&nbsp;&nbsp;&nbsp;</span>
+
// this handy function will return the number of bytes currently free in RAM, great for debugging!  
<span style="color: #CC6600;">int</span> freeRam(<span style="color: #CC6600;">void</span>)
+
int freeRam(void)
 
{
 
{
&nbsp;&nbsp;extern&nbsp;<span style="color: #CC6600;">int</span> __bss_end;  
+
  extern int  __bss_end;  
&nbsp;&nbsp;extern&nbsp;<span style="color: #CC6600;">int</span> *__brkval;  
+
  extern int  *__brkval;  
&nbsp;&nbsp;<span style="color: #CC6600;">int</span> free_memory;  
+
  int free_memory;  
&nbsp;&nbsp;<span style="color: #CC6600;">if</span>((<span style="color: #CC6600;">int</span>)__brkval == 0) {
+
  if((int)__brkval == 0) {
&nbsp;&nbsp;&nbsp;&nbsp;free_memory&nbsp;=&nbsp;((<span style="color: #CC6600;">int</span>)&free_memory) - ((<span style="color: #CC6600;">int</span>)&__bss_end);  
+
    free_memory = ((int)&free_memory) - ((int)&__bss_end);  
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;<span style="color: #CC6600;">else</span> {
+
  else {
&nbsp;&nbsp;&nbsp;&nbsp;free_memory&nbsp;=&nbsp;((<span style="color: #CC6600;">int</span>)&free_memory) - ((<span style="color: #CC6600;">int</span>)__brkval);  
+
    free_memory = ((int)&free_memory) - ((int)__brkval);  
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;<span style="color: #CC6600;">return</span> free_memory;  
+
  return free_memory;  
}&nbsp;
+
}  
  
<span style="color: #CC6600;">void</span> sdErrorCheck(<span style="color: #CC6600;">void</span>)
+
void sdErrorCheck(void)
 
{
 
{
&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (!card.errorCode()) <span style="color: #CC6600;">return</span>;
+
  if (!card.errorCode()) return;
&nbsp;&nbsp;putstring(<span style="color: #006699;">"\n\rSD I/O error: "</span>);
+
  putstring("\n\rSD I/O error: ");
&nbsp;&nbsp;<span style="color: #CC6600;"><b>Serial</b></span>.<span style="color: #CC6600;">print</span>(card.errorCode(), <span style="color: #006699;">HEX</span>);
+
  Serial.print(card.errorCode(), HEX);
&nbsp;&nbsp;putstring(<span style="color: #006699;">", "</span>);
+
  putstring(", ");
&nbsp;&nbsp;<span style="color: #CC6600;"><b>Serial</b></span>.<span style="color: #CC6600;">println</span>(card.errorData(), <span style="color: #006699;">HEX</span>);
+
  Serial.println(card.errorData(), HEX);
&nbsp;&nbsp;<span style="color: #CC6600;">while</span>(1);
+
  while(1);
 
}
 
}
  
<span style="color: #CC6600;">void</span> <span style="color: #CC6600;"><b>setup</b></span>() {
+
void setup() {
&nbsp;&nbsp;<span style="color: #7E7E7E;">// set up serial port</span>
+
  // set up serial port
&nbsp;&nbsp;<span style="color: #CC6600;"><b>Serial</b></span>.<span style="color: #CC6600;">begin</span>(9600);
+
  Serial.begin(9600);
&nbsp;&nbsp;putstring_nl(<span style="color: #006699;">"WaveHC with 6 buttons"</span>);
+
  putstring_nl("WaveHC with 6 buttons");
&nbsp;&nbsp;
+
 
&nbsp;&nbsp;&nbsp;putstring(<span style="color: #006699;">"Free RAM: "</span>);      <span style="color: #7E7E7E;">// This can help with debugging, running out of RAM is bad</span>
+
  putstring("Free RAM: ");      // This can help with debugging, running out of RAM is bad
&nbsp;&nbsp;<span style="color: #CC6600;"><b>Serial</b></span>.<span style="color: #CC6600;">println</span>(freeRam());      <span style="color: #7E7E7E;">// if this is under 150 bytes it may spell trouble!</span>
+
  Serial.println(freeRam());      // if this is under 150 bytes it may spell trouble!
&nbsp;&nbsp;
+
 
&nbsp;&nbsp;<span style="color: #7E7E7E;">// Set the output pins for the DAC control. This pins are defined in the library</span>
+
  // Set the output pins for the DAC control. This pins are defined in the library
&nbsp;&nbsp;<span style="color: #CC6600;">pinMode</span>(2, <span style="color: #006699;">OUTPUT</span>);
+
  pinMode(2, OUTPUT);
&nbsp;&nbsp;<span style="color: #CC6600;">pinMode</span>(3, <span style="color: #006699;">OUTPUT</span>);
+
  pinMode(3, OUTPUT);
&nbsp;&nbsp;<span style="color: #CC6600;">pinMode</span>(4, <span style="color: #006699;">OUTPUT</span>);
+
  pinMode(4, OUTPUT);
&nbsp;&nbsp;<span style="color: #CC6600;">pinMode</span>(5, <span style="color: #006699;">OUTPUT</span>);
+
  pinMode(5, OUTPUT);
&nbsp;
+
&nbsp;&nbsp;<span style="color: #7E7E7E;">// pin13 LED</span>
+
  // pin13 LED
&nbsp;&nbsp;<span style="color: #CC6600;">pinMode</span>(13, <span style="color: #006699;">OUTPUT</span>);
+
  pinMode(13, OUTPUT);
&nbsp;
+
&nbsp;&nbsp;<span style="color: #7E7E7E;">// enable pull-up resistors on switch pins (analog inputs)</span>
+
  // enable pull-up resistors on switch pins (analog inputs)
&nbsp;&nbsp;<span style="color: #CC6600;">digitalWrite</span>(14, <span style="color: #006699;">HIGH</span>);
+
  digitalWrite(14, HIGH);
&nbsp;&nbsp;<span style="color: #CC6600;">digitalWrite</span>(15, <span style="color: #006699;">HIGH</span>);
+
  digitalWrite(15, HIGH);
&nbsp;&nbsp;<span style="color: #CC6600;">digitalWrite</span>(16, <span style="color: #006699;">HIGH</span>);
+
  digitalWrite(16, HIGH);
&nbsp;&nbsp;<span style="color: #CC6600;">digitalWrite</span>(17, <span style="color: #006699;">HIGH</span>);
+
  digitalWrite(17, HIGH);
&nbsp;&nbsp;<span style="color: #CC6600;">digitalWrite</span>(18, <span style="color: #006699;">HIGH</span>);
+
  digitalWrite(18, HIGH);
&nbsp;&nbsp;<span style="color: #CC6600;">digitalWrite</span>(19, <span style="color: #006699;">HIGH</span>);
+
  digitalWrite(19, HIGH);
&nbsp;
+
&nbsp;&nbsp;<span style="color: #7E7E7E;">//  if (!card.init(true)) { //play with 4 MHz spi if 8MHz isn't working for you</span>
+
  //  if (!card.init(true)) { //play with 4 MHz spi if 8MHz isn't working for you
&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (!card.init()) {        <span style="color: #7E7E7E;">//play with 8 MHz spi (default faster!)  </span>
+
  if (!card.init()) {        //play with 8 MHz spi (default faster!)   
&nbsp;&nbsp;&nbsp;&nbsp;putstring_nl(<span style="color: #006699;">"Card init. failed!"</span>);  <span style="color: #7E7E7E;">// Something went wrong, lets print out why</span>
+
    putstring_nl("Card init. failed!");  // Something went wrong, lets print out why
&nbsp;&nbsp;&nbsp;&nbsp;sdErrorCheck();
+
    sdErrorCheck();
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">while</span>(1);                            <span style="color: #7E7E7E;">// then 'halt' - do nothing!</span>
+
    while(1);                            // then 'halt' - do nothing!
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;
+
 
&nbsp;&nbsp;<span style="color: #7E7E7E;">// enable optimize read - some cards may timeout. Disable if you're having problems</span>
+
  // enable optimize read - some cards may timeout. Disable if you're having problems
&nbsp;&nbsp;card.partialBlockRead(<span style="color: #CC6600;">true</span>);
+
  card.partialBlockRead(true);
&nbsp;
+
<span style="color: #7E7E7E;">//&nbsp;Now&nbsp;we&nbsp;will&nbsp;look&nbsp;for&nbsp;a&nbsp;FAT&nbsp;partition!</span>
+
// Now we will look for a FAT partition!
&nbsp;&nbsp;uint8_t&nbsp;part;
+
  uint8_t part;
&nbsp;&nbsp;<span style="color: #CC6600;">for</span> (part = 0; part < 5; part++) {    <span style="color: #7E7E7E;">// we have up to 5 slots to look in</span>
+
  for (part = 0; part < 5; part++) {    // we have up to 5 slots to look in
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (vol.init(card, part))  
+
    if (vol.init(card, part))  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">break</span>;                            <span style="color: #7E7E7E;">// we found one, lets bail</span>
+
      break;                            // we found one, lets bail
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (part == 5) {                      <span style="color: #7E7E7E;">// if we ended up not finding one  :(</span>
+
  if (part == 5) {                      // if we ended up not finding one  :(
&nbsp;&nbsp;&nbsp;&nbsp;putstring_nl(<span style="color: #006699;">"No valid FAT partition!"</span>);
+
    putstring_nl("No valid FAT partition!");
&nbsp;&nbsp;&nbsp;&nbsp;sdErrorCheck();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #7E7E7E;">// Something went wrong, lets print out why</span>
+
    sdErrorCheck();     // Something went wrong, lets print out why
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">while</span>(1);                            <span style="color: #7E7E7E;">// then 'halt' - do nothing!</span>
+
    while(1);                            // then 'halt' - do nothing!
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;
+
 
&nbsp;&nbsp;<span style="color: #7E7E7E;">// Lets tell the user about what we found</span>
+
  // Lets tell the user about what we found
&nbsp;&nbsp;putstring(<span style="color: #006699;">"Using partition "</span>);
+
  putstring("Using partition ");
&nbsp;&nbsp;<span style="color: #CC6600;"><b>Serial</b></span>.<span style="color: #CC6600;">print</span>(part, <span style="color: #006699;">DEC</span>);
+
  Serial.print(part, DEC);
&nbsp;&nbsp;putstring(<span style="color: #006699;">", type is FAT"</span>);
+
  putstring(", type is FAT");
&nbsp;&nbsp;<span style="color: #CC6600;"><b>Serial</b></span>.<span style="color: #CC6600;">println</span>(vol.fatType(),<span style="color: #006699;">DEC</span>);    <span style="color: #7E7E7E;">// FAT16 or FAT32?</span>
+
  Serial.println(vol.fatType(),DEC);    // FAT16 or FAT32?
&nbsp;&nbsp;
+
 
&nbsp;&nbsp;<span style="color: #7E7E7E;">// Try to open the root directory</span>
+
  // Try to open the root directory
&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (!root.openRoot(vol)) {
+
  if (!root.openRoot(vol)) {
&nbsp;&nbsp;&nbsp;&nbsp;putstring_nl(<span style="color: #006699;">"Can't open root dir!"</span>); <span style="color: #7E7E7E;">// Something went wrong,</span>
+
    putstring_nl("Can't open root dir!"); // Something went wrong,
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">while</span>(1);                            <span style="color: #7E7E7E;">// then 'halt' - do nothing!</span>
+
    while(1);                            // then 'halt' - do nothing!
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;
+
 
&nbsp;&nbsp;<span style="color: #7E7E7E;">// Whew! We got past the tough parts.</span>
+
  // Whew! We got past the tough parts.
&nbsp;&nbsp;putstring_nl(<span style="color: #006699;">"Ready!"</span>);
+
  putstring_nl("Ready!");
 
}
 
}
  
<span style="color: #CC6600;">void</span> playcomplete(<span style="color: #CC6600;">char</span> good) {
+
void playcomplete(char good) {
&nbsp;&nbsp;<span style="color: #7E7E7E;">// call our helper to find and play this name</span>
+
  // call our helper to find and play this name
&nbsp;&nbsp;playfile(<span style="color: #006699;">"GOOD.WAV"</span>);
+
  playfile("GOOD.WAV");
&nbsp;&nbsp;<span style="color: #CC6600;">while</span> (wave.isplaying) {
+
  while (wave.isplaying) {
&nbsp;&nbsp;<span style="color: #7E7E7E;">// do nothing while its playing</span>
+
  // do nothing while its playing
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;<span style="color: #7E7E7E;">// now its done playing</span>
+
  // now its done playing
 
}
 
}
  
  
<span style="color: #CC6600;">void</span> <span style="color: #CC6600;"><b>loop</b></span>() {
+
void loop() {
&nbsp;&nbsp;<span style="color: #7E7E7E;">//putstring(".");            // uncomment this to see if the loop isnt running  </span>
+
  //putstring(".");            // uncomment this to see if the loop isnt running   
&nbsp;&nbsp;&nbsp;&nbsp;
+
   
&nbsp;&nbsp;<span style="color: #CC6600;">switch</span> (check_switches()) {    <span style="color: #7E7E7E;">//this is the loop which cycles the arnold sounds based</span>
+
  switch (check_switches()) {    //this is the loop which cycles the arnold sounds based
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">case</span> 1:                      <span style="color: #7E7E7E;">//on which switch you connect to.</span>
+
    case 1:                      //on which switch you connect to.
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;playcomplete(<span style="color: #006699;">"STOP.WAV"</span>);
+
      playcomplete("STOP.WAV");
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">break</span>;
+
      break;
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">case</span> 2:
+
    case 2:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;playcomplete(<span style="color: #006699;">"SOB.WAV"</span>);
+
      playcomplete("SOB.WAV");
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">break</span>;
+
      break;
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">case</span> 3:
+
    case 3:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;playcomplete(<span style="color: #006699;">"DONT.WAV"</span>);
+
      playcomplete("DONT.WAV");
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">break</span>;
+
      break;
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">case</span> 4:
+
    case 4:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;playcomplete(<span style="color: #006699;">"LACK.WAV"</span>);
+
      playcomplete("LACK.WAV");
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">break</span>;
+
      break;
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">case</span> 5:
+
    case 5:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;playcomplete(<span style="color: #006699;">"FIST.WAV"</span>);
+
      playcomplete("FIST.WAV");
&nbsp;&nbsp;}
+
  }
 
}
 
}
  
<span style="color: #CC6600;">byte</span> check_switches()
+
byte check_switches()
 
{
 
{
&nbsp;&nbsp;<span style="color: #CC6600;">static</span> <span style="color: #CC6600;">byte</span> previous[6];
+
  static byte previous[6];
&nbsp;&nbsp;<span style="color: #CC6600;">static</span> <span style="color: #CC6600;">long</span> time[6];
+
  static long time[6];
&nbsp;&nbsp;<span style="color: #CC6600;">byte</span> reading;
+
  byte reading;
&nbsp;&nbsp;<span style="color: #CC6600;">byte</span> pressed;
+
  byte pressed;
&nbsp;&nbsp;<span style="color: #CC6600;">byte</span> index;
+
  byte index;
&nbsp;&nbsp;pressed&nbsp;=&nbsp;0;
+
  pressed = 0;
  
&nbsp;&nbsp;<span style="color: #CC6600;">for</span> (<span style="color: #CC6600;">byte</span> index = 0; index < 6; ++index) {
+
  for (byte index = 0; index < 6; ++index) {
&nbsp;&nbsp;&nbsp;&nbsp;reading&nbsp;=&nbsp;<span style="color: #CC6600;">digitalRead</span>(14 + index);
+
    reading = digitalRead(14 + index);
&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (reading == <span style="color: #006699;">LOW</span> && previous[index] == <span style="color: #006699;">HIGH</span> && <span style="color: #CC6600;">millis</span>() - time[index] > DEBOUNCE)
+
    if (reading == LOW && previous[index] == HIGH && millis() - time[index] > DEBOUNCE)
&nbsp;&nbsp;&nbsp;&nbsp;{
+
    {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #7E7E7E;">// switch pressed</span>
+
      // switch pressed
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;time[index]&nbsp;=&nbsp;<span style="color: #CC6600;">millis</span>();
+
      time[index] = millis();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pressed&nbsp;=&nbsp;index&nbsp;+&nbsp;1;
+
      pressed = index + 1;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">break</span>;
+
      break;
&nbsp;&nbsp;&nbsp;&nbsp;}
+
    }
&nbsp;&nbsp;&nbsp;&nbsp;previous[index]&nbsp;=&nbsp;reading;
+
    previous[index] = reading;
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;<span style="color: #7E7E7E;">// return switch number (1 - 6)</span>
+
  // return switch number (1 - 6)
&nbsp;&nbsp;<span style="color: #CC6600;">return</span> (pressed);
+
  return (pressed);
 
}
 
}
  
  
<span style="color: #7E7E7E;">//&nbsp;Plays&nbsp;a&nbsp;full&nbsp;file&nbsp;from&nbsp;beginning&nbsp;to&nbsp;end&nbsp;with&nbsp;no&nbsp;pause.</span>
+
// Plays a full file from beginning to end with no pause.
<span style="color: #CC6600;">void</span> playcomplete(<span style="color: #CC6600;">char</span> *name) {
+
void playcomplete(char *name) {
&nbsp;&nbsp;<span style="color: #7E7E7E;">// call our helper to find and play this name</span>
+
  // call our helper to find and play this name
&nbsp;&nbsp;playfile(name);
+
  playfile(name);
&nbsp;&nbsp;<span style="color: #CC6600;">while</span> (wave.isplaying) {
+
  while (wave.isplaying) {
&nbsp;&nbsp;<span style="color: #7E7E7E;">// do nothing while its playing</span>
+
  // do nothing while its playing
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;<span style="color: #7E7E7E;">// now its done playing</span>
+
  // now its done playing
 
}
 
}
  
<span style="color: #CC6600;">void</span> playfile(<span style="color: #CC6600;">char</span> *name) {
+
void playfile(char *name) {
&nbsp;&nbsp;<span style="color: #7E7E7E;">// see if the wave object is currently doing something</span>
+
  // see if the wave object is currently doing something
&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (wave.isplaying) {<span style="color: #7E7E7E;">// already playing something, so stop it!</span>
+
  if (wave.isplaying) {// already playing something, so stop it!
&nbsp;&nbsp;&nbsp;&nbsp;wave.<span style="color: #CC6600;">stop</span>(); <span style="color: #7E7E7E;">// stop it</span>
+
    wave.stop(); // stop it
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;<span style="color: #7E7E7E;">// look in the root directory and open the file</span>
+
  // look in the root directory and open the file
&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (!f.open(root, name)) {
+
  if (!f.open(root, name)) {
&nbsp;&nbsp;&nbsp;&nbsp;putstring(<span style="color: #006699;">"Couldn't open file "</span>); <span style="color: #CC6600;"><b>Serial</b></span>.<span style="color: #CC6600;">print</span>(name); <span style="color: #CC6600;">return</span>;
+
    putstring("Couldn't open file "); Serial.print(name); return;
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;<span style="color: #7E7E7E;">// OK read the file and turn it into a wave object</span>
+
  // OK read the file and turn it into a wave object
&nbsp;&nbsp;<span style="color: #CC6600;">if</span> (!wave.create(f)) {
+
  if (!wave.create(f)) {
&nbsp;&nbsp;&nbsp;&nbsp;putstring_nl(<span style="color: #006699;">"Not a valid WAV"</span>); <span style="color: #CC6600;">return</span>;
+
    putstring_nl("Not a valid WAV"); return;
&nbsp;&nbsp;}
+
  }
&nbsp;&nbsp;
+
 
&nbsp;&nbsp;<span style="color: #7E7E7E;">// ok time to play! start playback</span>
+
  // ok time to play! start playback
&nbsp;&nbsp;wave.play();
+
  wave.play();
 
}
 
}
 
 
</pre>
 
</pre>
 +
----
 +
http://i238.photobucket.com/albums/ff152/3pod151/School%20Stuff/DSC_0229.jpg http://i238.photobucket.com/albums/ff152/3pod151/School%20Stuff/DSC_0232.jpg
 +
http://i238.photobucket.com/albums/ff152/3pod151/School%20Stuff/DSC_0241.jpg
 +
----
 +
http://i238.photobucket.com/albums/ff152/3pod151/School%20Stuff/DSC_0246.jpg
 +
http://i238.photobucket.com/albums/ff152/3pod151/School%20Stuff/DSC_0253.jpg

Latest revision as of 13:51, 20 March 2010

I am a Visual Arts - Media major with an interest in graphic design. I was born in Europe, and moved to Canada when I was 5. I've lived in San Diego since I was 10, and graduated from University City High School before coming to UCSD as a transfer. I have been working with computers since grade school, and am highly interested in pursuing a career in the computer field. I have been in interested in electronics also since a young age and I think it will add an interesting dimension to my artistic career, and am eagerly looking forward to learning how to make art projects using them.


DSC_0055-1.jpg

Portable Heater


DSC_0051.jpg

Generator?


DSC_0050.jpg

Air Conditioner


DSC_0049.jpg

Cell Phone


DSC_0046.jpg

Car Keys


Midterm Proposal

My proposal is a hat which contains a cooling fan enabled by a switch. The switch will hang down from the inside of the hat to about shoulder length, enabling the wearer to turn on and off the fan. This is a crude implementation of a warm weather cowboy hat which provides cooling apart from shade. It will be powered by a 9v battery, and connected by a normally open switch. In order to operate the fan, you must hold down the button.


MidDiag.jpg


Final Proposal

My final project will be called "Punch a Celebrity". It will consist of a punching pad with a picture of a celebrity on it. The pad will have an impact sensor attached to a arduino/breakout board, which is attached to a speaker. This will enable a wav or mp3 file to play at the moment of impact, and simulate that you are actually hitting a celebrity.

proposal.png

Code


//Ian Petrov VIS147A Final
//code edited from Adafruit Wave Shield Site
#include <FatReader.h>
#include <SdReader.h>
#include <avr/pgmspace.h>
#include "WaveUtil.h"
#include "WaveHC.h"


SdReader card;    // This object holds the information for the card
FatVolume vol;    // This holds the information for the partition on the card
FatReader root;   // This holds the information for the filesystem on the card
FatReader f;      // This holds the information for the file we're play

WaveHC wave;      // This is the only wave (audio) object, since we will only play one at a time

#define DEBOUNCE 100  // button debouncer

// this handy function will return the number of bytes currently free in RAM, great for debugging!   
int freeRam(void)
{
  extern int  __bss_end; 
  extern int  *__brkval; 
  int free_memory; 
  if((int)__brkval == 0) {
    free_memory = ((int)&free_memory) - ((int)&__bss_end); 
  }
  else {
    free_memory = ((int)&free_memory) - ((int)__brkval); 
  }
  return free_memory; 
} 

void sdErrorCheck(void)
{
  if (!card.errorCode()) return;
  putstring("\n\rSD I/O error: ");
  Serial.print(card.errorCode(), HEX);
  putstring(", ");
  Serial.println(card.errorData(), HEX);
  while(1);
}

void setup() {
  // set up serial port
  Serial.begin(9600);
  putstring_nl("WaveHC with 6 buttons");
  
   putstring("Free RAM: ");       // This can help with debugging, running out of RAM is bad
  Serial.println(freeRam());      // if this is under 150 bytes it may spell trouble!
  
  // Set the output pins for the DAC control. This pins are defined in the library
  pinMode(2, OUTPUT);
  pinMode(3, OUTPUT);
  pinMode(4, OUTPUT);
  pinMode(5, OUTPUT);
 
  // pin13 LED
  pinMode(13, OUTPUT);
 
  // enable pull-up resistors on switch pins (analog inputs)
  digitalWrite(14, HIGH);
  digitalWrite(15, HIGH);
  digitalWrite(16, HIGH);
  digitalWrite(17, HIGH);
  digitalWrite(18, HIGH);
  digitalWrite(19, HIGH);
 
  //  if (!card.init(true)) { //play with 4 MHz spi if 8MHz isn't working for you
  if (!card.init()) {         //play with 8 MHz spi (default faster!)  
    putstring_nl("Card init. failed!");  // Something went wrong, lets print out why
    sdErrorCheck();
    while(1);                            // then 'halt' - do nothing!
  }
  
  // enable optimize read - some cards may timeout. Disable if you're having problems
  card.partialBlockRead(true);
 
// Now we will look for a FAT partition!
  uint8_t part;
  for (part = 0; part < 5; part++) {     // we have up to 5 slots to look in
    if (vol.init(card, part)) 
      break;                             // we found one, lets bail
  }
  if (part == 5) {                       // if we ended up not finding one  :(
    putstring_nl("No valid FAT partition!");
    sdErrorCheck();      // Something went wrong, lets print out why
    while(1);                            // then 'halt' - do nothing!
  }
  
  // Lets tell the user about what we found
  putstring("Using partition ");
  Serial.print(part, DEC);
  putstring(", type is FAT");
  Serial.println(vol.fatType(),DEC);     // FAT16 or FAT32?
  
  // Try to open the root directory
  if (!root.openRoot(vol)) {
    putstring_nl("Can't open root dir!"); // Something went wrong,
    while(1);                             // then 'halt' - do nothing!
  }
  
  // Whew! We got past the tough parts.
  putstring_nl("Ready!");
}

void playcomplete(char good) {
  // call our helper to find and play this name
  playfile("GOOD.WAV");
  while (wave.isplaying) {
  // do nothing while its playing
  }
  // now its done playing
}


void loop() {
  //putstring(".");            // uncomment this to see if the loop isnt running  
    
  switch (check_switches()) {     //this is the loop which cycles the arnold sounds based
    case 1:                       //on which switch you connect to.
      playcomplete("STOP.WAV");
      break;
    case 2:
      playcomplete("SOB.WAV");
      break;
    case 3:
      playcomplete("DONT.WAV");
      break;
    case 4:
      playcomplete("LACK.WAV");
      break;
    case 5:
      playcomplete("FIST.WAV");
  }
}

byte check_switches()
{
  static byte previous[6];
  static long time[6];
  byte reading;
  byte pressed;
  byte index;
  pressed = 0;

  for (byte index = 0; index < 6; ++index) {
    reading = digitalRead(14 + index);
    if (reading == LOW && previous[index] == HIGH && millis() - time[index] > DEBOUNCE)
    {
      // switch pressed
      time[index] = millis();
      pressed = index + 1;
      break;
    }
    previous[index] = reading;
  }
  // return switch number (1 - 6)
  return (pressed);
}


// Plays a full file from beginning to end with no pause.
void playcomplete(char *name) {
  // call our helper to find and play this name
  playfile(name);
  while (wave.isplaying) {
  // do nothing while its playing
  }
  // now its done playing
}

void playfile(char *name) {
  // see if the wave object is currently doing something
  if (wave.isplaying) {// already playing something, so stop it!
    wave.stop(); // stop it
  }
  // look in the root directory and open the file
  if (!f.open(root, name)) {
    putstring("Couldn't open file "); Serial.print(name); return;
  }
  // OK read the file and turn it into a wave object
  if (!wave.create(f)) {
    putstring_nl("Not a valid WAV"); return;
  }
  
  // ok time to play! start playback
  wave.play();
}

DSC_0229.jpg DSC_0232.jpg DSC_0241.jpg


DSC_0246.jpg DSC_0253.jpg