Skip to main content

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.

Filter by
Sorted by
Tagged with
0 votes
1 answer
80 views

If I telnet to an Ethernet capable Arduino (e.g. shield, Leonardo, Leonardo Eth) with something like telnet [ip] [port] and then do nothing, the connection hangs. Seemingly for ever, or at least ...
Paul Uszak's user avatar
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
0 answers
136 views

I'm using Ethernet module ENC28J60 with ESP32 on Arduino IDE. I could establish a secure connection using WifiClientSecure.h here code #include <Arduino.h> #include <WiFi.h> #include <...
Just doin Gods work's user avatar
1 vote
0 answers
463 views

I'm having issues connecting to my arduino mega via ethernet. Its a very basic start to the code just to get the network side up and running, them im going to add in what I actually want it to do. For ...
Isaac M's user avatar
  • 11
2 votes
0 answers
330 views

I wish to create a rudimentary ethernet in/out - switch/hub where I can (sort of) daisy chain my boards. (I don't wish to use a ethernet switch/router/hub) One port would be acting as server The ...
Ohbhatt's user avatar
  • 176
2 votes
0 answers
78 views

I've been playing around with several Arduino ethernet modules based on the ENC28J60 and the W5500 chipset. All modules are advertised as 10/100M, but in reality only work when the port of a switch is ...
Joe's user avatar
  • 129
-1 votes
1 answer
339 views

I have an application on a PC that sends 10 UDP packets to an Arduino Portenta board. When sending packets with no delay, half of them are lost. Wireshark shows the packets are correctly sent by the ...
Simon's user avatar
  • 99
1 vote
1 answer
1k views

I was trying to learn how to use UDP protocol to use in my automation project to send commands to an Arduino Due on ethernet with an ENC28J60 breakout board which I have connected to the Due from SPI ...
Jupiterian's user avatar
0 votes
1 answer
213 views

I am using Controllino Maxi. It has an Arduino Uno inside it. I am trying to control the PWM pin D0 and digital pin R0 via python code. Below is the code I have upload on arduino: Arduino Code: #...
S Andrew's user avatar
  • 183
2 votes
0 answers
3k views

Does anyone know if the following is possible? Any advice would be much appreciated. I am programming an Ethernet connected Arduino to be a webserver. What would be ideal is a small portable "...
MrExplore's user avatar
1 vote
0 answers
132 views

Hello i have a custom board of the RP2040 and would like to use the ethernet library. But the ethernet example webClient uses the default SPI pins of whatever board it is being used, but what if im ...
DrakeJest's user avatar
  • 229
2 votes
0 answers
234 views

Scenario I'm writing a code for Nucleo-144 F429ZI. It receives UDP packets (actually OSC bundles) and send back an answer when the command is completed. Issues It work fine most of the time. But there ...
Mark's user avatar
  • 393
1 vote
1 answer
576 views

I'm trying to make a simple GET request to a server (which has a static IP but does not have a name). I'm using EtherCard library and a cheap ENC28J60 Ethernet Module. The basic configurations are OK (...
user2959923's user avatar
2 votes
0 answers
226 views

I am attempting to write a file found on an SD card to a connected Ethernet client. The file opens fine, and we have no problems writing to the client. For testing purposes I also write the lines read ...
JackOfAllTrades99'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
2 answers
3k views

I would like to begin to understand ethernet handshakes by integrating an Ethernet over USB protocol within an arduino mega or nano. Is there something about the ethernet protocol that requires more ...
steve antwan's user avatar
1 vote
0 answers
67 views

So basically I'm working on a project that uses an Atmega328 like on the Arduino Uno. I need to receive both DMX (with max485) and E131 (Not both at the same time, I'll decide which with a boolean in ...
Randomaker's user avatar
2 votes
0 answers
601 views

Using a socket server on a Teensy 4.1, I am sending and receiving data in a loop from a Windows socket client (WinForms C#.NET). I am sending or receiving 530 bytes of data. In each direction, it ...
Joe's user avatar
  • 61
5 votes
0 answers
2k views

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 ...
Deadpool's user avatar
1 vote
0 answers
111 views

I have an Arduino sketch that serves an HTML web page using the standard Ethernet library (https://github.com/arduino-libraries/Ethernet) and the Ethernet Web Server library (https://github.com/khoih-...
prenone's user avatar
  • 111
0 votes
1 answer
2k views

I want to connect a W5500 ethernet Module and an SD card module to arduino Uno using SPI (with different CS pins of course). When connected separately they work fine but when connected in the same ...
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
2k views

i am trying to parse a page from the route by using Arduino + Ethernet shield. before Arduino testing. I tested my code via python as it shows below. from this code i can get the data as i wish where ...
LinkCoder's user avatar
  • 103
0 votes
2 answers
3k views

I'm using an arduino UNO with ethernet shield. When following a few guides online for a school project I came across this issue. First code sample: #include <SPI.h> #include <...
Simon V.'s user avatar
0 votes
1 answer
302 views

I'm using a Nucleo F429ZI board and I wrote a sketch that enables a simple web-server: #include <LwIP.h> #include <STM32Ethernet.h> const int WEB_PORT = 80; EthernetServer server(...
Mark's user avatar
  • 393

1
2 3 4 5
7