Arduino 1.8.5

- Sat Aug 03, 2019 6:48 am

I am running Arduino 1.8.5 on Windows 10 I have the STM32 2.0.0. Board definitions installed I am trying to simply compile (nothing more, just the 'verify button), the blink sketch for a generic STM32F1 little blue pill. Arduino IDE is a free integrated development environment that lets you program your Arduino board. The boards are considered microcontrollers units instead of computers and also called MCU systems. You can write your code in the Arduino software to upload it to the microcontroller. Arduino: 1.8.5 (Linux), Board: 'Arduino/Genuino Uno' HikingTracker:36: error: aggregate 'ts t' has incomplete type and cannot be defined struct ts t; ^ HikingTracker:85: error: 'TempI2CLM75' does not name a type TempI2CLM75 termo = TempI2CLM75(0x48,TempI2CLM75::ninebits); // I2C Temp Sensor ^. Free arduino ide 1.8.5 download software at UpdateStar - Arduino is a physical computing platform based ona simple micrcontroller board and a developmentenvironment that implements the processinglanguage.

#83350 I wasn't sure which forum was the right one, so I decided to post this in 'General Discussions'.
I've got Arduino IDE 1.8.5 for quite some time now.
I've been using ESP8266 (NodeMCU) to conrtol parts of my Smart Home for about two years now. Yesterday one of the blinds failed to go down and I found that the ESP8266 didn't set the output to the relay. So I decided to replace it with a new one. But: When I download the (old) sketch to the NodeMCU, I can't get neither a connection to the WIFI nor do I get anything useful out of the serial monitor. The serial connection (Serial.begin) is set to 115200, so is the monitor. I may use whatever baud rate I like, I just get rubbish. Apart from that, the WIFI does not connect.
Eventually I used a very simple sketch just to check the connection:Arduino 1.8.5
Code: Select all#include <ESP8266WiFi.h> // Include the Wi-Fi library
const char* ssid = '******'; // The SSID (name) of the Wi-Fi network you want to connect to
const char* password = '******'; // The password of the Wi-Fi network
void setup() {
Serial.begin(115200); // Start the Serial communication to send messages to the computer
delay(10);
Serial.println('n');
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password); // Connect to the network
Serial.print('Connecting to ');
Serial.print(ssid);
while (WiFi.status() != WL_CONNECTED) { // Wait for the Wi-Fi to connect
delay(500);
Serial.print('.');
}
Serial.println('n');
Serial.println('Connection established!');
Serial.print('IP address:t');
Serial.println(WiFi.localIP()); // Send the IP address of the ESP8266 to the computer
}
void loop() {
}

The result in the monitor looks like this:
' 0002000e⸮nno⸮000e⸮⸮⸮|⸮⸮0004⸮o⸮nNo⸮⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|⸮|'
This does tell me that the connection was refused. This does happen with two different access points (router and Raspberry) .
Any idea what's wrong?
CU Freddie
Building my smart home using Raspberry PI3 and a bunch of NodeMCUs
Joined: Wed. Jul 12, 2006
Total votes: 0

Arduino 1.8.5

I am having difficulty using the ATmega328PB Xplained Mini board with Arduino IDE 1.8.5.

I have followed the instructions in the following link and modified the fuse bits and programmed the bootloader:

Arduino 1.8.5 Download

But when I try programming the 'examples >Atmel AVR xplained mini getting started > blink', I get the following error messages:

Arduino: 1.8.5 (Windows 10), Board: 'Atmel atmega328pb Xplained mini'

1.8.5

Sketch uses 932 bytes (2%) of program storage space. Maximum is 32256 bytes.
Global variables use 9 bytes (0%) of dynamic memory, leaving 2039 bytes for local variables. Maximum is 2048 bytes.
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xcc
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xcc
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xcc
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xcc
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xcc
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xcc
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xcc
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x30
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x20
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x30
Problem uploading to board. See http://www.arduino.cc/en/Guide/T... for suggestions.

Arduino 1.8 5 Windows

This report would have more information with
'Show verbose output during compilation'
option enabled in File -> Preferences.

Arduino 1.8.5 Free Download

Any ideas what is missing here?

Arduino Genuino 1.8 5

Thank you