Questions tagged [arduino-uno-wifi-dev-ed]

Arduino Uno WiFi Developer Edition is a retired 'Made in Italy' board developed and produced by arduino.org

Arduino UNO WiFi Developer Edition is an Arduino UNO R3 with ESP8266 integrated on the board. It was developed and manufactured by Arduino.org.

UNO WiFi Developer Edition connects ATmega328 to ESP8266 using additional on board UART chip SC16IS750. This additional UART is connected to ATmega as I2C device.

The Arduino.org team did use a JeeLabs ESP-link with minor changes for the firmware of the UNO WiFi Developer Edition.

With IDE 1.8.x the library for the Atmega side of this firmware is “Arduino UNO WiFi Dev Ed Library”. The network communication possibilities are limited to port 80 and MQTT. The library can be installed with Library Manager in IDE.

The firmware of the Uno WiFi can be changed to Espressif AT firmware, to WiFi Link firmware or the on board ESP8266 can be programmed as Arduino with the esp8266 Arduino core.

7 questions
5
votes
2 answers

Arduino Uno "WiFi Developer Edition" - How to disable WiFi?

I'm using Arduino Uno "Wifi Developer Edition". I made my Arduino to get connected with my local network based on http://www.arduino.org/learning/getting-started/getting-started-with-arduino-uno-wifi Now I would like to disable it and work with USB…
Trezor
  • 91
  • 4
5
votes
1 answer

How to send HTTP requests to specific port using Ciao?

I currently have a working REST client on my Arduino, but the requests always go to port 80. How do I make it send the request to a specific port? This is my current code: /* File: RestClient.ino This example makes an HTTP request after 10 seconds…
Mason
  • 227
  • 2
  • 10
2
votes
3 answers

Connecting Arduino Uno WiFi Developer Edition to the Internet

I recently bought an Arduino Uno WiFi Developer Edition from here. Although all the other functionality appears to work (I’m able to upload/run programs, read sensors I plug in, etc.), I am not able to connect the Arduino to the internet. The…
Tim
  • 121
  • 1
  • 3
1
vote
0 answers

Uno WiFi Dev Ed - Example Sketch with UnoWiFiDevEdSerial1.h library by Juraj errors on compile

Example sketch does not compile, error message 'static void WiFiClass::init()' is private within this context IDE 1.8.13 Board Uno WiFi Dev Ed. I have been using this board for several years uploading to Thingspeak using UnoWiFiDevEd.h using…
Mack
  • 11
  • 1
1
vote
0 answers

ARDUINO UNO WIFI R3 (Dev Edition) Send simple http get request

I need send http request to my own server from arduino uno. First of all I connected the board through web client configurator. I tried different codes, the last one is: /* File: RestClient.ino This example makes an HTTP request after 10…
ow-me
  • 111
  • 2
0
votes
1 answer

Using ESP8266-01 via Arduino(no flash) without AT commands(using serial monitor)

I'm trying to build a smart Keychain using Arduino uno wifi(org, so Im using it like it's Arduino uno), ESP8266-01 And neo6m GPS device. My esp8266 wasn't new, and it came without AT firmware. I flashed it so it could have AT commands but it's not…
0
votes
2 answers

How to create TCP server on Arduino UNO WiFi?

I'm currently trying to make my Arduino UNO WiFi work as a TCP host, so I can send him a TCP message and it sends a response. I had no problem doing this on the Arduino Galileo Gen 2 using the EthernetServer, but since this one is using WiFi,…
Mason
  • 227
  • 2
  • 10