X-Git-Url: https://git.llucax.com/z.facultad/66.09/etherled.git/blobdiff_plain/e773ed11aa9589385dc3d1bd31155570cc83d7d8..5b3a8f73a2eccd20452b8e2d628df024b925b44e:/cliente/cetherled.py diff --git a/cliente/cetherled.py b/cliente/cetherled.py index 58d9aab..c242769 100755 --- a/cliente/cetherled.py +++ b/cliente/cetherled.py @@ -64,7 +64,11 @@ class MainWindow(SimpleGladeApp): self.device.matrix = self.leds2matrix() def on_btn_recibir_clicked(self, widget, *args): - self.device.matrix = self.leds2matrix() + matrix = self.device.matrix + for row in xrange(16): + for col in xrange(16): + self.tabla[row,col].prendido = matrix[row,col] + etherled.protocol._print_matrix(matrix) def on_main_window_delete_event(self, widget, event, *args): self.quit() @@ -77,13 +81,6 @@ class MainWindow(SimpleGladeApp): etherled.protocol._print_matrix(matrix) return matrix - def matrix2leds(self, matrix): - for row in xrange(16): - for col in xrange(16): - self.tabla[row,col].prendido = matrix[row,col] - etherled.protocol._print_matrix(matrix) - return matrix - def main(): gtk.threads_init() main_window = MainWindow()