I am trying to upgrade firmware, on arduino UNO WiFi, using:
Test connection return
Can't communicate with programmer!
java.lang.Exception: Can't communicate with programmer!
at cc.arduino.plugins.unowifi.flashers.cli.CLIFlasher.testConnection(CLIFlasher.java:100)
at cc.arduino.plugins.unowifi.UpdaterImpl$2.run(UpdaterImpl.java:112)
In the mean time the following sκetch is uploaded without problem!!
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
Please post solution if you have one. I have the same issue.
Juraj
October 4, 2019, 7:51am
4
but there are more possibilities
# UNO WiFi (Developer Edition) Serial1
Arduino UNO WiFi is an Arduino UNO R3 with ESP8266 integrated on the board. It was developed and manufactured by Arduino.org. More information in [UNO WiFi Wiki](https://github.com/jandrassy/UnoWiFiDevEdSerial1/wiki).
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.
This library creates a Serial1 object with SC16IS750 on Arduino UNO WiFi Developer Edition. This Serial1 enables to communicate with the on-board ESP8266 over it's serial interface. The included tool EspProxy enables accessing the on-board ESP8266 over USB for 'flashing' tools, IDE sketch upload or Serial Monitor.
The release version of the library is available in Library Manager in IDE.
Use for:
* [UNO WiFi with Espressif AT firmware](#uno-wifi-with-espressif-at-firmware)
* [UNO WiFi with WiFi Link firmware](#uno-wifi-with-wifi-link-firmware)
* [write sketches for ESP8266 with Firmata in ATmega](#writing-sketches-for-esp8266).
## UNO WiFi with Espressif AT firmware
### Prepare
Download the AT firmware from [Espressif download page](http://espressif.com/en/support/download/at?keys=&field_type_tid%5B%5D=14) and unzip it. Replace the esp_init_data_default.bin with [this one](https://github.com/jandrassy/UnoWiFiDevEdSerial1/wiki/files/esp_init_data_UnoWiFi.bin). It has the 40MHz crystal setting.
This file has been truncated. show original
DrAzzy
October 4, 2019, 9:56am
5
Just to confirm, this is uno wifi, not uno wifi rev2 right? The rev2 is very different from the non-rev2 uno wifi.