Browse Source

Adaptation of the receive logic

Benutzeroberflaeche
Christian Tinz 10 months ago
parent
commit
fb873406f9

+ 1
- 6
app/src/main/java/com/example/greenwatch/communication/WiFiCommunication.java View File

@@ -51,11 +51,6 @@ public class WiFiCommunication {
if (mDeviceRepository == null) {
this.mDeviceRepository = deviceRepository;
}

}
public void setRecievedSting(String rxString) {
this.rxString = rxString;
//mDeviceRepository.getNewReceivedMessage(this.rxString);
}

public void setNewMessage(String newMessage, boolean isNewMessage){
@@ -124,7 +119,7 @@ public class WiFiCommunication {
rxString = new String(packet.getData(), 0, packet.getLength());

if(!previousRxString.equals(rxString)){
setRecievedSting(rxString);
mDeviceRepository.getNewReceivedMessage(rxString);

}
previousRxString = rxString;

+ 8
- 1
app/src/main/java/com/example/greenwatch/repositories/DeviceRepository.java View File

@@ -1,6 +1,8 @@
package com.example.greenwatch.repositories;


import android.os.Looper;

import androidx.lifecycle.MutableLiveData;

import com.example.greenwatch.models.Device;
@@ -273,7 +275,12 @@ public class DeviceRepository {

private void setMutableLiveDataDeviceList() {
List<Device> list = new ArrayList<>(connectedDevicesList.values());
deviceList.setValue(list);
if (Looper.myLooper() == Looper.getMainLooper()){
deviceList.setValue(list);
}
else {
deviceList.postValue(list);
}
}

private void setMutableLiveDataAlarmHistoryList() {

Loading…
Cancel
Save