]> git.llucax.com Git - z.facultad/66.09/etherled.git/blobdiff - cliente/cetherled.py
Convierto todo a UTF-8.
[z.facultad/66.09/etherled.git] / cliente / cetherled.py
index 58d9aabf4e68fe7a05463c0f28bc080da4caf76c..7f41608be89815df2a4adf985bb61bb57be3dd2f 100755 (executable)
@@ -1,5 +1,4 @@
 #!/usr/bin/env python
-# -*- coding: iso-8859-1 -*-
 # vim: set expandtab tabstop=4 shiftwidth=4 :
 #----------------------------------------------------------------------------
 #                               Etherled
@@ -64,7 +63,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 +80,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()