Skip to content

Latest commit

 

History

11 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Temperature Control System Between Two Offices Using Cisco Packet Tracer

Before Using Please Refer To LICENSE


Use the original Cisco Packet Tracer Program From Cisco

You can find a go-through video step-by-step on my youtube channel in here


Programe Screenshot

Screenshot


The used python script

Inside MCU | main.py

from gpio import *
from time import *

def inputHandler():
	#Convert the range  
    value = (((analogRead(A0) - 0 ) * (100 - -100)) / (1023 - 0)) +  -100
    customWrite(0,value)
    
#setup the callback event to handle the value at A0 slot
def main():
    add_event_detect(A0, inputHandler)

    while True:
        delay(1)

if __name__ == "__main__":
    main()
  

About

Temperature Control System Between Two Offices Using Cisco Packet Tracer | IoT

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors