Need some help with grove system - relay, buzzer etc

Grove-Relay: The red led will be lighted when it is used.

[code]void setup()
{
pinMode(6, OUTPUT);
}

void loop()
{

digitalWrite(6, HIGH);
delay(1000);
digitalWrite(6, LOW);
delay(6000);

}[/code]

Grove-Buzzer:

[code]void setup()
{
pinMode(9, OUTPUT);
}

void loop()
{

digitalWrite(9, HIGH);
delay(1000);
digitalWrite(9, LOW);
delay(6000);

}[/code]

if your board is the version of 1.1 , you need modify something.

please open your libraries:

libraries–>Ethernet–>utility–>w5100.h

[code]
#ifndef W5100_H_INCLUDED
#define W5100_H_INCLUDED

#include <avr/pgmspace.h>
#include <SPI.h>

//#define W5200 //please add "//"before this code.

#ifdef W5200
#define MAX_SOCK_NUM 8
#else
#define MAX_SOCK_NUM 4
#endif

…[/code]

Attention:You need plug your Ethernet into netduino directly , because our base shield has no ISP port, but your Ethernet should plug into the port of netduino.

And you use tem or pro temp and humidty separately? Not combine them to ethernet together?
I thought it is used simply separately,isn’t it?

If you use Relay ,buzzer,or tem with ethernet together,could you show your code to us?