org.ogema.driver.generic_zb.Generic_ZbConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generic-zb Show documentation
Show all versions of generic-zb Show documentation
Generic high level driver for standard ZigBee devices.
The newest version!
/**
* Copyright 2011-2019 Fraunhofer-Gesellschaft zur Förderung der angewandten Wissenschaften e.V.
*
* This file is part of OGEMA.
*
* OGEMA is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* as published by the Free Software Foundation.
*
* OGEMA 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 Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with OGEMA. If not, see .
*/
package org.ogema.driver.generic_zb;
import org.ogema.core.channelmanager.ChannelConfiguration;
public class Generic_ZbConfig {
public String interfaceId;
public String driverId = "xbee-driver";
public String deviceAddress;
public String deviceParameters;
public String channelAddress;
public short deviceId; // Actually the ID that identifies the type of Endpoint
public long timeout;
public String resourceName;
public ChannelConfiguration chConfiguration;
}