资料介绍
描述
大家好,欢迎回来,这是我的 Neko Punk Synth Version 2,它是以猫为主题的合成器,由 Arduino Nano 和 Mozzi 库提供支持。
通过改变 5 个滑动罐的位置,Mozzi 可以产生更加复杂和有趣的咆哮、扫动和合唱声音。这些声音可以通过熟悉的合成单元(如振荡器、延迟和滤波器)快速轻松地构建。
我几周前制作的 Previous 版本是基于最初的 Atari Punk Console,最初是由Forrest Mims在1980 年制作的。它使用触发单稳态设置的非稳态多谐振荡器设置。通过组合这两个设置,我们得到一个步进音发生器或一个 atari 朋克合成器。
这很容易做,但我对它的结果不满意。
一年前,我用 Mozzi Library 制作了一个类似的合成器,效果非常好,所以我想为什么不在 Neko Punk Synth 的 V2 中使用 Mozzi,为了让事情变得超级酷,我使用了滑动罐,让这个合成器具有了赛博朋克的感觉——看起来。
所需材料
这些是这个建筑中使用的东西-
阿杜诺纳米
由PCBWAY提供的定制PCB
锂离子 5V 升压模块
3.7V 锂离子电池
3D 打印外壳
4欧喇叭
滑块盆
V2 PCB 可能是我做过的最简单的电路板。
它使用 Arduino Nano 作为基础微控制器,五个滑块盆与 Arduino nano 连接。
D9 进入 PAM8403 音频放大器模块的输入端,PAM8403 的输出端与两个 CON2 引脚相连,因此我们可以用它添加扬声器。
整个设置需要 5V 才能工作。
要为这个设置供电,我必须使用你可以在网上找到的这个锂离子电池升压模块,这些模块非常便宜而且工作得很好。
1 / 2
它将 3.7V 的锂离子电池升压至恒定的 5V 1A 或 2A,以便我们的 MCU 设置正常工作。
我在我的 OrCad PCB 套件中准备了 PCB,并添加了一些图形以增加电路板的美感。
从 PCBWAY 获取电路板
我在这个项目中使用了 PCBWAY PCB 服务。我在PCBWAY的报价页面上传了这个项目的Gerber文件。
对于这个 Synth 板,我选择了白色阻焊层颜色,因为我在板的顶部添加了很多圆形图形和自定义艺术。
黑色丝印搭配白色阻焊颜色看起来很棒。
我在一周内收到了 PCB,PCB 质量非常好,这个 PCB 很大,我喜欢这些 PCB 的质量没有因为尺寸而受到影响。
印刷电路板组装
现在这块板没有任何 SMD Componenets 所以我们只需要手动将所有东西放在这块板上并用烙铁焊接它们。
我首先收集所有材料并开始使用滑动电位器进行组装。
然后我将所有的 Pot 从顶部放在它们的位置,并从 PCB 的底部焊接它们的焊盘。
在此之后,我在它们的位置添加了 Arduino Nano 和 PAM8403 模块,组装就差不多完成了。
上传代码
这是基于 Mozzi 库的项目的主要草图。
/* Example using 2 light dependent resistors (LDRs) to change FM synthesis parameters, and a knob for fundamental frequency, using Mozzi sonification library. Demonstrates analog input, audio and control oscillators, phase modulation and smoothing a control signal at audio rate to avoid clicks. Also demonstrates AutoMap, which maps unpredictable inputs to a set range. This example goes with a tutorial on the Mozzi site: http://sensorium.github.io/Mozzi/learn/Mozzi_Introductory_Tutorial.pdf The circuit: Audio output on digital pin 9 (on a Uno or similar), or check the README or http://sensorium.github.com/Mozzi/ Potentiometer connected to analog pin 0. Center pin of the potentiometer goes to the analog pin. Side pins of the potentiometer go to +5V and ground Light dependent resistor (LDR) and 5.1k resistor on analog pin 1: LDR from analog pin to +5V 5.1k resistor from analog pin to ground Light dependent resistor (LDR) and 5.1k resistor on analog pin 2: LDR from analog pin to +5V 5.1k resistor from analog pin to ground Mozzi help/discussion/announcements: https://groups.google.com/forum/#!forum/mozzi-users Tim Barrass 2013. This example code is in the public domain. */ #include #include // oscillator #include// table for Oscils to play #include #include // maps unpredictable inputs to a range // int freqVal; // desired carrier frequency max and min, for AutoMap const int MIN_CARRIER_FREQ = 22; const int MAX_CARRIER_FREQ = 440; const int MIN = 1; const int MAX = 10; const int MIN_2 = 1; const int MAX_2 = 15; // desired intensity max and min, for AutoMap, note they're inverted for reverse dynamics const int MIN_INTENSITY = 700; const int MAX_INTENSITY = 10; // desired mod speed max and min, for AutoMap, note they're inverted for reverse dynamics const int MIN_MOD_SPEED = 10000; const int MAX_MOD_SPEED = 1; AutoMap kMapCarrierFreq(0,1023,MIN_CARRIER_FREQ,MAX_CARRIER_FREQ); AutoMap kMapIntensity(0,1023,MIN_INTENSITY,MAX_INTENSITY); AutoMap kMapModSpeed(0,1023,MIN_MOD_SPEED,MAX_MOD_SPEED); AutoMap mapThis(0,1023,MIN,MAX); AutoMap mapThisToo(0,1023,MIN_2,MAX_2); const int KNOB_PIN = 0; // set the input for the knob to analog pin 0 const int LDR1_PIN=1; // set the analog input for fm_intensity to pin 1 const int LDR2_PIN=2; // set the analog input for mod rate to pin 2 const int LDR3_PIN=4; const int LDR4_PIN=3; Oscil aCarrier(COS2048_DATA); Oscil aModulator(COS2048_DATA); Oscil kIntensityMod(COS2048_DATA); int mod_ratio = 5; // brightness (harmonics) long fm_intensity; // carries control info from updateControl to updateAudio // smoothing for intensity to remove clicks on transitions float smoothness = 0.95f; Smooth aSmoothIntensity(smoothness); void setup(){ // Serial.begin(115200); // set up the Serial output so we can look at the light level startMozzi(); // :)) } void updateControl(){ // freqVal = map(LDR3_PIN, 0, 1023, 1, 100); int freqVal = mozziAnalogRead(LDR3_PIN); // value is 0-1023 int FRQ = mapThis(freqVal); int knob2 = mozziAnalogRead(LDR4_PIN); // value is 0-1023 int knob2Val = mapThis(knob2); // read the knob int knob_value = mozziAnalogRead(KNOB_PIN); // value is 0-1023 // map the knob to carrier frequency int carrier_freq = kMapCarrierFreq(knob_value); //calculate the modulation frequency to stay in ratio int mod_freq = carrier_freq * mod_ratio * FRQ; // set the FM oscillator frequencies aCarrier.setFreq(carrier_freq); aModulator.setFreq(mod_freq); // read the light dependent resistor on the width Analog input pin int LDR1_value= mozziAnalogRead(LDR1_PIN); // value is 0-1023 // print the value to the Serial monitor for debugging //Serial.print("LDR1 = "); // Serial.print(LDR1_value); // Serial.print("\t"); // prints a tab int LDR1_calibrated = kMapIntensity(LDR1_value); // Serial.print("LDR1_calibrated = "); // Serial.print(LDR1_calibrated); // Serial.print("\t"); // prints a tab // calculate the fm_intensity fm_intensity = ((long)LDR1_calibrated * knob2Val * (kIntensityMod.next()+128))>>8; // shift back to range after 8 bit multiply // Serial.print("fm_intensity = "); // Serial.print(fm_intensity); // Serial.print("\t"); // prints a tab // read the light dependent resistor on the speed Analog input pin int LDR2_value= mozziAnalogRead(LDR2_PIN); // value is 0-1023 // Serial.print("LDR2 = "); // Serial.print(LDR2_value); // Serial.print("\t"); // prints a tab // use a float here for low frequencies float mod_speed = (float)kMapModSpeed(LDR2_value)/1000; //Serial.print(" mod_speed = "); // Serial.print(mod_speed); kIntensityMod.setFreq(mod_speed); // Serial.println(); // finally, print a carraige return for the next line of debugging info } int updateAudio(){ long modulation = aSmoothIntensity.next(fm_intensity) * aModulator.next(); return aCarrier.phMod(modulation); } void loop(){ audioHook(); }
代码很长,但基本上,它在 Mozzi 库上运行,无需额外的屏蔽、消息传递或外部合成器即可生成算法音乐。这个库有很好的文档记录,所以你可以从这里查看并下载它。在上传这个草图之前安装这个库。
https://sensorium.github.io/Mozzi/
const int KNOB_PIN = 0; // set the input for the knob to analog pin 0 const int LDR1_PIN=1; // set the analog input for fm_intensity to pin 1 const int LDR2_PIN=2; // set the analog input for mod rate to pin 2 const int LDR3_PIN=4; const int LDR4_PIN=3;
POT 连接在 A0、A1、A2、A3、A4 上,音频输出为 D9。
测试
现在上传草图后,我添加了一个 4ohm 扬声器和 PAM8403 模块的 CON2。
为了暂时为这个设置供电,我使用了一个移动电源为 Arduino Nano 提供 5V 2A。
要调制声音,我们只需更改所有 5 个滑动罐的位置,这几乎就是整个测试过程。
接下来,我们进入最后的组装过程。
3D 打印外壳
至于 Body of the Synth,我们通常使用类似盒子的外壳来容纳扬声器和电子设备。
我的想法是在正面制作一张猫脸,让它看起来像一只 BOX CAT,我在正面添加了猫的面部特征,如胡须、鼻子和眼睛。
我在 fusion360 中对身体建模,然后在我的 ender 3 上 3D 打印每个部分。
我用橙色 PLA 准备了主体,用黑色 PLA 准备了瞳孔、眉毛、胡须和鼻子,用白色 PLA 准备了眼睛。
打印设置也很正常,我使用了一个 0.8mm 的喷嘴,层高为 0.32mm,填充率为 20%,并为基体提供了支撑。
打印完所有部件后,我用强力胶将所有面部部件连接到基体上。
最后组装
现在我们开始主要组装,首先添加我们用螺母和螺栓将扬声器添加到底座上。
接下来,我将 DC 插孔和翘板开关添加到基体中。
然后我们将 Lithium Boost 模块与 DC 插孔和开关连接起来。
然后我把所有的东西都放在身体里,用一些 M2 螺丝从底部添加主 PCB,组装就完成了。
结果
要打开此设置,我们只需按下翘板开关并更改滑动罐位置即可调制声音。
感谢您阅读这篇文章,我很快就会带着另一个项目回来。
和平
- 加法合成器开源分享
- Arduino合成器
- OscPocketO袖珍合成器和鼓机开源
- Arduino合成器V3设计案例
- 猫朋克合成器V2开源
- 锁相环合成器
- 超低噪声合成器
- 新型微合成™集成密闭合成器模块
- 锁相环合成器
- AD9910: 1 GSPS、14位、3.3 V CMOS直接数字频率合成器
- 基于MC145152-2芯片的频率合成器的设计 48次下载
- 径向功率分配合成器的设计 53次下载
- 射频锁相频率合成器的设计与仿真 101次下载
- 1.3GHz双通道频率合成器
- ΣΔ技术在锁相环频率合成器中的应用
- 时钟合成器和时钟发生器的区别 587次阅读
- 射频合成器的主要作用 615次阅读
- 数字频率合成器的作用 841次阅读
- 高性能宽带射频合成器8V97051ANLGI8概述 640次阅读
- 如何制作一个音频合成器? 1840次阅读
- 如何创建基于DCO的音频合成器 815次阅读
- 将MAX2902与外部频率合成器组合 597次阅读
- PicScope高级函数功能应用——验证射频信号合成器的停延时间(Dwell time) 1275次阅读
- 10KW合成器拆卸的技巧有哪些 1525次阅读
- 基于AD9954和ADF4113芯片实现频率合成器的设计 3574次阅读
- Mitch Altman是如何创建ArduTouch音乐合成器的? 3657次阅读
- 基于锁相环频率合成器的关于合成器的简要概述 4567次阅读
- 基于FPGA的数字示波器波形合成器研究 2745次阅读
- 功率分配器或合成器选择的关键性能参数研究 2174次阅读
- 基于DDS芯片和集成锁相芯片构成的宽频合成器设计 2675次阅读
下载排行
本周
- 1山景DSP芯片AP8248A2数据手册
- 1.06 MB | 532次下载 | 免费
- 2RK3399完整板原理图(支持平板,盒子VR)
- 3.28 MB | 339次下载 | 免费
- 3TC358743XBG评估板参考手册
- 1.36 MB | 330次下载 | 免费
- 4DFM软件使用教程
- 0.84 MB | 295次下载 | 免费
- 5元宇宙深度解析—未来的未来-风口还是泡沫
- 6.40 MB | 227次下载 | 免费
- 6迪文DGUS开发指南
- 31.67 MB | 194次下载 | 免费
- 7元宇宙底层硬件系列报告
- 13.42 MB | 182次下载 | 免费
- 8FP5207XR-G1中文应用手册
- 1.09 MB | 178次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 2555集成电路应用800例(新编版)
- 0.00 MB | 33566次下载 | 免费
- 3接口电路图大全
- 未知 | 30323次下载 | 免费
- 4开关电源设计实例指南
- 未知 | 21549次下载 | 免费
- 5电气工程师手册免费下载(新编第二版pdf电子书)
- 0.00 MB | 15349次下载 | 免费
- 6数字电路基础pdf(下载)
- 未知 | 13750次下载 | 免费
- 7电子制作实例集锦 下载
- 未知 | 8113次下载 | 免费
- 8《LED驱动电路设计》 温德尔著
- 0.00 MB | 6656次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935054次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537798次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420027次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191187次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183279次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138040次下载 | 免费
评论
查看更多