Koepel

Results 50 comments of Koepel

When you buy a new ATmega328P microcontroller (as used in the Arduino Uno), then the EEPROM is empty. A empty EEPROM means that all the data is 0xFF. Wokwi simulates...

That is not implemented yet. The EEPROM contents is not stored in the Wokwi project as a file yet and it is not stored on your computer as local browser...

A serial duplex communication to the real world would be a dream come true. I hope you don't mind, but my feature request aims higher. It is the same as...

A device (such as the Logic Analyzer) could be connected to SoftwareSerial for example. Is the decoding of the serial signals possible ? What if the option to use multiple...

This is an internal problem inside the library: `Wire.requestFrom(_address, 6);` The Wire.requestFrom() parameters should be fixed. The line is here: https://github.com/wemos/WEMOS_SHT3x_Arduino_Library/blob/master/src/WEMOS_SHT3X.cpp#L30 The _address is in the object and is a...

@grossadamm Have you investigated how the Wire library works ? Are you willing to remove this Pull Request with the timeout ? I have made a Wiki with common mistakes:...

I'm sorry grossadamm, but a timeout is wrong as well. After a Wire.requestFrom() there is no need to wait. Either the return value of Wire.requestFrom() or the return value of...

The Wire.endTransmission() returns an error, and the Wire.requestFrom() returns the number of received bytes and the Wire.available() return how many bytes are available in the buffer. Those can be used...

Test with a DS1307 to pins 4,5 (small board) or 14,15 (large board): ``` #include void setup() { Wire.begin(); Wire.beginTransmission(0x68); Wire.endTransmission(); delayMicroseconds(50); Wire.beginTransmission(0x68); Wire.write(0); Wire.endTransmission(); } void loop() {} ```...

This is a file from PulseView. Open the *.zip in PulseView. [requestzero.zip](https://github.com/arduino/ArduinoCore-avr/files/7557321/requestzero.zip) Same test as before: Arduino IDE 1.8.16, Arduino Mega 2560, BMP085 after a I2C level converter, PulseView 0.4.2,...