Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.
Is there a way to send 5 volts to a certain bit in the LPT port without changing the state of the other bits?
I'm using Visual Basic
1 Antwort
- steve.c_50Lv 6vor 1 JahrzehntBeste Antwort
Just read the present port value and OR in the bit you want to set.
For example we want to set bit 2, and bits 0 & 1 are set:
A=port value ' bit 0 and 1 are set.
B=A OR 4 ' we add in 4 to set bit 2
port value=b ' b=7, bits 0,1,2 are set
To reset bits without affecting others, it's basically the same thing with an AND mask.