Skip to main content

Questions tagged [ethernet-shield]

The ethernet shield connects to an Arduino board using long wire-wrap headers which extend through the shield. This keeps the pin layout intact and allows another shield to be stacked on top. The latest revision of the shield adds a micro-SD card slot, which can be used to store files for serving over the network.

Filter by
Sorted by
Tagged with
1 vote
0 answers
90 views

I am making a simulator box that pretends to be an industrial pump. We make equipment that interfaces with the pump and don't always have a pump available to test the connection. I used and arduino ...
vini_i's user avatar
  • 157
0 votes
1 answer
75 views

I have a SAMD51P20 based Arduino PLC with WIZnet W5500 based Ethernet shield. I'm using these libraries: #include <Ethernet.h> #include <MQTT.h> #include <ArduinoModbus.h> MQTT and ...
Paul Jurczak's user avatar
-1 votes
1 answer
113 views

I want to communicate with my Arduino over a long distance so I decided to use an Ethernet cable between my computer and Arduino. Searching up a few tutorials I've found them all mentioning IP ...
iceninja21's user avatar
0 votes
1 answer
68 views

Working on an IoT project. Environment: Adafruit Feather M4 Express Adafruit MusicMaker FeatherWing (amplified, this is a VS1053 at heart) Silicognition PoE FeatherWing (electrically compatible with ...
David Patterson's user avatar
3 votes
1 answer
1k views

How can I connect and send data between two Arduinos using ENC28J60 ethernet adapters on both of them? Is there any guide or example code for me to take a look from or any library I can use to achieve ...
rohithrathod banoth's user avatar
1 vote
1 answer
370 views

I've mounted an Ethernet Shield on top of an Arduino UNO. The Arduino is connected via usb to my pc and to the network via ethernet through a switch. I'm running a simplified verison of the WebServer ...
Hexash's user avatar
  • 11
-1 votes
1 answer
329 views

i've just got the EthernetShield and watched a tutorial on how to host a html page with it but i can't find my html page on the SD card. #include<SPI.h> #include<Ethernet.h> #include<SD....
antisocialkid's user avatar
0 votes
1 answer
510 views

Since my last post, I've been trying to do some extra things with my Stranger Things Wall Project. I connected a LCD Screen (16x2) that will take any text being processed to the wall and show what is ...
Feeds's user avatar
  • 163
0 votes
1 answer
127 views

I am building an underwater robot, which can move up/down and forward/reverse, controlled by a Joystick. The situation is like this : A USB joystick is connected to a PC, the PC is connected to an ...
Steve Hansleman's user avatar
0 votes
0 answers
139 views

void switch_led() { bool SwitchReading = digitalRead(SWITCH); if (SwitchReading == HIGH) { Serial.println("Now pressed...."); state = state + 1; if (state % 2 != 0) { digitalWrite(LED, ...
avie's user avatar
  • 1
0 votes
0 answers
260 views

I am trying to post a tweet using thingspeak but it is not getting posted. Am I missing something in my POST request or something wrong in my code? #include <SPI.h> #include <Ethernet.h> ...
Zaffresky's user avatar
  • 183
0 votes
1 answer
353 views

Im working on a sketch that needs to display some internal variable values and analogue reads in a simple webpage. The only catch is that it needs to be as reliable as possible. Im getting some odd ...
BruceJohnJennerLawso's user avatar
0 votes
1 answer
297 views

I am trying to make a connection with the EthernetClient, but it always fails with code 0. I decided to write a small code just to test if the client ever becomes ready, and as I suspected it does not....
Lucas Noetzold's user avatar
3 votes
0 answers
636 views

I am using the excellent UIPEthernet library to get an Arduino Nano to drive an ENC28J60 Ethernet Shield for a UDP-based application. But I think the poor library has to do a lot of work to make up ...
SusanW's user avatar
  • 172
1 vote
0 answers
308 views

I have the following code; #include <Ethernet.h> #include <SPI.h> #include <LiquidCrystal.h> LiquidCrystal lcd(31, 30, 29, 28, 27, 26, 25, 24, 23, 22); byte mac[] = { 0xDE, 0xAD, ...
BelGaraath's user avatar
1 vote
0 answers
4k views

I'm trying to send arduino data to my online web server using a Arduino Uno and a Ethernet shield. I used POST method for sending data and tried sending data to my sever (add.php) using a online POST ...
Chathuranga Lakmal's user avatar
1 vote
2 answers
2k views

My Arduino Nano can't get a reply from my new ENC28J60 Ethernet Shield - I can't get any library examples to work. Using the UIPEthernet lib, and running the EchoServer example with logging turned up, ...
SusanW's user avatar
  • 172
1 vote
1 answer
408 views

Setup: Arduino Mega 2560 w/ Wiznet W5500 Ethernet Sheild Using TP-Link TL-MR6400 LTE router to connect to internet over cellular connection in Uganda. Using an HTTP Post with the following, client....
jmb2341's user avatar
  • 168
1 vote
2 answers
1k views

Looking at this shield here: https://store.arduino.cc/arduino-ethernet-shield-2 It states that "Connection speed: 10/100Mb". However from looking at various forums it appears that no one can get much ...
paulm's user avatar
  • 113
0 votes
0 answers
772 views

I am using arduino mega and this ethernet shield. Everyting is okey and connection is good. however, the device does not connect to the internet again after a power cut. if I press the reset manually ...
mehmet's user avatar
  • 297
1 vote
0 answers
331 views

I have connected the Arduino Nano with the Arduino Nano ENC28J60, and then I connect the Ethernet cable with the laptop and also the Arduino nano with my laptop to load the code and it works just fine....
ATHEOD09's user avatar
0 votes
1 answer
123 views

If I was to use the Arduino A000024, would I be able to add a POE MODULE to the board to get a Ethernet board with POE to run my arduino project?
Michael H.'s user avatar
0 votes
1 answer
208 views

I have a Nano+ENC28J60 and I'm using Pushingbox which I have setup to write data to a GoogleDrive spreadsheet which works perfectly at home. However when I take it to my workplace it no longer works. ...
user1778467's user avatar
-1 votes
1 answer
474 views

Want to create a weather station with only GY-BME280-3.3 chip and w5100 Ethernet shield mounted over Arduino mega 2560 r3 but I have no previous experience with Arduino. And The Arduino will be hooked ...
Pavel Sayekat's user avatar
1 vote
2 answers
4k views

I need some help to connect my arduino uno R3 and ethernet shield. I don't have a mac address with my shield so I'm using this one: byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; The Ethernet ...
Supreme's user avatar
  • 73