Created
January 6, 2018 22:21
-
-
Save samuelsonbrito/15c4821763c1829b29e8626f41671318 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package javafxarduino; | |
import com.fazecast.jSerialComm.SerialPort; | |
import java.net.URL; | |
import java.util.ResourceBundle; | |
import javafx.fxml.FXML; | |
import javafx.fxml.Initializable; | |
import javafx.scene.control.Button; | |
import javafx.scene.control.ComboBox; | |
/** | |
* | |
* @author Samuelson | |
*/ | |
public class FXMLDocumentController implements Initializable { | |
@FXML | |
private ComboBox cbPortas; | |
@FXML | |
private Button btnConectar; | |
private SerialPort porta; | |
private int led = 0; | |
@Override | |
public void initialize(URL url, ResourceBundle rb) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment