Merge pull request #8 from drudgebg/main
Create td.py
This commit was merged in pull request #8.
	This commit is contained in:
		
							
								
								
									
										10
									
								
								pyhon/appliances/td.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								pyhon/appliances/td.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
class Appliance:
 | 
			
		||||
    def __init__(self, data):
 | 
			
		||||
        self._data = data
 | 
			
		||||
 | 
			
		||||
    def get(self):
 | 
			
		||||
        if self._data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
 | 
			
		||||
            self._data["attributes"]["parameters"]["machMode"] = "0"
 | 
			
		||||
        self._data["active"] = bool(self._data.get("activity"))
 | 
			
		||||
        self._data["pause"] = self._data["attributes"]["parameters"]["machMode"] == "3"
 | 
			
		||||
        return self._data
 | 
			
		||||
		Reference in New Issue
	
	Block a user