Simple single-color 8x8x8 LED Cube with AVRs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SerialWriteThread.java 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * SerialWriteThread.java
  3. *
  4. * Copyright 2011 Thomas Buck <xythobuz@me.com>
  5. * Copyright 2011 Max Nuding <max.nuding@gmail.com>
  6. * Copyright 2011 Felix Bäder <baeder.felix@gmail.com>
  7. *
  8. * This file is part of LED-Cube.
  9. *
  10. * LED-Cube is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation, either version 3 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * LED-Cube is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with LED-Cube. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. /**
  24. * Thread that writes data to an opened serial port.
  25. * @author Thomas Buck
  26. * @author Max Nuding
  27. * @author Felix Bäder
  28. * @version 1.0
  29. */
  30. import java.lang.Thread;
  31. public class SerialWriteThread extends Thread {
  32. private short[] data;
  33. private boolean dataSent = false;
  34. private static int idIndex = 0;
  35. /**
  36. * Create a SerialWriteThread
  37. * @param data Data to be written.
  38. */
  39. public SerialWriteThread(short[] data) {
  40. this.data = data;
  41. setName("Serial Writer " + idIndex++);
  42. }
  43. /**
  44. * Start writing data.
  45. */
  46. public void run() {
  47. HelperUtility.writeData(data, data.length);
  48. dataSent = true;
  49. }
  50. /**
  51. * Check if all data was sent.
  52. *
  53. * @return TRUE if all data was sent.
  54. */
  55. public boolean dataWasSent() {
  56. return dataSent;
  57. }
  58. }