// DE CODE VOOR DE ZENDER #include const int RF_TX_PIN = 2; // Grove poort D2 void setup() { vw_set_tx_pin(RF_TX_PIN); // Stel zend-pin in vw_setup(500); // Snelheid in bits per seconde } void loop() { const char *msg = "hello"; vw_send((uint8_t *)msg, strlen(msg)); // Verstuur bericht vw_wait_tx(); // Wacht tot verzenden klaar is delay(5000); }