STM32通过FSMC驱动3.2寸液晶屏实现的音乐频谱

视频演示:

http://player.youku.com/player.php/sid/XNDcyMDgwMTE2/v.swf


源码下载:
lattice_ music _tft.rar(1.42 MB, 下载次数: 274)

补充说明:
1、为减小噪声干扰,可以在ADC输入引脚处接一个0.1uF的陶瓷电容到地,这样对高频噪声干扰滤除效果很好。
2、程序使用的ST官方提供的DSP库里面的FFT算法,速度相当快。
3、显示方式不是刷整屏,是将需要更新的地方再次更新下即可,所以显示效果很流畅,不会有明显的刷屏效果。
4、可以将音响输出的音频信号直接接在ADC采样引脚上,但是要注意不要将声音开得太大,否则会超过3.3V电压导致程序直接复位。

程序部分源码:

 

/**
  * @brief  LCD显示红色和绿色柱
  * @param  RedNewHeight 红色柱子高度列表
  * @param  GreenNewHeight 绿色柱子高度列表
  * @retval None
  */
void music_fft_main(uint8_t *RedNewHeight,uint8_t *GreenNewHeight)
{
  int BarWidth = 8;
  int i=0;
  static uint8_t RedOldHeight[32] = {0};
  static uint8_t GreenOldHeight[32] = {0};
        for(i=0;i<32;i++){
                //清除之前的绿色方块
                //LCD_COLOR = LCD_COLOR_BLACK;
                ARC_LCD_FillRect(GreenOldHeight[i],(BarWidth+2)*i,GreenOldHeight[i]+3,(BarWidth+2)*i+BarWidth,LCD_COLOR_BLACK);
                //显示当前的绿色方块
                ARC_LCD_FillRect(GreenNewHeight[i],(BarWidth+2)*i,GreenNewHeight[i]+3,(BarWidth+2)*i+BarWidth,LCD_COLOR_GREEN);
                //显示红色柱
                if(RedNewHeight[i]>RedOldHeight[i]){//如果当前的绿色柱子高度比之前的大则补齐绿色柱子
                        ARC_LCD_FillRect(RedOldHeight[i],(BarWidth+2)*i,RedNewHeight[i],(BarWidth+2)*i+BarWidth,LCD_COLOR_RED);
                }else{//如果当前显示的绿色柱子高度小于之前的柱子则需要将多余的绿色柱子用背景色填充
                        ARC_LCD_FillRect(RedNewHeight[i],(BarWidth+2)*i,RedOldHeight[i],(BarWidth+2)*i+BarWidth,LCD_COLOR_BLACK);
                }
                //将新数据保存
                RedOldHeight[i] = RedNewHeight[i];
                GreenOldHeight[i] = GreenNewHeight[i];        
        }
}


 

 

你可能感兴趣的:(stm32)