Yuhei Okazaki
Yuhei Okazaki
We will confirm this as well after the discussion on https://github.com/mruby-esp32/mruby-esp32-mqtt/pull/2. Thanks.
@negativekelvin Does this issue still occur on the latest main branch? If not, may I close this issue ?
Closed as it is not expected to occur at this time.
@mike-shock Does this issue still occur on the latest main branch? If not, may I close this issue ?
Closed as it is not expected to occur at this time.
sample program. ```ruby WAIT_MS = 1000 pwm = PWM.new(25, freq: 50) def pulse_width_us(angle) Rational((angle - (-90)) * (2500 - 500), (90 - (-90))).to_i + 500; end loop do [0, 30,...
@vickash Thank you for your advices ! I also think this mrbgem should be renamed. However, we believe that a class named PWM is necessary in case a program is...
> I didn't dig all the way into the MCPWM docs yet, but can each channel set its frequency independently? Perhaps you could use more than one timer. However, the...
@vickash Thanks. I pushed rename mrbgem commit. Please review its code.