All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.diozero.internal.board.odroid.OdroidC2SysFsPwmOutputDevice Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.diozero.internal.board.odroid;

/*
 * #%L
 * Organisation: diozero
 * Project:      Device I/O Zero - Core
 * Filename:     OdroidC2SysFsPwmOutputDevice.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.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.file.Path;
import java.nio.file.Paths;

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;

/**
 * 

Setting up: * 1 PWM Channel (GPIO 234; Pin 33):

*
{@code
 *sudo modprobe pwm-meson
 *sudo modprobe pwm-ctrl
 *}
*

2 PWM Channels (GPIO 234 & 235; Pins 33 / 19):

*
{@code
 *sudo modprobe pwm-meson npwm=2
 *sudo modprobe pwm-ctrl
 *}
*/ public class OdroidC2SysFsPwmOutputDevice extends AbstractDevice implements PwmOutputDeviceInterface { private static Path PWM_ROOT = Paths.get("/sys/devices/platform/pwm-ctrl"); private int range; private int gpio; private int pwmNum; private RandomAccessFile dutyFile; public OdroidC2SysFsPwmOutputDevice(String key, DeviceFactoryInterface deviceFactory, PwmPinInfo pinInfo, int frequency, float initialValue) { super(key, deviceFactory); this.range = 1023; this.gpio = pinInfo.getDeviceNumber(); this.pwmNum = pinInfo.getPwmNum(); try { dutyFile = new RandomAccessFile(PWM_ROOT.resolve("duty" + pwmNum).toFile(), "rw"); } catch (IOException e) { throw new RuntimeIOException("Error opening duty file for PWM " + pwmNum, e); } setEnabled(pwmNum, true); setFrequency(pwmNum, frequency * 1000); setValue(initialValue); } @Override protected void closeDevice() { try { dutyFile.close(); } catch (IOException e) { // Ignore } setEnabled(pwmNum, false); } @Override public int getGpio() { return gpio; } @Override public int getPwmNum() { return pwmNum; } @Override public float getValue() throws RuntimeIOException { try { dutyFile.seek(0); return Integer.parseInt(dutyFile.readLine()) / range; } catch (IOException e) { closeDevice(); throw new RuntimeIOException("Error setting duty for PWM #" + pwmNum, 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 * range)))); } catch (IOException e) { closeDevice(); throw new RuntimeIOException("Error setting duty for PWM #" + pwmNum, e); } } private static void setEnabled(int pwmNum, boolean enabled) { File f = PWM_ROOT.resolve("enable" + pwmNum).toFile(); try (FileWriter writer = new FileWriter(f)) { writer.write(enabled ? "1" : "0"); } catch (IOException e) { throw new RuntimeIOException("Error enabling PWM on #" + pwmNum, e); } } static void setFrequency(int pwmNum, int frequency) { File f = PWM_ROOT.resolve("freq" + pwmNum).toFile(); try (FileWriter writer = new FileWriter(f)) { writer.write(Integer.toString(frequency)); } catch (IOException e) { throw new RuntimeIOException("Error setting frequency (" + frequency + ") for PWM #" + pwmNum, e); } } static int getFrequency(int pwmNum) { File f = PWM_ROOT.resolve("freq" + pwmNum).toFile(); try (BufferedReader reader = new BufferedReader(new FileReader(f))) { return Integer.parseInt(reader.readLine()); } catch (IOException | NumberFormatException e) { throw new RuntimeIOException("Error getting frequency for PWM #" + pwmNum, e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy