Skip to main content

Questions tagged [networking]

For question related to environment with networks.

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
68 views

I have the code below and it doesn't work with my URL. I receive a 715(Handshake Failed) This code below works normally, but with my API it doesn't work. I'm using a A7670SA with Arduino Mega 2560. ...
Ramon's user avatar
  • 11
3 votes
1 answer
279 views

I'm building a mesh with ESP32 dev kits (ESP32-DevKitC V4) using the ESP-IDF VS Code extension and the ip_internal_network example project. The code for the example, common project components, and the ...
diomed's user avatar
  • 51
3 votes
1 answer
357 views

I am using ENC28J60 and EthernetENC library to connect an Arduino UNO with ATmega328 to the network. Everything works fine within the local network, but outside of it, I cannot ping the device. What ...
ArgusLibovski's user avatar
-2 votes
1 answer
188 views

I'm trying hit some endpoints on the 8Base API with the Arduino Uno Wifi Rev2. I was able to get this API call to work with Postman, but I've had no luck once I convert it to my Arduino code. In ...
jobrien9's user avatar
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
2k views

how can I recieve udp multicast packets in ESP8266? I have this piece of code: #include <ESP8266WiFi.h> #include <WiFiUdp.h> const char* ssid = "my_wifi_ssid"; const char* ...
Petr Marek's user avatar
0 votes
1 answer
2k views

I am trying to bring the esp32 example code live. I am able to upload the image error free but when I remove the jumper and then press the reset switch, instead of seeing it logon to my network via ...
brad's user avatar
  • 201
0 votes
1 answer
51 views

I have a webserver configured on my esp8266 with is set to fire off electrical relay0 on my 8 port relay board. The device initializes relay0 perfectly and without errors. But when I configure the ...
brad's user avatar
  • 201
1 vote
0 answers
155 views

So I want to have one persistent SSL connection to a cloud server (Azure IoT Hub) to upload telemetry and another SSL connection to a server to perform a simple GET request every 30 minutes. I've ...
Konstantinos P.'s user avatar
0 votes
0 answers
486 views

My project involves a bunch of peripherals, but most importantly for this project, a request to an NTP time server is done using the standard NTPClient library. Suddenly, after modifying some ...
kleines Filmröllchen's user avatar
1 vote
0 answers
69 views

I would like to set up an esp8266, connected arduino as a webserver, specifically, one that has its own IP, and is stand alone, not connected to other networks, and offers its sensor info as the ...
j0h's user avatar
  • 902
1 vote
0 answers
57 views

Currently working with ADS1292rShield library. Is there any way to read the value of the respiration and heart rate without using the Protocentral GUI. Printing DataPacketHeader to the console just ...
Desert Digital's user avatar
0 votes
1 answer
244 views

So I want to create an application where I can send data with a SIM-Module, and when it's not needed it should fall into a "standby-mode" because it's battery powered. But I always get this exact ...
Cowboy_Patrick's user avatar
0 votes
1 answer
1k views

I am trying to send measurements over UDP, but the function Udp.endPacket continuously fails. I use an Arduino Uno WiFi rev 2, WiFiNINA library version 1.4.0 and WiFiNINA firmware version 1.2.1 which ...
PeterD's user avatar
  • 1
1 vote
0 answers
75 views

I have a power strip with a ESP8266 which is supposed to turn it on upon command from a OpenHAB server, or to stay on for a predefined time upon command from another ESP8266 (serverless). The reason ...
FarO's user avatar
  • 339
1 vote
1 answer
1k views

I want to send a file from an Arduino to the server or another Arduino. I wrote a code that's open the file then write the content of the text on an array and then send it. That would work if the ...
khalid's user avatar
  • 31
-1 votes
3 answers
146 views

I have a project I am working on where I need to check the pressure on a gauge using a camera. I am familiar with a little openCV programming using a laptop webcam. However, for this application, I ...
user avatar
-1 votes
1 answer
2k views

Update 2: Have tested by pinging various devices on different subnets / vlans and did a pcap on the wifi AP I can see the icmp requests going through for each request except for ones on the 4.x subnet,...
Thomas PomTom Steel's user avatar
0 votes
1 answer
1k views

I'm fairly inexperienced with Arduino and entirely new to networking, so bear with me. I've programmed a couple of NodeMCU devices to communicate the use of an instrument via activation of an LED. I ...
Kyle Chesney's user avatar
1 vote
1 answer
3k views

I'm using a NodeMCU, which is connected to an enterprise network at a school. The information given in the GET requests that the ESP8266 sends is sensitive, so naturally we want to make it secure and ...
Albert MN.'s user avatar
0 votes
1 answer
560 views

I wrote a code to be implemented in a SONOFF device (ESP8266 chip). My question is regarding disconnection due to failure/ power fail in wifi network - when such event happens, does wifi connectivity ...
guyd's user avatar
  • 1,049
1 vote
1 answer
334 views

I am working on a project where I want to send data from and to different Arduinos on a network. At the moment I²C seems the best option for my needs since I can specify where to send the data. But ...
FutureCake's user avatar
0 votes
1 answer
1k views

EDIT: I have created an issue about this here: https://github.com/esp8266/Arduino/issues/4593 I have this server: 185.205.210.197 (Check that it works: http://185.205.210.197/) And I have this code ...
nemewsys's user avatar
  • 225
1 vote
1 answer
181 views

I want to send/receive strings to/from an ENC28J60 via a C# application. I used my own "protocol" to do this. For example I send "" to Arduino and it replies with a string containing temperature ...
Safa Dana's user avatar