Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

59 Zeilen
2.1KB

  1. /* Copyright (c) 2018 John-Michael Reed
  2. * bleeplabs.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. *
  26. * Combine analog signals with bitwise expressions like XOR.
  27. * Combining two simple oscillators results in interesting new waveforms,
  28. * Combining white noise or dynamic incoming audio results in aggressive digital distortion.
  29. */
  30. #ifndef effect_digital_combine_h_
  31. #define effect_digital_combine_h_
  32. #include <core/Arduino.h>
  33. #include <core/AudioStream.h>
  34. class AudioEffectDigitalCombine : public AudioStream
  35. {
  36. public:
  37. enum combineMode {
  38. OR = 0,
  39. XOR = 1,
  40. AND = 2,
  41. MODULO = 3,
  42. };
  43. AudioEffectDigitalCombine() : AudioStream(2, inputQueueArray), mode_sel(OR) { }
  44. void setCombineMode(int mode_in) {
  45. if (mode_in > 3) {
  46. mode_in = 3;
  47. }
  48. mode_sel = mode_in;
  49. }
  50. virtual void update(void);
  51. private:
  52. short mode_sel;
  53. audio_block_t *inputQueueArray[2];
  54. };
  55. #endif