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.provider.sysfs;
/*
* #%L
* Organisation: mattjlewis
* Project: Device I/O Zero - Core
* Filename: SysFsPwmOutputDevice.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 - 2017 mattjlewis
* %%
* 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.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.pmw.tinylog.Logger;
import com.diozero.api.PwmPinInfo;
import com.diozero.internal.provider.AbstractDevice;
import com.diozero.internal.provider.DeviceFactoryInterface;
import com.diozero.internal.provider.PwmOutputDeviceInterface;
import com.diozero.util.RuntimeIOException;
public class SysFsPwmOutputDevice extends AbstractDevice implements PwmOutputDeviceInterface {
private int gpio;
private int pwmChip;
private int pwmNum;
private Path pwmRoot;
private RandomAccessFile dutyFile;
private int periodNs;
public SysFsPwmOutputDevice(String key, DeviceFactoryInterface deviceFactory, int pwmChip, PwmPinInfo pinInfo,
int frequency, float initialValue) {
super(key, deviceFactory);
this.pwmChip = pwmChip;
gpio = pinInfo.getDeviceNumber();
pwmNum = pinInfo.getPwmNum();
periodNs = 1_000_000_000 / frequency;
Path pwm_chip_root = Paths.get("/sys/class/pwm/pwmchip" + pwmChip);
pwmRoot = pwm_chip_root.resolve("pwm" + pwmNum);
try {
if (!pwmRoot.toFile().exists()) {
File export_file = pwm_chip_root.resolve("export").toFile();
try (FileWriter writer = new FileWriter(export_file)) {
writer.write(String.valueOf(pwmNum));
}
}
setPolarity(Polarity.NORMAL);
setEnabled(true);
setPeriod(periodNs);
dutyFile = new RandomAccessFile(pwmRoot.resolve("duty_cycle").toFile(), "rw");
} catch (IOException e) {
throw new RuntimeIOException("Error opening PWM #" + pwmNum, e);
}
setValue(0);
}
@Override
protected void closeDevice() {
try { setEnabled(false); } catch (Exception e) { }
try { dutyFile.close(); } catch (Exception e) { }
Path pwm_chip_root = Paths.get("/sys/class/pwm/pwmchip" + pwmChip);
try (FileWriter writer = new FileWriter(pwm_chip_root.resolve("unexport").toFile())) {
writer.write(String.valueOf(pwmNum));
} catch (Exception e) {
Logger.warn(e, "Error closing pwm #" + pwmNum);
}
}
@Override
public int getGpio() {
return gpio;
}
@Override
public int getPwmNum() {
return pwmNum;
}
@Override
public float getValue() throws RuntimeIOException {
// FIXME Result is ignored
isOpen();
try {
dutyFile.seek(0);
return Integer.parseInt(dutyFile.readLine()) / (float) periodNs;
} catch (IOException e) {
close();
throw new RuntimeIOException("Error getting duty for PWM " + gpio, e);
}
}
@Override
public void setValue(float value) throws RuntimeIOException {
if (value < 0 || value > 1) {
throw new IllegalArgumentException("Invalid value, must be 0..1");
}
try {
//dutyFile.seek(0);
dutyFile.writeBytes(Integer.toString(Math.round(value * periodNs)));
//dutyFile.flush();
} catch (IOException e) {
close();
throw new RuntimeIOException("Error setting duty for PWM #" + pwmNum, e);
}
}
private void setEnabled(boolean enabled) throws IOException {
Logger.info("setEnabled(" + enabled + ")");
try (FileWriter writer = new FileWriter(pwmRoot.resolve("enable").toFile())) {
writer.write(enabled ? "1" : "0");
}
}
private void setPeriod(int periodNs) throws IOException {
Logger.info("setPeriod(" + periodNs + ")");
try (FileWriter period_file = new FileWriter(pwmRoot.resolve("period").toFile())) {
period_file.write(Integer.toString(periodNs));
}
this.periodNs = periodNs;
}
protected void setPolarity(Polarity polarity) {
Logger.info("setPolarity(" + polarity + ")");
try (FileWriter writer = new FileWriter(pwmRoot.resolve("polarity").toFile())) {
writer.write(polarity.getValue());
writer.flush();
} catch (IOException e) {
Logger.error(e, "Error setting polarity to {}: {}", polarity.getValue(), e);
}
}
public static enum Polarity {
NORMAL("normal"), INVERSED("inversed");
private String value;
private Polarity(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
}