File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -222,8 +222,8 @@ def parse_reply(self, data):
222
222
raise NotImplementedError ()
223
223
224
224
def parse (self , received ):
225
- print ("Received: " )
226
- print (received )
225
+ # print("Received: ")
226
+ # print(received)
227
227
n_recv = len (received )
228
228
if n_recv == 0 :
229
229
raise IllegalReplyError ("No reply is found" )
@@ -539,11 +539,11 @@ def set_led(self, rgb):
539
539
540
540
def _emit_command (self , cmd , * data ):
541
541
data = cmd .prepare_data (data )
542
- print ("Prepared:" )
543
- print (data )
542
+ # print("Prepared:")
543
+ # print(data)
544
544
b = cmd .get_bytes (data )
545
- print ("Sending:" )
546
- print (b )
545
+ # print("Sending:")
546
+ # print(b)
547
547
self ._serial .write (b )
548
548
self ._serial .flush ()
549
549
time .sleep (0.05 )
You can’t perform that action at this time.
0 commit comments