ads1115 only
Fork of mbed by
Diff: DigitalInOut.h
- Revision:
- 81:7d30d6019079
- Parent:
- 65:5798e58a58b1
- Child:
- 85:024bf7f99721
--- a/DigitalInOut.h Fri Feb 21 12:21:39 2014 +0000 +++ b/DigitalInOut.h Wed Mar 19 18:28:32 2014 +0000 @@ -32,7 +32,18 @@ * @param pin DigitalInOut pin to connect to */ DigitalInOut(PinName pin) { - gpio_init(&gpio, pin, PIN_INPUT); + gpio_init_in(&gpio, pin); + } + + /** Create a DigitalInOut connected to the specified pin + * + * @param pin DigitalInOut pin to connect to + * @param direction the initial direction of the pin + * @param mode the initial mode of the pin + * @param value the initial value of the pin if is an output + */ + DigitalInOut(PinName pin, PinDirection direction, PinMode mode, int value) { + gpio_init_inout(&gpio, pin, direction, mode, value); } /** Set the output, specified as 0 or 1 (int)