Данная функция устанавливает максимальную/HIGH длительность PWM.
dcmotor.setWidth(width)
width - целочисленное значение, которое представляет собой максимальную/HIGH длительность PWM в микросекундах
Отсутствуют.
#include <PhpocExpansion.h>
#include <Phpoc.h>
byte spcId = 1;
ExpansionDCMotor dcmotor(spcId, 1);
int width = 3000;
void setup() {
Serial.begin(9600);
while(!Serial)
;
Phpoc.begin(PF_LOG_SPI | PF_LOG_NET);
Expansion.begin();
Serial.println(dcmotor.getPID());
Serial.println(dcmotor.getName());
dcmotor.setPeriod(10000);
// set the HIGH duration of PWM
dcmotor.setWidth(width);
}
void loop() {
if(width > 0) {
width -= 100;
dcmotor.setWidth(width);
delay(100);
}
}