PwmOut_HelloWorld Example for WIZwiki-W7500

Dependencies:   mbed-src

Fork of PwmOut_HelloWorld by Mbed

Prerequisite

This example is for PWM test using digital I/O. To implement this function, you need a Platform board.

Below are what we used.

  • WIZwiki-W7500 from WIZnet (Platform board)

Hardware Configuration

WIZwiki-W7500 Pin map

pin map

Software

Init GPIO

    PwmOut led(LED1);

Set PWM

    led.period(4.0f);      // 4 second period
    led.write(0.50f);      // 50% duty cycle, relative to period
Committer:
justinkim
Date:
Mon Jun 29 03:25:22 2015 +0000
Revision:
2:f2ef6eab578f
Parent:
1:5160ea45399b
PwmOut_HelloWorld Example for WIZwiki-W7500

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 0:50d2b9c62765 1 #include "mbed.h"
mbedAustin 1:5160ea45399b 2
mbed_official 0:50d2b9c62765 3 PwmOut led(LED1);
mbedAustin 1:5160ea45399b 4
mbed_official 0:50d2b9c62765 5 int main() {
mbedAustin 1:5160ea45399b 6 // specify period first
mbedAustin 1:5160ea45399b 7 led.period(4.0f); // 4 second period
mbedAustin 1:5160ea45399b 8 led.write(0.50f); // 50% duty cycle, relative to period
mbedAustin 1:5160ea45399b 9 //led = 0.5f; // shorthand for led.write()
mbedAustin 1:5160ea45399b 10 //led.pulsewidth(2); // alternative to led.write, set duty cycle time in seconds
mbedAustin 1:5160ea45399b 11 while(1);
mbed_official 0:50d2b9c62765 12 }