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.

SerialReadThread.java 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * SerialReadThread.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 reads data from 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 SerialReadThread extends Thread {
  32. private short[] storage;
  33. private int length;
  34. private boolean dataReady = false;
  35. private static int idIndex = 0;
  36. /**
  37. * Create a SerialReadThread
  38. * @param length Amount of data to be read.
  39. */
  40. public SerialReadThread(int length) {
  41. this.length = length;
  42. setName("Serial Reader " + idIndex++);
  43. }
  44. /**
  45. * Start getting data.
  46. */
  47. public void run() {
  48. storage = HelperUtility.readData(length);
  49. dataReady = true;
  50. }
  51. /**
  52. * Check if all data was recieved.
  53. *
  54. * @return TRUE if all data was recieved.
  55. */
  56. public boolean dataIsReady() {
  57. return dataReady;
  58. }
  59. /**
  60. * Get the serial data that was recieved.
  61. *
  62. * @return Array with recieved bytes.
  63. */
  64. public short[] getSerialData() {
  65. return storage;
  66. }
  67. }