Search results

  1. sonic_explorer

    EXAMPLE Rhythmic delay

    Is this the first program you are trying to run with your Daisy/Terrarium board? If it is, you may want to make sure the audio on the Terrarium board itself works first. You can do that by removing the Daisy chip and using a wire to connect where pins 16 and 18 of the Daisy would plug into (when...
  2. sonic_explorer

    Another Dumb Question

    I just watched another demo and I think you are right that the Boonar buttons are only single color yellow. I am still on the lookout for something similar but 2 color though.
  3. sonic_explorer

    Another Dumb Question

    I have seen some led light up press switches like on the Blooper on digi-key/mouser (here is one), but they are all pretty heavy duty, built for high currents, and expensive. I am trying to find 2 color led push button switches like on the Boonar, but I cannot find ones that small.
  4. sonic_explorer

    Developing with Terrarium

    I think the official Daisy Web Programmer only has programs for the official Electo-Smith Daisy hardware (Petal, Patch, Field, etc). The Terrarium has switches/knobs/leds hooked up to different pins on the Daisy Chip, so the official patches won't work correctly being loaded onto the Terrarium...
  5. sonic_explorer

    1kHz noise with Terrarium board

    I received a couple more Daisy's yesterday and saw the same noise level on them - so it does not seem to vary much Seed to Seed. Do the 'official' Electro-Smith examples for the Petal ran in the official Petal hardware also exhibit this noise? I am surprised things would have been released...
  6. sonic_explorer

    1kHz noise with Terrarium board

    That is what I was suggesting......but your question has made me rethink it. I don't actually know if the noise getting added to the audio line in the Daisy during the processing (where a digital filter may help), or the noise is getting added to the audio line after the processing but before it...
  7. sonic_explorer

    EXAMPLE Setting up VSCode/OpenOCD (XPack)/ST-Link for debugging on MacOS Big Sur

    Thanks for the writeup! I did something similar following some instructions on the Daisy forum for Mojave. I can do the debug stuff within VS Code....but still prefer to just use the terminal. Maybe that is because I don't really understand running the debug thing. While it is actually running I...
  8. sonic_explorer

    Daisy File Management

    I put my own git repository of terrarium programs in a directory that is in the same directory as the DaisyExamples repository (like below). This allows me to pull/commit/update my own programs in my own repository without messing with the DaisyExamples repository at all and still reference all...
  9. sonic_explorer

    Paludarium Platform Development

    I like the relay bypass switching and three way switches, but I think the exact layout will probably be effect specific? It sounds like this would be less of a prototype where the more switches, leds, and pots the better. I think if this is going to house two separate effects in one box, then...
  10. sonic_explorer

    1kHz noise with Terrarium board

    @Gordo, that is awesome that you took the Rhythm Delay for a ride in a live setting.....but a major bummer about the noise/whine issue. I have uploaded a version of the rhythm_delay.cpp that includes a (highly commented) line where the blocksize can be changed from 48 to 12 which moves the noise...
  11. sonic_explorer

    EXAMPLE Rhythmic delay

    I have not tried to control an LED with an envelope filter, but here is some code I wrote when testing things to control led2 with a sine oscillator with the speed controlled by knob_6: #include "daisysp.h" #include "daisy_petal.h" #include "terrarium.h" using namespace daisy; using namespace...
  12. sonic_explorer

    Pot Values and Simulating Changing a pot value over time.

    I made a delay that uses the right footswitch to change the feedback of a delay (code here), but modifying the delay time instead should work the same way. Let me know if you have questions about code, the very bottom of ProcessControls is where the feedback ramping happens. You can also set...
  13. sonic_explorer

    EXAMPLE Distortion

    Yea, I agree it is good to build these things in steps - and getting something working first is a big morale boost. It took me a pretty long time to even get the multidelay converted into the rhythm_delay and way more Daisy program flashes than I am willing to admit (even to myself). Maybe you...
  14. sonic_explorer

    EXAMPLE Distortion

    Awesome, glad to see someone using parts of my code already! I have a few questions/comments about the effect: - What is the point of the pregain? It is applied without any of the footswitches being pressed and the 'knob_value+1.2' makes it apply a factor a 1.2 even when the knob is all the way...
  15. sonic_explorer

    EXAMPLE Rhythmic delay

    Yea, it is super easy to vary the brightness of the led with the Led object. I have added my more advanced rhythm_delay to that same repo (here) - which is still a work in progress. In it when footswitch_2 is pressed the feedback is ramped up (& down when released) and the brightness of led2...
  16. sonic_explorer

    EXAMPLE Rhythmic delay

    I took the MultiDelay effect @tcpoint ported over from the DaisyExamples and turned it into a rhythmic delay which has 4 individual delays with a fixed spacing and a single global delay time control. Each delay can be individually turned on/off with the switches. The delays still sound digital...
  17. sonic_explorer

    Small capacitors

    I put the TL072 in a socket and have no issues putting the daisy board in. You are right that the daisy board gets very close to it and may be touching the top of the TL072, but I have been running it boxed up like that for over a month and it has been fine.
  18. sonic_explorer

    1kHz noise with Terrarium board

    Thanks @Dreamlands. I tried to link that thread in my comment, but I didn't bold it so it is tough to tell (I will note to do that next time). After you comment I poked around a bit and found that you can change the blocksize in the C++ code for petal objects with...
  19. sonic_explorer

    1kHz noise with Terrarium board

    Here is a link to the .bin file (the forum would not let up upload a .bin file). The left terrarium footswitch turns on and off the noise & the left led. I also just realized that the 1kHz noise is much louder when the STlink-mini-v3 I use to program the Daisy is powered on. The noise is...
  20. sonic_explorer

    1kHz noise with Terrarium board

    I am getting an annoying 1kHz noise (and resonances at 2kHz, 3kHz) with the Daisy in the Terrarium pcb. I can turn it on and off by increasing the processing that the Daisy does. Is anyone else experiencing this with the Terrarium specifically? There is some talk of a 1kHz noise on here on the...
Back
Top