Jump to content

QuesterYeh

Members
  • Posts

    7
  • Joined

  • Last visited

About QuesterYeh

  • Birthday 11/21/1969

Personal Information

  • Flight Simulators
    DCS World
    Falcon4 BMS
  • Location
    Taiwan
  • Interests
    Flysim, plastic model, PC gaming

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Thanks for information Vinc!
  2. Hello all, I'm working on a plan to make a F/A-18E like UFC these days. I dig lates Helios and find there are part of scrachpad/option display and comm1/2 channel to bind and successful bind them. Everything looks good on Helios editor, but when I run the profile in DCS, I find the comm1/2 channel have some problem, when channel number over 9 , the ten digit "1" will become "'", "2" will become "~", I try to change fonts but no help. Does anyone know how to fix this? Thanks in advanced! BTW: I'm looking to display comm1/2 frequency too but can't find this binding in F/A-18C interface (but they exist in DCS-BIOS). Could anyone can help me add them into Helios F/A-18C interface?
  3. Sorry I would like to ask a stupid question, does the ESP32 runs faster than arduino for DED? I'd integrated all lamps/indicator to my mega2560 with DED, but still wish to know if It is necessary for me to switch to ESP32 XD
  4. Thank you Vinc! I'd switch to the code you mentioned, the invert text worked well now. I should satisfied about all these you had achieved, thank you for help me complete my long time dream to make a korry type ICP
  5. Success! After I change the loop part back to: void loop() { u8g2.firstPage(); /*u8g2.clearBuffer(); */ do { u8g2.drawStr(30, 12.8, line1); u8g2.drawStr(30, 25.6, line2); u8g2.drawStr(30, 38.4, line3); u8g2.drawStr(30, 51.2, line4); u8g2.drawStr(30, 64, line5); } while ( u8g2.nextPage() ); u8g2.updateDisplay(); /*u8g2.sendBuffer();*/ DcsBios::loop(); } The DED display correct now! But the invert texts looks like still wip and the refresh speed is slow. The DED is working well now but I'd like to know if there are any way to increase the refresh speed. Thanks for you all to create this sketch!
  6. Thank you Vinc! After I change the command line to this, the OLED come into life!! Looks like 4SPI OLED need to use this command and add clock and data pin to work. U8G2_SSD1322_NHD_256X64_1_4W_SW_SPI u8g2(U8G2_R2, /* clock=*/ 9, /* data=*/ 8,/* cs=*/ 4, /* dc=*/ 5, /* reset=*/ 6); // Enable U8G2_16BIT in u8g2.h Now DED looks function well but only display part of the 5th line. How do I fix my codes? Thanks in advanced! DED.ino
  7. Hello all, I'm testing this sketch but can't get it work. I use the 7-pin version of SSD1322 OLED like this: https://de.aliexpress.com/i/1005005858969975.html?gatewayAdapt=glo2deu The different is this one use 5V power and only have 7 pins (GND/VCC/SCL/SDA/RES/DC/CS), I'd test this one with a mega2560 on F4TS (falcon 4 to serial) and successful, so I think the OLED and connection is ok, but I try all version of codes in this thread with RES/DC/CS settings in my setting (pin 6/5/4) and keep getting empty. I would be appreciate for any help and suggestion.
×
×
  • Create New...