Search results

  1. C

    Swing and quantization for beat machine

    Hello, I was wondering if anyone had any knowledge as to how to implement a swing function like one on a beat machine. My understand is you have to quantize the beat first and then you can add swing, but I have no idea what that entails. I will be working with RAW files loaded onto the serial...
  2. C

    Not understanding wav2trw sketch

    Ok I see. I was confused about how to include the header or not but this sums it up. So far it looks like audacity can take care of a 16bit RAW sample without a header.
  3. C

    Not understanding wav2trw sketch

    Good evening forum, I am trying to load some audio files onto my onboard serial flash chip. The same chip suggested on the Audio homepage. I understand the process of loading the RAW files onto the SD card and then writing them to the flash chip. My issue comes in not understanding how to run...
  4. C

    Confusion about Line in/out pins on Audio board

    Ok that makes perfect sense. Thank you guys for the help
  5. C

    Confusion about Line in/out pins on Audio board

    Ok sweet. I have seen those before and will check them out. Thanks!
  6. C

    Confusion about Line in/out pins on Audio board

    Good morning, Just had a quick question about the audio board line in and line out. I've been looking for resources in how to build a line in / line out connection, particularly like the one in the following link, under "Optional Add Ons": http://www.pjrc.com/store/teensy3_audio.html It looks...
  7. C

    16 Step 2 Layer Sequencer

    Sorry the code is so big I had to send it in two parts. I've been working on a 16 step sequencer with two layers. It works well. There might be a few kinks left to hammer out and so I wanted to present this to the forum for anyone wanting to use it. Essentially there are 8 sampler buttons and 3...
  8. C

    Compile Error Low Resources

    This worked. I cleared RAM on the Mac and things seemed a bit better. I restarted the Arduino App, closed down the teensy, restarted the laptop and everything is working great. Thank you for the help!
  9. C

    Compile Error Low Resources

    I've gotten a chance to print the full message on the compiler window, and it leads me to believe the multiple library issue is not causing the compile failure: It seems the last to open is the Bounce library, which is the last library opened in the code: #include <Audio.h> #include <Wire.h>...
  10. C

    Compile Error Low Resources

    Also I should add that most of my windows are closed and my memory on the laptop (a Mac) is less than half way used ~100 gb left. According to the activity monitor, Arduino is the main CPU user, by a lot.
  11. C

    Compile Error Low Resources

    Ignore the last question about finding verbose error description. I found it.
  12. C

    Compile Error Low Resources

    Good evening, I was wondering what this error is every time I compile. Sometimes it compiles fine, other times it does not and gives me the following error message: Im running 1.6.12 on the new Teensyduino 1.31. with the Teensy 3.2 board. I've read somewhere that the files need to have the...
  13. C

    Having Trouble Figuring out project's current consumption

    wow Frank B thank you for the fast response. I see that I completely forgot to take other pins being used by the teensy into account. May I ask, is there a general rule about how much AudioMemory to allocate on the number of audio objects? Thanks!
  14. C

    Having Trouble Figuring out project's current consumption

    Hello, I am working on a sequencer with layering. Here's the code: in attachment (sorry it was too long) The Hardware I am using is the Teensy 3.2, the PJRC audio board, a 10k linear potentiometer, and 9 momentary pushbuttons. The idea is that pressing any of the buttons 1-8 loads a sample...
  15. C

    Not able to get Sd Wav file to Play

    If you come across this, the solution to the above issue was that I was using analogRead on channel A0 which is also digital pin 14 which is used to open the Sd card I presume since it is in the setup of the Sd card. Thats why audio wasnt working. Also, to get the code working mySamples strings...
  16. C

    Not able to get Sd Wav file to Play

    Code first: #include <Audio.h> #include <Wire.h> #include <SPI.h> #include <SD.h> #include <SerialFlash.h> #include <Bounce.h> // GUItool: begin automatically generated code AudioPlaySdWav playSdWav3; //xy=192,208 AudioPlaySdWav playSdWav1; //xy=193,61 AudioPlaySdWav...
  17. C

    Teensy not showing on Serial Ports, Not the usual problem

    Thank you guys for your input. I will test my Teensy soon and get back to you with results to close this thread.
  18. C

    Teensy not showing on Serial Ports, Not the usual problem

    I understand this is a common issue with people first using their teensy. I'm not experiencing the same circumstance. Let me explain. I've been using my Teensy 3.2 for several months to make music. I am using the Audio library. I had been having no issues with loading my sketches onto the...
  19. C

    Changing Chip Select of Audio Adapter?

    Hello, I have a teensy 3.2 and the Audio Adapter sold by pjrc. I accidentally cut through the PCB board of the teensy working on another project and pins 9 and 10 are now not connected to the Teensy chip. I know that the Audio Adapter's SD chip select is digital pin 10. I am attempting to run...
Back
Top