Code for virtual wire transceiver

Hi all, I have some problems with my code using Seeduino and teensy board my aim is to run a telementary measurement, reading temperature and humidity using a DHT11 sensor and also light level through an LDR and note the time the measurement is been done . This message is to be transmitted through a 433 MHz RF transceiver radio pair. The data is to be displayed in 3 format s GUINO, CSV and html. The received code is to be in this format "SysID(4 bits) NodeID(4 bits) Sensor1(8 bits) Sensor2(8 bits) Sensor3 (8 bits) and time(8bit)"

can any help please

I have some problems with my code. . . which you'll have to imagine,because I haven't posted it.

If the 433MHz transmitter library is like the other libraries I've used, you can set up a structure ("struct") that mimics whatever data format you're trying to send. Use the same structure on the receiving and transmitting Arduino, and the data could be sent as one atomic unit.