You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For no apparent reason digital lines behave different from analog lines. For example I propose instead:
do_line.go_high(t)
becomes:
do_line.constant(t, 1) or
do_line.constant(t, True)
this allows uniform syntax across analog and digital lines, and makes programming do lines with variables more natural. Realistically the go_high/low methods would remain, but be depreciated.
The text was updated successfully, but these errors were encountered:
Original report (archived issue) by Ian B. Spielman (Bitbucket: Ian Spielman, GitHub: ispielma).
For no apparent reason digital lines behave different from analog lines. For example I propose instead:
do_line.go_high(t)
becomes:
do_line.constant(t, 1) or
do_line.constant(t, True)
this allows uniform syntax across analog and digital lines, and makes programming do lines with variables more natural. Realistically the go_high/low methods would remain, but be depreciated.
The text was updated successfully, but these errors were encountered: