Wolfgang (Wolle) Ewald

Results 35 comments of Wolfgang (Wolle) Ewald

Sorry, the library does not support the SPI 3-Wire, and I do not intend to implement this mode in foreseeable time. The reason is that no one asked for this,...

Just to add: The problem is the SDO pin. Apart from that my module is module is comparable. SCL and SDA are pulled up with 4.7 kohm, CS is pulled...

I have received the module which has SDO connected to GND. After removing the 0 ohm resistor R4 SPI worked. I have updated readme accordingly: https://github.com/wollewald/ADXL345_WE#if-spi-does-not-work

@dbuezas - first of all, thanks for your great work! Maybe it would be helpful to add an example sketch to show how to get a PWM signal at PF1...

Cool Tool! Timers of the AVR MCUs and on the LGT8FxP are always a bit painful. Therefore this is a great help. I have just started a pull request for...

@LaZsolt, thanks. I used inkscape for all the boxes, text and lines. https://inkscape.org/?switchlang=en Then I exported it as a png. Finally, I combined it with the nano board with Photoshop....

Hi @minhanh1234, you can use the magnetometer data to make a compass out of it. You would need to determine the max and min values for the x- and y-axes...

Hi @Albin76 , sorry for the late response. A burst read should be possible since the registers are in sequential order. I will try that but it will still need...

Hi @BCsabaEngine , can you share your complete code? Then I could see more details. e.g. if you are you using the continuous or triggered mode, which baud rate you...

Hi @BCsabaEngine , it is the Serial.print() which is slow. I have tested the following small sketch: ```` void setup() { Serial.begin(9600); delay(1000); unsigned long startTime = millis(); unsigned long...