Help converting short Python prog.

new topic     » topic index » view thread      » older message » newer message

This does what I need. Can someone convert this into Euphoria 4.1?

############## 
## Script listens to serial port and writes contents into a file 
############## 
## requires pySerial to be installed  
import serial 
 
serial_port = '/dev/ttyUSB0'; 
baud_rate = 115200; #In arduino, Serial.begin(baud_rate) 
write_to_file_path = "output.txt"; 
 
output_file = open(write_to_file_path, "w+"); 
ser = serial.Serial(serial_port, baud_rate) 
while True: 
    line = ser.readline(); 
    line = line.decode("utf-8") #ser.readline returns a binary, convert to string 
    print(line); 
    output_file.write(line); 
new topic     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu