codeZonkey
codeZonkey
I purchased a couple of these displays [https://www.buydisplay.com/serial-spi-3-5-inch-tft-lcd-module-in-320x480-optl-touchscreen-ili9488](url). They have the ili9488 datasheet on their site [https://www.buydisplay.com/download/ic/ILI9488.pdf](url). It's a bit dense for me so I am struggling a bit to...
I agree, I did not mean to imply that the code should be copy/pasted but rather used as a basis. The only header with information in the code from the...
Nice! I have not been able to set the clock divider lower than 12, but I am also on dupont wires for now. I do agree that it "works" in...
@hakmo That's great! Any chance you could share the code you set up? I tried doing the same thing but mine is locking up on startup, even at slow speeds....
@hakmo never mind, I found my typo. My display went from this:  To this:  @juj, I created a module for the 9488 in my fork of the repository....
@le51 , Can you post a picture of your setup? It may be helpful to see what your panel looks like. In the meantime, here are some flags you may...
@le51 I noticed that your list of pin connections indicates that the CS pin is unconnected. This cannot be. The CS pin is a critical part of the SPI interface...
Here is some further testing: for(Json::Value::const_iterator it = root.begin(); it != root.end(); ++it) { const Json::Value &obj(*it); Json::ValueType type(obj.type()); std::string key(it.key().asString()); } (gdb) p key $12 = "int" **(gdb) p...
@BillyDonahue thank you for the reply and the explanation regarding the JSON format description. I am by no means an expert on it so I appreciate the information you shared....
I think that is sort of my point. If isDouble() is not covered by the standard it shouldn't matter as long as the standard is being met by isNumeric(). In...