Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package com.diozero.internal;
/*
* #%L
* Organisation: diozero
* Project: Device I/O Zero - Core
* Filename: SoftwarePwmOutputDevice.java
*
* This file is part of the diozero project. More information about this project
* can be found at http://www.diozero.com/
* %%
* Copyright (C) 2016 - 2020 diozero
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* #L%
*/
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import org.tinylog.Logger;
import com.diozero.internal.provider.AbstractDevice;
import com.diozero.internal.provider.DeviceFactoryInterface;
import com.diozero.internal.provider.GpioDigitalOutputDeviceInterface;
import com.diozero.internal.provider.PwmOutputDeviceInterface;
import com.diozero.util.DioZeroScheduler;
import com.diozero.util.RangeUtil;
import com.diozero.util.SleepUtil;
public class SoftwarePwmOutputDevice extends AbstractDevice implements PwmOutputDeviceInterface, Runnable {
private GpioDigitalOutputDeviceInterface digitalOutputDevice;
private ScheduledFuture> future;
private int periodMs;
private int dutyNs;
private AtomicBoolean fullyOn;
public SoftwarePwmOutputDevice(String key, DeviceFactoryInterface deviceFactory,
GpioDigitalOutputDeviceInterface digitalOutputDevice, int frequency, float initialValue) {
super(key, deviceFactory);
Logger.warn("Hardware PWM not available for device {}, reverting to software", key);
this.digitalOutputDevice = digitalOutputDevice;
fullyOn = new AtomicBoolean();
periodMs = 1_000 / frequency;
setValue(initialValue);
start();
}
public void start() {
future = DioZeroScheduler.getNonDaemonInstance().scheduleAtFixedRate(this, periodMs, periodMs, TimeUnit.MILLISECONDS);
}
public void stop() {
if (future != null) {
future.cancel(true);
}
}
@Override
public void run() {
if (dutyNs == 0) {
// Fully off
digitalOutputDevice.setValue(false);
} else if (fullyOn.get()) {
digitalOutputDevice.setValue(true);
} else {
digitalOutputDevice.setValue(true);
SleepUtil.sleepNanos(dutyNs);
digitalOutputDevice.setValue(false);
}
}
@Override
protected void closeDevice() {
Logger.trace("closeDevice() {}", getKey());
stop();
if (digitalOutputDevice != null) {
digitalOutputDevice.close();
digitalOutputDevice = null;
}
}
@Override
public float getValue() {
return dutyNs / (float) TimeUnit.MILLISECONDS.toNanos(periodMs);
}
@Override
public void setValue(float value) {
// Constrain to 0..1
value = RangeUtil.constrain(value, 0, 1);
dutyNs = Math.round(value * TimeUnit.MILLISECONDS.toNanos(periodMs));
if (value == 1) {
fullyOn.getAndSet(true);
} else {
fullyOn.getAndSet(false);
}
}
@Override
public int getGpio() {
return digitalOutputDevice.getGpio();
}
@Override
public int getPwmNum() {
return digitalOutputDevice.getGpio();
}
}