here is the sample prog that works in adhoc mode.
#include <WiServer.h>
#include <string.h>
#define WIRELESS_MODE_INFRA 1
#define WIRELESS_MODE_ADHOC 2
// Methods ------------------------------------------------------------------
unsigned char local_ip = {192,168,43,9}; // IP address of WiShield
unsigned char gateway_ip = {192,168,43,1}; // router or gateway IP address
unsigned char subnet_mask = {255,255,255,0}; // subnet mask for the local network
const prog_char ssid PROGMEM = {“jonh WIFI”}; // max 32 bytes
int ON, OFF;
unsigned char security_type = 0; // 0 - open; 1 - WEP; 2 - WPA; 3 - WPA2
// WPA/WPA2 passphrase
const prog_char security_passphrase PROGMEM = {“12345678”}; // max 64 characters
// WEP 128-bit keys
// sample HEX keys
prog_uchar wep_keys PROGMEM = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, // Key 0
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // Key 1
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // Key 2
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 // Key 3
};
// setup the wireless mode
// infrastructure - connect to AP
// adhoc - connect to another WiFi device
unsigned char wireless_mode = WIRELESS_MODE_ADHOC;
unsigned char ssid_len;
unsigned char security_passphrase_len;
//----------------------------------------------------------------------------
void setup() {
// Initialize WiServer and have it use the sendPage function to serve pages
Serial.begin(115200);
WiServer.init(sendPage);
}
boolean sendPage(char* URL) {
WiServer.print(“HOME APPLIANCES CONTROL”);
return true;
}
void loop(){
WiServer.server_task();
}
my wishield doesnt turns ON when i change code to infra mode as below.
Where i am wrong please help. Or please help me in connecting this program to Ethernet shiled and router.