I am able to connect the YJ via FTDI Basic USB Breakout board to my MAC and can run sketches such as the "BLINK" and see them work, but as far as getting the Webserver sketch as described in http://asynclabs.com/wiki/index.php?title=AsyncLabsWiki, no luck! I have tried with several WIFI Routers (the latest two are a DLINK DIR-655 and Linksys WRT310N which are listed on the list as "working"). The Webserver sketch was modified as follows:
// Wireless configuration parameters ----------------------------------------
unsigned char local_ip[] = {192,168,0,190}; // IP address of WiShield
unsigned char gateway_ip[] = {192,168,0,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 = {"dlink"}; // max 32 bytes
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
The MAC reports the dlink as follows:
IPv4 Address: 192.168.0.198
Subnet Mask: 255.255.255.0
Router: 192.168.0.1
The DLINK is configured with no encryption
Wireless Radio :Enabled
802.11 Mode : Mixed 802.11n, 802.11g and 802.11b
Channel Width :20MHz
Channel :3
WISH : Active
Wi-Fi Protected Setup :Enabled/Not Configured
SSID List
Network Name Guest MAC Address Security Mode
(SSID)
dlink No 00:22:b0:c7:d7:c1 Disabled
LAN COMPUTERS
IP Address Name (if any) MAC
192.168.0.198 AAA-MacBook 00:1e:52:74:10:e8
192.168.0.199 AAA-MacBook 00:1b:63:af:83:c6
Any ides?
-AAA-
