changed out the password and ip address to the coffee machine

This commit is contained in:
Nick Moy 2019-10-14 13:41:19 -04:00
parent c2efa20af7
commit 3cb0b75228

View File

@ -10,8 +10,8 @@ output = subprocess.check_output('who')
if 'my_username' not in output:
sys.exit()
coffee_machine_ip = '10.10.42.42'
password = '1234'
coffee_machine_ip = 'REPLACE THIS WITH YOUR IP ADDRESS'
password = 'REPLACE THIS WITH YOUR PASSWORD'
password_prompt = 'Password: '
con = telnetlib.Telnet(coffee_machine_ip)