
com.github.sdnwiselab.sdnwise.mote.standalone.Mote Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdn-wise-node Show documentation
Show all versions of sdn-wise-node Show documentation
The stateful Software Defined Networking solution for WIreless SEnsor Networks
The newest version!
/*
* Copyright (C) 2015 SDN-WISE
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.github.sdnwiselab.sdnwise.mote.standalone;
import com.github.sdnwiselab.sdnwise.mote.battery.Battery;
import com.github.sdnwiselab.sdnwise.mote.core.MoteCore;
import com.github.sdnwiselab.sdnwise.util.NodeAddress;
/**
*
* @author Sebastiano Milardo
*/
public class Mote extends AbstractMote {
public Mote(byte netId, NodeAddress myAddress,
int port,
String neighboursPath,
String logLevel) {
super(port, neighboursPath, logLevel);
battery = new Battery();
core = new MoteCore(netId, myAddress, battery);
core.start();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy