LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

School Assignment Help(washing Machine)

Hi this is my first post here and I need some urgent help, my school assignment is to develop a washing machine controller system. There is two modules required a client(controller system) and a server side(washing machine). My plan is to use the controller system to start the washing process and I have connected both with TCP and it works fine. The problem is that after selecting wash mode and water level in the client side the server side water tank and thermometer won't change in value even though I have programmed it to. I am quite desperate as I have run out of ideas on what could cause the issue. Can anyone help me with the issue? I have attached my vi files below.

Download All
0 Kudos
Message 1 of 2
(142 Views)

Each program should have just one toplevel loop and a simple state machine architecture, not pyramids of loop inside loops inside loops.

 

You don't need any local variables. Connect to the termials and use shift registers to maintain values across iterations.

 

Never place an event structure on the toplevel diagram, because it can only fire once. For example if the user would press login again, the code will lock up forever. Also, a timeout event without the timeout wired has no function. It will never execute.

0 Kudos
Message 2 of 2
(107 Views)