Click here to Skip to main content
15,891,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to use the Netduino as a webserver,
Is it possible that the Netduino communicates with the Arduino Due to control an LED onboard the Due? And how can I communicate with the Due?

I want a secure webserver without anybody accessing the webserver, what steps can I do to make my webserver secure?
Posted
Updated 12-Nov-13 6:32am
v2

1 solution

> Netduino communicates with the Arduino Due

Two solutions:

1. Communicate through host PC ... Netduino <-> Ethernet <-> Host PC <-> Arduino Due.

2. Direct serial ... Netduino <-> three wires (RxD, TxD, Gnd) <-> Arduino Due. Connect RxD on Netduino to TxD of Due; connect Txd of Netduino to Rxd of Due. Gnd to Gnd.

For #2, both devices should be connected to the same power source to avoid ground loop.

For security, you will need to explain why types of access you want to allow or disallow. Also, the web server looks to support only basic authentication which may not be enough for you.

http://embeddedwebserver.codeplex.com/[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900