I have a serial over RF module (3.6-5V operating voltage) that can be set into programming mode by pulling low one of the input pins.
This is the description from the datasheet for PIN 5:
PIN 5: Pull up to high or NC for normal operation mode. Pull low to enter AT Command mode.
I am pretty sure that i just need to connect PIN 5 to ground with a 1K pull down resistor, right?
But could i achieve the same by connecting it to an Arduino i/o pin and doing this:
pinMode(pin, OUTPUT);
digitalWrite(pin, LOW);