GRID.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package eu.tankernn.grid.model;
  2. import java.util.Arrays;
  3. import java.util.stream.IntStream;
  4. import java.util.stream.Stream;
  5. import eu.tankernn.grid.Fan;
  6. /**
  7. * This class uses the communicator class to communicate with the GRID+
  8. * controller.
  9. *
  10. * @author Frans
  11. */
  12. public class GRID {
  13. private Communicator communicator = new Communicator();
  14. private Fan[] fans = IntStream.range(0, 6).mapToObj(i -> new Fan(communicator, i)).toArray(Fan[]::new);
  15. /**
  16. * This method simply runs the disconnect method of the communicator.
  17. */
  18. public void disconnect() {
  19. communicator.disconnect();
  20. }
  21. /**
  22. * Gets the fan at the specified index.
  23. * @param index The fan index (0-5)
  24. * @return The fan object
  25. */
  26. public Fan getFan(int index) {
  27. return fans[index];
  28. }
  29. public Communicator getCommunicator() {
  30. return communicator;
  31. }
  32. public double getTotalWattage() {
  33. return fanStream().mapToDouble(Fan::getWattage).sum();
  34. }
  35. public void pollFans() {
  36. fanStream().forEach(Fan::poll);
  37. }
  38. public void updateFanSpeeds(double temp, int minSpeed) {
  39. fanStream().forEach(f -> f.update(temp, minSpeed));
  40. }
  41. public Stream<Fan> fanStream() {
  42. return Arrays.stream(fans);
  43. }
  44. }