探索我们的蜂鸣器解决方案如何彻底改变您的日常生活,从增强家庭安全到简化工业流程。
A
A
硬件概览
它是如何工作的?
BUZZ 2 Click基于CMT-8540S-SMT,这是来自CUI Devices的磁性蜂鸣器换能器。蜂鸣器的共振频率为4kHz。该点击板设计为可以使用3.3V或5V电源运行。mikroBUS™线上的PWM引脚控制CMT-8540S-SMT磁性蜂鸣器。您可
以使用我们编译器支持的Sound库来创建不同的声音模式,或利用微控制器内部的PWM模块来为蜂鸣器创建信号。信号频率决定声音的音调,而占空比决定振幅(声音大小)。这个Click board™可以通过VCCIO SEL跳线选择使
用3.3V或5V逻辑电压级别,这样,3.3V和5V能力的MCU都可以正确使用通信线。此外,这个Click board™还配备了一个包含易于使用的功能和示例代码的库,可以作为进一步开发的参考。
功能概述
开发板
PIC18F57Q43 Curiosity Nano 评估套件是一款尖端的硬件平台,旨在评估 PIC18-Q43 系列内的微控制器。其设计的核心是包含了功能强大的 PIC18F57Q43 微控制器(MCU),提供先进的功能和稳健的性能。这个评估套件的关键特点包括一个黄 色用户 LED 和一个响应灵敏的机械用户开关,提供无
缝的交互和测试。为一个 32.768kHz 水晶振荡器足迹提供支持,确保精准的定时能力。套件内置的调试器拥有一个绿色电源和状态 LED,使编程和调试变得直观高效。此外,增强其实用性的还有虚拟串行端口 (CDC)和一个调试 GPIO 通道(DGI GPIO),提供广泛的连接选项。该套件通过 USB 供电,拥有由
MIC5353 LDO 调节器提供支持的可调目标电压功能,确保在 1.8V 至 5.1V 的输出电压范围内稳定运行,最大输出电流为 500mA,受环境温度和电压限制。
微控制器概述
MCU卡片 / MCU
建筑
PIC
MCU 内存 (KB)
128
硅供应商
Microchip
引脚数
48
RAM (字节)
8196
你完善了我!
配件
Curiosity Nano Base for Click boards 是一款多功能硬件扩展平台,专为简化 Curiosity Nano 套件与扩展板之间的集成而设计,特别针对符合 mikroBUS™ 标准的 Click 板和 Xplained Pro 扩展板。这款创新的基板(屏蔽板)提供了无缝的连接和扩展可能性,简化了实验和开发过程。主要特点包括从 Curiosity Nano 套件提供 USB 电源兼容性,以及为增强灵活性而提供的另一种外部电源输入选项。板载锂离子/锂聚合物充电器和管理电路确保电池供电应用的平稳运行,简化了使用和管理。此外,基板内置了一个固定的 3.3V 电源供应单元,专用于目标和 mikroBUS™ 电源轨,以及一个固定的 5.0V 升压转换器,专供 mikroBUS™ 插座的 5V 电源轨,为各种连接设备提供稳定的电力供应。
使用的MCU引脚
mikroBUS™映射器
“仔细看看!”
Click board™ 原理图
一步一步来
项目组装
实时跟踪您的结果
通过调试模式的应用程序输出
1. 一旦代码示例加载完成,按下 "DEBUG" 按钮将启动构建过程,并将其编程到创建的设置上,然后进入调试模式。
2. 编程完成后,IDE 中将出现一个带有各种操作按钮的标题。点击绿色的 "PLAY" 按钮开始读取通过 Click board™ 获得的结果。获得的结果将在 "Application Output" 标签中显示。
软件支持
库描述
这个库包含了BUZZ 2 Click驱动的API。
关键功能:
buzz2_set_duty_cycle
- BUZZ 2设置PWM占空比buzz2_play_sound
- 播放声音功能buzz2_pwm_start
- BUZZ 2启动PWM模块
开源
代码示例
这个示例可以在 NECTO Studio 中找到。欢迎下载代码,或者您也可以复制下面的代码。
/*!
* @file main.c
* @brief Buzz2 Click example
*
* # Description
* This example demonstrates the use of Buzz 2 click boards.
*
* The demo application is composed of two sections :
*
* ## Application Init
* Initializes the driver and logger.
*
* ## Application Task
* Plays the Imperial March melody. Also logs an appropriate message on the USB UART.
*
* @note
* The minimal PWM Clock frequency required for this example is the frequency of tone C6 - 1047 Hz.
* So, in order to run this example and play all tones correctly, the user will need to decrease
* the MCU's main clock frequency in MCU Settings for the certain architectures
* in order to get the required PWM clock frequency.
*
* @author Jelena Milosavljevic
*
*/
#include "board.h"
#include "log.h"
#include "buzz2.h"
#define W 4*Q // Whole 4/4 - 4 Beats
#define H 2*Q // Half 2/4 - 2 Beats
#define Q 250 // Quarter 1/4 - 1 Beat
#define E Q/2 // Eighth 1/8 - 1/2 Beat
#define S Q/4 // Sixteenth 1/16 - 1/4 Beat
#define VOLUME 100 // goes up to 1000
static buzz2_t buzz2;
static log_t logger;
static void imperial_march( )
{
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, H );
Delay_ms ( 1 + H );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_E7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_E7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_E7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F7, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Ab6, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, H );
Delay_ms ( 1 + H );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Ab7, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_G7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Gb7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_E7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F7, VOLUME, E );
Delay_ms ( 1 + E );
Delay_ms ( 1 + E );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Bb6, VOLUME, E );
Delay_ms ( 1 + E );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Eb7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_D7, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Db7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_B6, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, E );
Delay_ms ( 1 + E );
Delay_ms ( 1 + E );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F6, VOLUME, E );
Delay_ms ( 1 + E );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Ab6, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_E7, VOLUME, H );
Delay_ms ( 1 + H );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Ab7, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_G7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Gb7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_E7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F7, VOLUME, E );
Delay_ms ( 1 + E );
Delay_ms ( 1 + E );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Bb6, VOLUME, E );
Delay_ms ( 1 + E );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Eb7, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_D7, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Db7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_B6, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, E );
Delay_ms ( 1 + E );
Delay_ms ( 1 + E );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F6, VOLUME, E );
Delay_ms ( 1 + E );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Ab6, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_A6, VOLUME, Q );
Delay_ms ( 1 + Q );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_F6, VOLUME, E + S );
Delay_ms ( 1 + E + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_C7, VOLUME, S );
Delay_ms ( 1 + S );
buzz2_play_sound(&buzz2, BUZZ2_NOTE_Ab6, VOLUME, H );
Delay_ms ( 1 + H );
}
void application_init ( void ) {
log_cfg_t log_cfg; /**< Logger config object. */
buzz2_cfg_t buzz2_cfg; /**< Click config object. */
/**
* Logger initialization.
* Default baud rate: 115200
* Default log level: LOG_LEVEL_DEBUG
* @note If USB_UART_RX and USB_UART_TX
* are defined as HAL_PIN_NC, you will
* need to define them manually for log to work.
* See @b LOG_MAP_USB_UART macro definition for detailed explanation.
*/
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
buzz2_cfg_setup( &buzz2_cfg );
BUZZ2_MAP_MIKROBUS( buzz2_cfg, MIKROBUS_1 );
err_t init_flag = buzz2_init( &buzz2, &buzz2_cfg );
if ( init_flag == PWM_ERROR ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
buzz2_set_duty_cycle ( &buzz2, 0.0 );
buzz2_pwm_start( &buzz2 );
Delay_ms ( 100 );
log_info( &logger, " Application Task " );
}
void application_task ( void )
{
log_printf( &logger, "Playing the Imperial March melody ...\r\n" );
imperial_march( );
// 10 seconds delay
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
int main ( void )
{
/* Do not remove this line or clock might not be set correctly. */
#ifdef PREINIT_SUPPORTED
preinit();
#endif
application_init( );
for ( ; ; )
{
application_task( );
}
return 0;
}
// ------------------------------------------------------------------------ END