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

com.pi4j.gpio.extension.mcp.MCP3204Pin Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.pi4j.gpio.extension.mcp;

import java.util.EnumSet;

import com.pi4j.io.gpio.Pin;
import com.pi4j.io.gpio.PinMode;
import com.pi4j.io.gpio.impl.PinImpl;

/*
 * #%L
 * **********************************************************************
 * ORGANIZATION  :  Pi4J
 * PROJECT       :  Pi4J :: GPIO Extension
 * FILENAME      :  MCP3204Pin.java
 *
 * This file is part of the Pi4J project. More information about
 * this project can be found here:  http://www.pi4j.com/
 * **********************************************************************
 * %%
 * Copyright (C) 2012 - 2016 Pi4J
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

/**
 *
 * 

* This GPIO provider implements the MCP3204 SPI GPIO expansion board as native Pi4J GPIO pins. It is a 12-bit ADC * providing 4 input channels. *

* *

* The MCP3208 is connected via SPI connection to the Raspberry Pi and provides 8 GPIO pins that can be used for analog * input pins. *

* * @author pojd, Hendrik Motza */ public class MCP3204Pin { public static final Pin CH0 = createAnalogInputPin(0, "ANALOG INPUT 0"); public static final Pin CH1 = createAnalogInputPin(1, "ANALOG INPUT 1"); public static final Pin CH2 = createAnalogInputPin(2, "ANALOG INPUT 2"); public static final Pin CH3 = createAnalogInputPin(3, "ANALOG INPUT 3"); public static Pin[] ALL = { MCP3204Pin.CH0, MCP3204Pin.CH1, MCP3204Pin.CH2, MCP3204Pin.CH3 }; private static Pin createAnalogInputPin(final int channel, final String name) { return new PinImpl(MCP3204GpioProvider.NAME, channel, name, EnumSet.of(PinMode.ANALOG_INPUT)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy