Real-time sonification: Difference between revisions
David Sousa (talk | contribs) mNo edit summary |
David Sousa (talk | contribs) mNo edit summary |
||
Line 23: | Line 23: | ||
==== Generate a single tone ==== | ==== Generate a single tone ==== | ||
The following code generates a single tone with a pre-specified frequency and duration. It is possible to change the tone frequency by clicking the white input field with the value "Middle C". From the drop-down menu arrows, it is also possible to change the beat duration and whether the sound is played sequentially with other command blocks, in the background, or in loop <ref name="code" group=" | The following code generates a single tone with a pre-specified frequency and duration. It is possible to change the tone frequency by clicking the white input field with the value "Middle C". From the drop-down menu arrows, it is also possible to change the beat duration and whether the sound is played sequentially with other command blocks, in the background, or in loop <ref name="code" group="Note"> Click the button "Simulator" on the top bar to interact with a virtual micro:bit and test the code. You can edit the code by clicking "Edit" on the top-right corner.</ref>. | ||
Line 32: | Line 32: | ||
==== Play a melody ==== | ==== Play a melody ==== | ||
The following code plays a melody. It is possible to the melody by clicking the white input field with the colorful music notes. From the drop-down menu arrows, it is also possible to change the beat duration and whether the sound is played sequentially with other command blocks, in the background, or in loop <ref name="code" group=" | The following code plays a melody. It is possible to the melody by clicking the white input field with the colorful music notes. From the drop-down menu arrows, it is also possible to change the beat duration and whether the sound is played sequentially with other command blocks, in the background, or in loop <ref name="code" group="Note"> Click the button "Simulator" on the top bar to interact with a virtual micro:bit and test the code. You can edit the code by clicking "Edit" on the top-right corner.</ref>. | ||
Line 49: | Line 49: | ||
==Notes== | ==Notes== | ||
<references group=" | <references group="Note" /> |
Revision as of 11:15, 13 August 2024
Real-time sonification is an exciting technique that can strongly promote students' engagement in STEAM fields. Real-time sonification means that we are not able to perceive the time interval between the acquisition of the data and the respective sound produced by our sonification device because of the speed of the process. Moreover, the methods for creating sound representations of the data are defined simultaneously with data collection (in "real-time").
Real-time sonification devices
To create a real-time sonification device it is useful to use a microcontroller. These are like "small and simple computers" with a single processor unit. They are not computers though. Their architecture is much simpler and they cannot run an operating system. Still, they can be programmed to execute a single program at a time, which can perform multiple tasks but sequentially, according to the order of the instructions listed in the program. There are several types of microcontrollers, the Arduino (arduino.cc) being the most popular.
To begin with, the SoundScapes project suggests using the BBC micro:bit microcontroller. This tool is very simple to use, versatile, and includes several embedded sensors readily available to use, eliminating the requirement to build a specific electrical circuit for operation. The micro:bit can be programmed online with Makecode (using the Chrome browser for better compatibility) in python, javascript, or blocks.
Sonification with micro:bit
Before diving into sonification with the micro:bit you must first get familiarized with the Makecode programming environment. On the main page, there are various tutorials, like the "Flashing Heart", the "Name Tag", etc, between which you can choose to get started. If you sign up on the platform, your projects will be saved on your account and you can access them from any device as long as you sign in. Otherwise, they are anyway saved as cookies, however, you can loose them if you clear your browser cache.
Sound notions in micro:bit
In the Makecode editor, there is a useful and attractive library dedicated to music, especially for young students. This music library offers several commands/blocks that facilitate the generation of sounds and the creation of melodies. It is a good exercise to play with the different blocks and hear what happens to get familiar with them.
Generate a single tone
The following code generates a single tone with a pre-specified frequency and duration. It is possible to change the tone frequency by clicking the white input field with the value "Middle C". From the drop-down menu arrows, it is also possible to change the beat duration and whether the sound is played sequentially with other command blocks, in the background, or in loop [Note 1].
Play a melody
The following code plays a melody. It is possible to the melody by clicking the white input field with the colorful music notes. From the drop-down menu arrows, it is also possible to change the beat duration and whether the sound is played sequentially with other command blocks, in the background, or in loop [Note 1].