Michael_L
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 216
Comments
Recent activity by Michael_L-
Can I ask how you derived this information? There has not been a revision made as there are currently no problems with the current VER1.1.All signals are connected appropriately, making a complete...
-
The set_column_address command uses 2 data parameters after you send it to the display. You would need to setup the address, and issue the write_memory_start command before writing pixel data to t...
-
We have not had or heard of any issues running this display at 3.3V as opposed to 3.0V. We perform all of our testing with 3.3V, and have many customers that use the display at 3.3V as well.Of cou...
-
Perhaps the below code snippets will better assist you: const char slave2w = 0x3C;void send_packet(unsigned char x){ unsigned char ix; Wire.beginTransmission(slave2w); for(ix=0;ix<x;ix++) { ...
-
I have also responded to your post in the other thread about this, and I think a cause of your problem could be due to the fact that the Arduino SPI library needs 8-bit values to work properly.
-
I'm sorry but unfortunately we do not have any example of this, only the 5x7 size. To use a custom size like 12x16, you would need to write your own function that would handle characters of that s...
-
You are correct, there is a typo in our datasheet. The comment of that line of code should say 120Hz and not 90 frames/sec.I have updated this already, but please allow a couple of days for this c...
-
This would be fine :)
-
The display you are trying to use is a 3.3V display. It requires 3.3V for VDD and logic to function properly. The Arduino Uno is a 5V MCU board. Yes, there is a 3.3V pin on the board, however ...
-
I am not certain of this, but I do not believe the Arduino can support 10-bit commands.