I want to transfert some measuring values (ex. temperature readings) from one arduino to another using the Wifi connection ESP8266 module.
I was wondering whet should be the best way to do this. Anyone sugestions or an example.
I was thinking of a Telnet connection between the 2 Arduino's and send the variables as text and decode them in the other Arduino to extract the variables again out of the text message. But I think there are some better ways to do this.
I'm not sure if I understand your application entirely, but if what you want to do is wirelessly transmit from an ESP8266 to an arduino, you should look into using NRF24L01 radios. The ESP can't communicate directly with the NRF, so you'll need a radio on each the ESP and the arduino. But this will let you transmit data, and allows your arduino to be internet accessible via the ESP bridge.