mirror of
				https://github.com/onyx-and-iris/vban-cmd-python.git
				synced 2025-10-31 05:31:45 +00:00 
			
		
		
		
	Update vbancmd.py
return only values relevant for a kind
This commit is contained in:
		
							parent
							
								
									0806937fbd
								
							
						
					
					
						commit
						df8688aaee
					
				| @ -267,13 +267,19 @@ class VbanCmd(abc.ABC): | |||||||
| 
 | 
 | ||||||
|     @property |     @property | ||||||
|     def strip_levels(self): |     def strip_levels(self): | ||||||
|         """Returns the full level array for strips, PREFADER mode, before math conversion""" |         """Returns the full strip level array for a kind, PREFADER mode, before math conversion""" | ||||||
|         return self.public_packet.inputlevels |         return tuple( | ||||||
|  |             list(filter(lambda x: x != ((1 << 16) - 1), self.public_packet.inputlevels)) | ||||||
|  |         ) | ||||||
| 
 | 
 | ||||||
|     @property |     @property | ||||||
|     def bus_levels(self): |     def bus_levels(self): | ||||||
|         """Returns the full level array for buses, before math conversion""" |         """Returns the full bus level array for a kind, before math conversion""" | ||||||
|         return self.public_packet.outputlevels |         return tuple( | ||||||
|  |             list( | ||||||
|  |                 filter(lambda x: x != ((1 << 16) - 1), self.public_packet.outputlevels) | ||||||
|  |             ) | ||||||
|  |         ) | ||||||
| 
 | 
 | ||||||
|     def logout(self): |     def logout(self): | ||||||
|         """sets thread flag, closes sockets""" |         """sets thread flag, closes sockets""" | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user