Project

General

Profile

Feature #4574 » stepper.py

Jarobar, 12/13/2021 08:55 PM

 
1
#!/usr/bin/python3
2

    
3
import telnetlib
4

    
5
with telnetlib.Telnet('127.0.0.1', 4444) as tn:
6
	tn.read_until(b">")
7
	for i in range(0, 400):
8
		tn.write(b"step\r")
9
		tn.read_until(b">")
10

    
(35-35/38)
Add picture from clipboard (Maximum size: 48.8 MB)