Hi everyone, for some reason the following sketch doesn’t switch the vext control. It always maintains 3.3v…any ideas?
#include “Arduino.h”
#include “LoRaWan_APP.h”
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(Vext,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(Vext,LOW);
Serial.println(“vext ON”);
delay(5000);
digitalWrite(Vext,HIGH);
Serial.println(“vext OFF”);
delay(5000);
}