CC3000 - missing ip-address in Server-mode

Post here about your Arduino projects, get help - for Adafruit customers!

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
roboscare
 
Posts: 17
Joined: Wed Jun 25, 2014 2:04 pm

CC3000 - missing ip-address in Server-mode

Post by roboscare »

Hi,
I'm just trying CC3000 Breakout with Arduino Uno. There is a test program from Adafruit called 'EchoServer'.
In the code I find no ip-address, so that I don't know how to access this server by an external browser.
In my router I reserved the address 192.168.1.120, port 80. But how can I join this address with the CC3000-module in my network?

Can anyone give me a hint?

Thanks in advance
roboscare

User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: CC3000 - missing ip-address in Server-mode

Post by adafruit_support_rick »

EchoServer will print out the address it gets from DHCP.
You connect via TCP to port 7, not port 80. EchoServer is not an HTTP server.
The simplest thing to do is to use telnet to connect:
telnet xxx.xxx.xxx.xxx:7
where xxx.xxx.xxx.xxx is the address assigned to the CC3000, as displayed in serial monitor

roboscare
 
Posts: 17
Joined: Wed Jun 25, 2014 2:04 pm

Re: CC3000 - missing ip-address in Server-mode

Post by roboscare »

Thanks a lot, adafruit_support_rick,
so I am learning on and on. Till now I only knew http, ftp and mail-servers.
I'll soon try it.
roboscare

Locked
Please be positive and constructive with your questions and comments.

Return to “Arduino”