A digital input bus, used for reading the state of a collection of pins. More...
#include <BusIn.h>
Public Member Functions | |
BusIn (PinName p0, PinName p1=NC, PinName p2=NC, PinName p3=NC, PinName p4=NC, PinName p5=NC, PinName p6=NC, PinName p7=NC, PinName p8=NC, PinName p9=NC, PinName p10=NC, PinName p11=NC, PinName p12=NC, PinName p13=NC, PinName p14=NC, PinName p15=NC) | |
Create an BusIn, connected to the specified pins. More... | |
BusIn (PinName pins[16]) | |
Create an BusIn, connected to the specified pins. More... | |
int | read () |
Read the value of the input bus. More... | |
void | mode (PinMode pull) |
Set the input pin mode. More... | |
int | mask () |
Binary mask of bus pins connected to actual pins (not NC pins) If bus pin is in NC state make corresponding bit will be cleared (set to 0), else bit will be set to 1. More... | |
operator int () | |
A shorthand for read() More... | |
DigitalIn & | operator[] (int index) |
Access to particular bit in random-iterator fashion. More... | |
A digital input bus, used for reading the state of a collection of pins.
BusIn | ( | PinName | p0, |
PinName | p1 = NC , |
||
PinName | p2 = NC , |
||
PinName | p3 = NC , |
||
PinName | p4 = NC , |
||
PinName | p5 = NC , |
||
PinName | p6 = NC , |
||
PinName | p7 = NC , |
||
PinName | p8 = NC , |
||
PinName | p9 = NC , |
||
PinName | p10 = NC , |
||
PinName | p11 = NC , |
||
PinName | p12 = NC , |
||
PinName | p13 = NC , |
||
PinName | p14 = NC , |
||
PinName | p15 = NC |
||
) |
Create an BusIn, connected to the specified pins.
p0 | DigitalIn pin to connect to bus bit |
p1 | DigitalIn pin to connect to bus bit |
p2 | DigitalIn pin to connect to bus bit |
p3 | DigitalIn pin to connect to bus bit |
p4 | DigitalIn pin to connect to bus bit |
p5 | DigitalIn pin to connect to bus bit |
p6 | DigitalIn pin to connect to bus bit |
p7 | DigitalIn pin to connect to bus bit |
p8 | DigitalIn pin to connect to bus bit |
p9 | DigitalIn pin to connect to bus bit |
p10 | DigitalIn pin to connect to bus bit |
p11 | DigitalIn pin to connect to bus bit |
p12 | DigitalIn pin to connect to bus bit |
p13 | DigitalIn pin to connect to bus bit |
p14 | DigitalIn pin to connect to bus bit |
p15 | DigitalIn pin to connect to bus bit |
BusIn | ( | PinName | pins[16] | ) |
Create an BusIn, connected to the specified pins.
pins | An array of pins to connect to bus bit |
int mask | ( | ) |
void mode | ( | PinMode | pull | ) |
Set the input pin mode.
pull | PullUp, PullDown, PullNone |
operator int | ( | ) |
A shorthand for read()
DigitalIn& operator[] | ( | int | index | ) |
Access to particular bit in random-iterator fashion.
index | Position of bit |
int read | ( | ) |
Read the value of the input bus.