Questions tagged [ethernet]

Ethernet can be used for cabled communication between an Arduino and a computer, server, or website. For question concerning the Arduino Ethernet board, use the tag "arduino-ethernet" instead.

Ethernet can be used for communication between an Arduino and a computer. It is defined as a system for connecting a number of computer systems to form a local area network, with protocols to control the passing of information and to avoid simultaneous transmission by two or more systems

There is also an Arduino Ethernet board, for which you should use the tag .

Additionally, there is an Arduino Ethernet Shield. Use this tag for the shield.

https://arduino.cc/en/Main/ArduinoEthernetShield

313 questions
49
votes
11 answers

Is an Arduino capable of running 24/7?

I'm making a simple Arduino web server and I want to keep it turned on all the time. So it must endure to stay working continuously. I'm using an Arduino Uno with a Ethernet Shield. It's powered with a simple outlet power supply 5V @ 1A. My…
Butzke
  • 802
  • 1
  • 7
  • 21
36
votes
6 answers

How to get HTTPS on Arduino?

Put plainly: is there a way to get an HTTPS connection on the Arduino? I have been looking in to it, and I have found it is impossible with the standard library and the Ethernet shield, but is there a custom library that can do it? What about a…
TheDoctor
  • 3,509
  • 1
  • 22
  • 39
13
votes
1 answer

Internet connectivity for the Arduino Due using AtmelStudio?

What hardware and software solutions work and what are the tradeoffs for connecting an Arduino Due to the internet? I gather the ethernet hardware is much cheaper than WiFi hardware (€29 versus €69). In either case (wired or wireless), what…
Bob Stein
  • 303
  • 3
  • 9
12
votes
2 answers

Arduino Uno R2 and Ethernet Shield R3 compatibility

I bought an Ethernet Shield R3 for my Arduino Uno R2, but since R3 has extra pins it does not fit. Can I use the shield? Should I cut off the extra pins. What do I need to do to make it work?
tstew
  • 729
  • 1
  • 6
  • 26
10
votes
4 answers

How to interconnect multiple Arduinos with a Rpi to control home-lights/switches

While planning the lightning infrastructure (wall-switches and lights) of my new home (it's still under-construction) I choosed to go through the "automated route" way and due to my background (I'm an "old" system/network administrator with…
Damiano Verzulli
  • 454
  • 6
  • 18
7
votes
3 answers

Multiple SPI device

I want to connect Ethernet board (W5100 HR911105A) to Arduino Leonardo with SPI and I also want to connect SD reader. When I test these boards separately everything working. But when I connect them on the same board the program fails at…
eszik.k
  • 121
  • 5
6
votes
2 answers

Webserver on Arduino

How can I run a webserver in a Arduino Uno? I want to use my Arduino to monitor things in my home such as temperature. I want to be able to access this data through the internet.
tstew
  • 729
  • 1
  • 6
  • 26
6
votes
2 answers

Is the arduino hackable when using communication shields?

Let's say I have an arduino Uno connected to a W5100 ethernet shield. The arduino communicates with the ethernet shield using the tx0 and rx0 pins. When I upload a new script to the arduino using USB, it uses the same tx0 and rx0. So that made me…
Orry
  • 163
  • 4
5
votes
0 answers

Modbus TCP/IP using Arduino uno and ENC28J60 module

I have this project where I need a modbus tcp server that will host a series of sensor data for other modbus client devices to read. I use this Library by Andresoarmento This is the code i am using from the library example: #include…
Deadpool
  • 51
  • 2
5
votes
2 answers

What's the difference between different Ethernet Shields?

I am working on a project with Arduino and I need an Ethernet shield. but after searching in some electronics shops I found there isn't only one but a lot. I don't know which one is better and what are the differences. Arduino Ethernet with PoE…
Omar Otmane
  • 51
  • 1
  • 3
5
votes
1 answer

Uno with LCD acting strangely - power issue?

I've got a Uno (Elegoo UNO R3) running with - Ethernet shield (Kuman K15), - 4 relay board (Elegoo 4 Channel DC 5V Relay Module with Optocoupler ) - Matrix Orbital 2041 LCD connected via I2C (11mA typical, 90mA with backlight) - A series of buttons…
kolcun
  • 51
  • 1
5
votes
3 answers

WizNet W5100 not connecting to modern switches and routers

I have an Arduino data collector with a W5100 module (see bottom of picture). Simple fixed IP connection: byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; byte ip[] = { 192, 168, 1, 242 }; Ethernet.begin(mac,ip); This works with my old…
Arthur
  • 153
  • 1
  • 4
5
votes
1 answer

Disconnect Ethernet Shield

I'm trying to use the Ethernet Shield and the EasyVR (voice recognition) together. The Ethernet shield uses the same pins that the EasyVR, but the easyVR works fine if I don't call Ethernet.begin(). Is there a way to disconnect the ethernet shield…
5
votes
1 answer

How to disable Arduino Yun to work as Access Point and set it to work as needed?

I am using Arduino Yun and I would like to disable it to work as Access Point. That is, I don't want that it is displayed in the list of available networks. Then I would like to set and use it (separately) in the following scenarios: a) Arduino Yun…
user502052
  • 439
  • 1
  • 4
  • 7
4
votes
5 answers

MQTT client on Arduino + SIM900

I have used the pubsubclient library for Arduino for communicating with an MQTT broker in the past, however the library works only with Ethernet connecction. I need to use GSM in my application and am using the SIM900 at the moment. However, I…
user3647150
  • 141
  • 1
  • 1
  • 2
1
2 3
20 21