Hello everybody,
First of all, brilliant forum! Keep up the good work!!!
I'm currently working on a project that entered the "next phase" which is remote access/monitoring!
This thread wouldn't be written if I "could" use the Ethernet shield but, unfortunately and for now, I have space issue that does not allow me to use another shield.
I have actually a Ethernet cable available but, of course, without the shield, not very useful.
Giving that said, I've turned to the USB port and my question is: is there any way to use the USB with some sort of adapter in order to, over LAN, be able to both monitoring and, perhaps edit, upload/download to the Arduino?
For instance, would a usb-ethernet converter (e.g. print server) do the trick?
is there any way to use the USB with some sort of adapter in order to, over LAN, be able to both monitoring and, perhaps edit, upload/download to the Arduino?
No. The Arduino establishes a serial connection to the PC it is attached to.
That PC could be running server software (Apache, for instance) and could serve up web pages to display data from the server that it gets from the attached Arduino. The server could also send commands to the Arduino.
As for uploading new sketches to the Arduino from a remote computer, that is remotely (no pun intended) possible. There needs to be an app on the PC that knows how to get the code, how to invoke the compiler, linker and uploader, and how to send error messages back to the remote computer. Possible, but not trivial.