🗊Презентация PWM (Pulse-Width Modulation)

Категория: Технология
Нажмите для полного просмотра!
PWM (Pulse-Width Modulation), слайд №1PWM (Pulse-Width Modulation), слайд №2PWM (Pulse-Width Modulation), слайд №3PWM (Pulse-Width Modulation), слайд №4PWM (Pulse-Width Modulation), слайд №5

Вы можете ознакомиться и скачать презентацию на тему PWM (Pulse-Width Modulation). Доклад-сообщение содержит 5 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1






Task 5. PWM (Pulse-Width Modulation)
AMM embedded course
Описание слайда:
Task 5. PWM (Pulse-Width Modulation) AMM embedded course

Слайд 2





Links
stm32_reference_manual.pdf - 17.3.10 PWM mode (Advanced-Control Timers) 
https://en.wikipedia.org/wiki/Pulse-width_modulation
http://microtechnics.ru/stm32-uchebnyj-kurs-tajmery-chast-2/
http://visualgdb.com/tutorials/arm/stm32/pwm/
http://chipspace.ru/httpchipspace-rustm32-general-purpose-timers-3-pwm-stdperiph_lib/
Описание слайда:
Links stm32_reference_manual.pdf - 17.3.10 PWM mode (Advanced-Control Timers) https://en.wikipedia.org/wiki/Pulse-width_modulation http://microtechnics.ru/stm32-uchebnyj-kurs-tajmery-chast-2/ http://visualgdb.com/tutorials/arm/stm32/pwm/ http://chipspace.ru/httpchipspace-rustm32-general-purpose-timers-3-pwm-stdperiph_lib/

Слайд 3





Timer with PWM mode
Pulse Width Modulation mode allows you to generate a signal with a frequency determined by the value of the TIMx_ARR register and a duty cycle determined by the value of the TIMx_CCRx register:
In the PWM mode the timer controls the output of 1 or more output channels. When the counter value reaches 0, maximum or a compare value defined for each channel, the output value of the channel can be changed. Various configuration options define which events change the value and how it is changed.
Описание слайда:
Timer with PWM mode Pulse Width Modulation mode allows you to generate a signal with a frequency determined by the value of the TIMx_ARR register and a duty cycle determined by the value of the TIMx_CCRx register: In the PWM mode the timer controls the output of 1 or more output channels. When the counter value reaches 0, maximum or a compare value defined for each channel, the output value of the channel can be changed. Various configuration options define which events change the value and how it is changed.

Слайд 4





Task 5.1. Different LED brightness without PWM
Use usual scheme of LED output 
Use delay cycle to contoll brightness (turn LED on – delay – turn LED off)
Decrease delay by pressing the button
Описание слайда:
Task 5.1. Different LED brightness without PWM Use usual scheme of LED output Use delay cycle to contoll brightness (turn LED on – delay – turn LED off) Decrease delay by pressing the button

Слайд 5





Task 5.2. Different LED brightness with PWM 
Find appropriate pin for Alternate Function output – Timex X Channel Y (check STM32F4 datasheet)
Init the pin with AF mode (GPIO_PinAFConfig())
Init timer for this pin+channel with OCmode == TIM_OCMode_PWM1 (TIM_OC1Init(), TIM_OC1PreloadConfig(), TIM_ARRPreloadConfig(), TIM_Cmd())
Regulate the brightness via TIMx->CCRx value
Описание слайда:
Task 5.2. Different LED brightness with PWM Find appropriate pin for Alternate Function output – Timex X Channel Y (check STM32F4 datasheet) Init the pin with AF mode (GPIO_PinAFConfig()) Init timer for this pin+channel with OCmode == TIM_OCMode_PWM1 (TIM_OC1Init(), TIM_OC1PreloadConfig(), TIM_ARRPreloadConfig(), TIM_Cmd()) Regulate the brightness via TIMx->CCRx value



Похожие презентации
Mypresentation.ru
Загрузить презентацию