Search results

  1. C

    LiPo charge controller board with power on and power off features?

    Thanks @kd5rxt-mark , that is one I was looking at. On the tech spec it says "The converter can be disabled to minimize battery drain," what does that mean? Can I do that disconnection from my teensy? How do I reconnect it?
  2. C

    LiPo charge controller board with power on and power off features?

    Howdy, Curious if someone could point me at a board that would 1) Charge a LiPo battery from a USB connection 2) Transform output voltage to Teensy range 3) Take a signal over a digital out pin that would shut down the arduino so I could program for an auto turn off 4) Have a switch connection...
  3. C

    Battery shutoff strategy for LC

    Does some one have a schematic I can use? I found a couple online for 5v based boards, I think I need somethin different?
  4. C

    Battery shutoff strategy for LC

    I have a couple LCs that I was going to use for some christmas presents. My plan is to use a 3-battery AAA pack but I want it to completely shutdown after a couple minutes of inactivity. I am wondering if there is some sort of relay that I would put between the battery and the controller that I...
  5. C

    looking for recommendation for selector knob

    I have an application where I want to have some way to select one of 16 options. Right now I am using an eleven detent potentiometer which is cool cause it only uses one analog read pin but it was also a pain to tune because the voltage value I would choose as a step would sometimes be a...
  6. C

    Any way to pull source code from a 3.6?

    I have an older project that I want to revisit but I am having trouble finding my source code. Can I pull it from the microcontroller? I never updated my github repo. So annoyed...
  7. C

    3.6 USB MIDI host to 5 pin adapter

    Hey folks, I have a teensy 3.6 board and a couple panel mount 5 pin DINs. I would like to build an adapter that will take MIDI over USB messages from my teensy based synths (USB midi only) to my korg ms 20 (MIDI 5 pin DIN). I suspect this project has been done before, anyone have some source...
  8. C

    Looking for ideas on how to convert sound to spring motion

    Here is a little video for context. This is after a light thunk, it is a great spring and will go for a while on its own. https://photos.app.goo.gl/gwMee9HnDmcTCkj66 After all of the suggestions I am leaning towards doing some sort of solenoid or stepper motor attached to something with some...
  9. C

    output voltage range for audio projects

    by "hot" I meant high voltage. Bad word selection on my part! How do a compute my impedance out?
  10. C

    output voltage range for audio projects

    Hey folks I am working on a mixer for a modular-esque synth that uses a combo of Teensy audio library and a 40106 based oscillator. The chip oscillator comes in pretty hot (im using a 5v power supply) compared to the teensy, which is fine but in playing around with resistors and potentiometers...
  11. C

    Looking for ideas on how to convert sound to spring motion

    I thought about that, but the way that the chassis is laid out I am not sure how it would work. I was thinking of maybe pulling the voice coil from a big speaker and then mounting some sort of magnet on the head for more of a magnetic drive, but I dont think I can get enough flux in the voice...
  12. C

    Looking for ideas on how to convert sound to spring motion

    Hey folks, I am working on a synth chassis that has a goat skull mounted on an upholstery spring (like a bobblehead). I am looking for it to have subtle nods that are correlated to what is happening in the music. My first idea was to do some sort of beat detection and drive a stepper motor with...
  13. C

    large diffused LED suggestion for back-lighting a logo cut out?

    nevermind i found something https://www.adafruit.com/product/1621
  14. C

    large diffused LED suggestion for back-lighting a logo cut out?

    Hey folks im working on rev3 of my chromatic button synth. It has a metal chassis and I had my logo shape (camoose, half camel half moose) cut out and I want to illuminate it with a blue LED. For the last version I drilled a hole in the bottom of the metal shot glass that ships with Tin Cup...
  15. C

    SPI on an LC questions

    I am trying to do this tutorial but on an LC instead of a Uno: https://create.arduino.cc/projecthub/mariogianota/the-ad9833-dds-signal-generator-and-arduino-uno-9286e3 The tutorial defines the interface pins as the SPI clock, SPI data, and the SPI Load. On the LC there seems to be two separate...
  16. C

    panel mount USB-B female to micro male cables?

    I remember for projects past I had ordered a short cable from the PJRC store that had these connections. My chassis CAD is already designed around that panel mount and the two mounting screws. I am not seeing them now, no longer available or maybe Im just dense???
  17. C

    USB Midi host on 4.1

    Hey folks I am tacking version 3 of my chromatic button synth and I want to separate the keyboard from the synth Obviously looking at midi as the interface. I would like to be able to use both 5-pin and USB midi so I can also incorporate a korg nanoKONTROL for manipulating synth tones or run...
  18. C

    Looking for component advise for a photoelectric driven audio controller

    Good day folks, I have done a couple Teensy audio projects. I am ok with the coding but my understanding of the different electric components is still pretty rudimentary. Posting here instead of the audio chat because i do not think there is anything audio-specific about my project. I have an...
  19. C

    stepper motor recommendation

    Im getting ready to dig into my 7th or 8th project, but this will be the first one with movement. My plan is to use a couple of stepper motors to lift a spring loaded beater of some sort and have it thunk the chassis of the project to make a percussive noise. the stepper will rotate 180 degrees...
  20. C

    Are resistors needed with rotary encoders?

    I picked up a couple ec11 rotary encoders and have been using the encoder library and things were working great but now they are not, turning the knob causes my teensy LC to reboot. I did not have any resistors on the power feed to the encoder, maybe I should have? If so how would I size these...
  21. C

    Testing audio shield vs PT8211 vs on-board DAC for audio synthesis

    Yeah I thought about trying a different I2S board. But to be honest if I can get the sound quality that works for me out of the PT8211 then it would be hard for me to switch. The great thing about the teensy and the audio libraries is that it all just kinda works.
  22. C

    Testing audio shield vs PT8211 vs on-board DAC for audio synthesis

    anecdotally I have noticed that is the biggest difference with the onboard DAC is that it starts breaking up with more then 3 notes, for the audio shield I can get get up to 8 (have not tried more yet). It could be something in the way I am coding it. I will make sure to include source code for...
  23. C

    Testing audio shield vs PT8211 vs on-board DAC for audio synthesis

    Hey folks, I want to get some better data on what the real implications of the different solutions for getting audio signals from a teensy-based synth build. My idea is to use my first three builds, one which uses the onboard DAC on a 3.6, one that uses a 3.2 with the PT8211, and one that uses a...
  24. C

    how can I use AudioEffectEnvelope::isActive ??

    figured it out, I was missing the parenthesis if ( ! envelope[i].isActive() )
  25. C

    how can I use AudioEffectEnvelope::isActive ??

    I have an array of envelopes, and I want to look through them to find one that is not active. Below is the snippet. The error I am getting is "cannot convert 'AudioEffectEnvelope::isActive' from type 'bool (AudioEffectEnvelope::)()' to type 'bool'" How do I use the isActive value in a...
  26. C

    high level question- commercial 'analog' synths compared to audio library

    Super helpful, thanks! What sort of integrated circuit would produce a purely analog wave? I just do not know much about it.
  27. C

    high level question- commercial 'analog' synths compared to audio library

    I went to the city last week and was chillin at the music stop and I noticed a lot of newer synths like the moog grandmother and the roland SE-02 that were marketed as being analog which confused me. To me an analog synth would have some sort of mechanical or tube oscillator. I am guessing all...
  28. C

    looking for advice on how to make a chassis cutout glow with LED

    Thanks for the inspiration. Here is my go, I took the shot measuring cap that comes with tincup whisky, cut it down a little, tucked some tin foil in the bottom, and mounted the LED in there. THen I filled the remaining 1 1/2 inches with hot glue and scuffed it up. Worked pretty good!
  29. C

    looking for advice on how to make a chassis cutout glow with LED

    Working on a synth, when I had the laser cutter do all of my switch cut outs I also had them make a little logo. I sometimes book shows as 'Blue Camoose' so I wanted to have a camel/moose hybrid shape with a blue light behind it. It turned out well (see pic). Less then 1" wide. Im curious if...
  30. C

    organ foot pedal MIDI controller- switch ideas?

    Hey folks I got it put together, here is a couple pics. The orange foot pedals are (at least now) programmed to give me a 5th above or a 4th below the last note played. (how many bass players does it take to change a light bulb? 1,5,1,5) https://photos.app.goo.gl/1ePFsnvPmH8WpM6X6...
  31. C

    looking for solenoid advice for woodblock metronome project

    So it is probably unrealistic to fire solenoids just using the power lead on an arduino board? I cant seem to find anyone that has done it before :(
  32. C

    looking for solenoid advice for woodblock metronome project

    Im looking to build a metronome that can do some odd time signatures. I envision the project will reside in a wood shell with a metal panel that has controls mounted on it and two solenoids that hit different faces of the wood shell to get 2 different sounds. The whole thing should be about the...
  33. C

    measurement discrepancies when using multiple potentiometers?

    working on a synth build, I wanted to have the ability to quickly choose a different sound or a different octave so I decided I would get potentiometers that have 11 dentants (clicking points). That way I can switch between 11 different scenarios with just using one analog pin. It just took a...
  34. C

    Board advice for synth project. Does 4.0 make sense?

    Thanks Micheal. This is really helpful (especially after I researched some of these protocols that I do not know much about!) I guess what it comes down to for me is the most likely scenario is that I would be interfacing I2S to some sort of external DAC. The amplifier is not that intriguing to...
  35. C

    Board advice for synth project. Does 4.0 make sense?

    I am trying to choose a board for my next synth. For the first one (https://hackaday.io/project/163160-chromatic-button-synth) I just used one of the DAC channels on the 3.6. It is just doing simple wave form synthesis. When I play more then 3 or 4 notes at the same time things get pretty...
  36. C

    best strategy for connecting hook up wires to male 2.54mm pins in a build

    I have a newbie question, please feel free to point me to existing resources. I have been googling for a while and not found what I was looking for. I have been building a couple synths. I end up with a teensy board using the double header with an audio shield which leaves male pins for the...
  37. C

    organ foot pedal MIDI controller- switch ideas?

    I had a morely volume pedal from the 70s that used a photoresistor instead of a rotary potentiometer. with an incandescent appliance bulb! interesting idea but the dust thing would make calibration difficult. I am leaning towards some combination of the 16mm panel mount pushbutton switches...
  38. C

    organ foot pedal MIDI controller- switch ideas?

    I was able to do velocity sensitive on the hammond. It had a global switch that engaged before the switches on the keys. I hated it just because the difference in the keys felt like I was getting random volumes. I probably could have tamed it but instead I just turned it off. but I am...
  39. C

    organ foot pedal MIDI controller- switch ideas?

    I built a midi controller using a 50s hammond 12 key foot keyboard. However the factory switches used these plastic pushers and after 60 years the plastic is breaking down and many of the switches no longer engage. I am taking it as an opportunity to shed 5 or 6 pounds and a bunch of lead...
  40. C

    Im struggling with MIDI volume changes - 10 line code sample attached

    I am having trouble sending volume changes over USB Midi. I was expecting this example to play a note (midi 68 = Bb I think) then increase it from a volume of 0 to 127 then cut it out for 2 seconds. However I can not hear any volume change, just the start and a steady tone for about 5 seconds...
  41. C

    Using PT8211 without the headphone jack

    I figured this out, I had the chip soldered in facing the wrong direction. I installed a new one and its all good. Thanks!
  42. C

    Using PT8211 without the headphone jack

    I assembled a PT8211 and connected to a 3.2 board. I did not install the headphone jack, instead I hookup some some wires to see if I can figure out how to reroute it to a panel-mount 1/4 jack. Based on a little time with the jack and a 2.5mm TRS male to male cord I deduced that I would get...
  43. C

    newbie struggling to get stereo synthesis out of audio shield

    OK, I tried some different headphones and I was able to isolate the different channels. There must have been something getting summed in the first pair. But I am still unable to get anything out of the left LINE OUT. If the LINE OUT pinout on the audio shield is labeled like this: L P1...
  44. C

    newbie struggling to get stereo synthesis out of audio shield

    Hey Paul I caught that also. I fixed it and even changed the frequency on one of the wave forms. What is happening is 1) via the embedded headphone jack on the audio shield I get each channel of the i2s1 equally in both ears. In other words it is a mono signal 2) Via the Line out pins on the...
  45. C

    newbie struggling to get stereo synthesis out of audio shield

    Based on my research, I understand that the 0 and 1 channels on a AudioOutputI2S would be the right and left audio output. This is a teensy 3.6 board with the audio shield However my experiment is suggesting otherwise, this code beeps in both 'ears' each time instead of alternating. I also...
  46. C

    LInux install problems

    I went for the 1.46-beta7, so far so good. Thanks!!
  47. C

    LInux install problems

    I am running a fresh install of Ubuntu studio. I 1) downloaded an installed the arduino IDE for Linux 64 2) downloaded the udev rules file and copied it to the rules.d directory 3) Downloaded the teensy installer and ran it in the same directory as my ardunio install. it appeared to work 4)...
  48. C

    Get audio out from a MIDI controller when it is not hooked to a computer?

    Yeah I commented out the wait for the Serial to hookup, but it still will not work unless I have it hooked up to a computer. I am hoping that I can just use a USB power supply when I am not doing MIDI. still stuck...
  49. C

    Get audio out from a MIDI controller when it is not hooked to a computer?

    My instrument has both MIDI and audio out functionality. However the audio out is not working unless it is hooked up to a computer, unless I change the board type to something else then it no longer works as a MIDI controller. What do I need to do so it will work both when I am just using the...
  50. C

    I think the audio shield would help with my distortion (demo video)

    Here the project you all have been helping me with. Thanks!!! I think I need to upgrade to a board with the audio shield so I do not get the distortion when I am running multiple tones at the same time. Running through an envelope helped but it could be better. Also I want to play around with...
Back
Top