Table of Contents

NPWM_BEGIN()

NPWM_BEGIN() prepares pulse output with the specified frequency, duty cycle and pulse count.

NPWM_BEGIN command operation flow

void NPWM_BEGIN(uint8_t pin, uint32_t intHz, float Duty, uint32_t N)

Commands

Command Arguments Return Value Operation
NPWM_BEGIN(pin, intHz, Duty, N) uint8_t pin
uint32_t intHz
float Duty
uint32_t N
void Prepares pulse output with the specified frequency, duty cycle and pulse count.

Example

void setup()
{
    NPWM_BEGIN(0, 1000, 50.0F, 100);  // Prepare pulse output with the specified frequency, duty cycle and pulse count.
}
 
void loop()
{
    NPWM(0);  // Output the configured number of pulses.
}

Precautions

Built-in Commands in the Same Category

← Built-in Command List