Hi all.
I have been pretty frustrated with the ASCII only Serial Monitor in Arduino and I would like to implement a hex/binary mode. In its most basic form it would not display offsets but simply the data.
I went here:
and found this:
public void message(final String s) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
textArea.append(s); // <------------------
if (autoscrollBox.isSelected()) {
textArea.setCaretPosition(textArea.getDocument().getLength());
}
}});
}
I'm thinking I can just modify this method to check a conditional and toggle it with a JButton. I am at school right now though, and we don't have eclipse in these labs. When I get home I want to change this but my questions are...
a.) What do I have to do to get this compiled assuming I have git and Eclipse, and I clone this repo? Are there libraries and packages I need? Is there documentation for doing this? I can only find a very generic README and how-to's for compiling it as-is on the command line.
b.) Would do I do with my modified version? I have only used git for personal use and I don't know how to offer up these changes to a larger project.
Thanks in Advance,
Bret Fontecchio