Has anyone got this working with a maple? I’m not having any luck.
Power: Supplying 3.3v regulated supply (VDD In, VDD Batt) and 3.3V RIN to ground (as per the documentation).
RX to TX, TX to RX (I should be doing this right?)
Simple serial setup and print(‘$$$’) but no response. Tried jumping on GPIO 9 for a adhoc network however I don’t know the mac address. Can somebody see something wrong?
#define wiflyAdhoc 18
#define wiflyPower 17
#define wiflyPowerb 16
void setup()
{
pinMode(BOARD_LED_PIN, OUTPUT);
digitalWrite(wiflyAdhoc, HIGH);
digitalWrite(wiflyPower, HIGH);
digitalWrite(wiflyPowerb, HIGH);
Serial2.begin(9600);
delay(1000);
Serial2.print("$$");
}
void loop()
{
Serial2.print("$$");
if (Serial2.available() )
{
int xx = Serial2.read();
toggleLED();
delay(1000);
}
delay(100);
}