LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to make a really basic alleyway for a beginner

Okay one strange thing happend when i pulled the vi back. The paddle y location starts at 0 and needs to be 600. So here is the same vi with that change made.
- A minute saved is a Minute earned!
0 Kudos
Message 21 of 24
(800 Views)

Interesting. Some quick comments:

  1. Can you explain your reasoning going to EXT precision for some of your orange wires??? 😮
  2. Make the stop button latch action and the local variables and value property nodes of it are no longer needed.
  3. Value properties are probably the most inefficient way to share data between loops.
0 Kudos
Message 22 of 24
(778 Views)

No need for orange wires. in fact i went back and used U8 and everything still worked. The c-style programming block gives me orange out and i couldn't figure out how to change it. So that is why they are orange. I put a convert to U8 after it now.

 

 

And yes i removed the property node to the stop button and fixed that part too 🙂 I wrote this back when i first started labview 2 years ago.

- A minute saved is a Minute earned!
0 Kudos
Message 23 of 24
(687 Views)

You need to declare your variable in the formula node.  If you have a line int32 degree; at the top, you get an I32 for the degree variable.  If you have uint32 degree;  you get a U32.  Both of which are blue integer type wires.

0 Kudos
Message 24 of 24
(680 Views)