austinbv/dino

Ethernet Shield support

Closed this issue · 2 comments

Hi,

I have arduino since few days. I written program using dino which measure humidity of soil.

My goal is to send output data using wifi or ethernet and display it on web page.

So I bought Ethernet shield for Arduino. But don`t know how to program it.

I would like to contribute to your project but for now I dont know how to start :)

Any colleagues clues? :)

👍 for previous work

@regedarek

Take a look at my pull request for adding a Telnet interface:
#20

You'll need to take a similar approach, creating a TxRx class that handles the low level communication with the Arduino over whatever channel you chose, and then abstracting it so that the Board class can make use of it. Look at the existing TxRx class and my TxRx::Telnet class for an idea of what methods your new TxRx::Ethernet class would need to implement.

I'd definitely have use for a TxRx for the Ethernet shield, but I haven't actually used the Ethernet shield before. I bought one, but haven't had time to play around with it yet. Will look into it when I get some time and help if I can.

Working on this in #22.