Yapay zekadan makale özeti
- Kısa
- Ayrıntılı
- Bu video, bir eğitim içeriği olup, konuşmacı Arduino ile MIDI USB cihazı oluşturma konusunda bilgi vermektedir.
- Video, Arduino Micro, Pro Micro ve Leonardo gibi Mega32U4 mikro kontrolörlerini kullanarak MIDI USB cihazı nasıl yapılabileceğini anlatmaktadır. İçerikte önce gerekli kütüphane (USB-FB) nasıl indirileceği, nasıl kullanılabileceği açıklanmakta, ardından MIDI not on ve control change fonksiyonlarının nasıl kullanılacağı gösterilmektedir. Video, bir MIDI monitör programı kullanılarak oluşturulan cihazın çalışmasını da göstermektedir.
- 00:00Arduino USB Device Conversion
- The video demonstrates how to convert Arduino Micro, Pro Micro, and Leonardo into a real MIDI USB device.
- This tutorial is specifically for boards with the ATmega32U4 microcontroller, which includes Micro, Pro Micro, and Leonardo.
- The ATmega32U4 microcontroller can be programmed to act as a USB device like a keyboard or mouse out of the box.
- 03:17Required Libraries and Setup
- To work with the microcontroller as a USB device, you need to download the MIDI USB library.
- The library can be downloaded from GitHub or added through the Arduino IDE's library manager by searching for "usb-usb".
- You need to include the MIDI USB library in your code and use specific functions like noteOn and controlChange.
- 06:44Coding for MIDI USB
- The code example shows how to send MIDI notes with noteOn function, specifying channel and note number.
- After sending MIDI data, you must call MIDIUSB.flush() to ensure the data is sent.
- The demonstration uses a MIDI monitor software to show the MIDI output from the Arduino Micro.
- 09:24Conclusion
- The video covers the basics of coding MIDI USB and making the Arduino Micro act as a USB device.
- The presenter mentions having a complete course on making music with Arduino Micro, Pro Micro, and Leonardo.