Hi
3 questions
How can I make flowcode output a 1 on port B only when the push to make key is released? I have tried with component macro "readstate" and component macro "waituntilhigh" but no luck.
Can you help me with secret doorbel1 topic please (I know it is a silly question but I cant get it going)
Why can't I post questions on flowcode 4? I have acquired flowcode 4 and registered it
Thanks
Gerhard
push to make
- Steve
- Matrix Staff
- Posts: 3431
- Joined: Tue Jan 03, 2006 3:59 pm
- Has thanked: 114 times
- Been thanked: 422 times
Re: push to make
1) Assuming your switch is connected to pin A0, you would create a flowchart similar to this:
3) You will need to contact us directly with your forum username and your Flowcode V4 activation name and code. We will then add you to the list of users who can post on the V4 forum.
Code: Select all
Loop while 1 (i.e. forever)
Input A0 -> MyVariable
Decision: If MyVariable
Output PortB = 0
Else
Output PortB = 1
End if
End Loop