Jump to content

Ganeshka

Members
  • Posts

    97
  • Joined

  • Last visited

Everything posted by Ganeshka

  1. I don't understand what wrong with brightness in night mission . If i chose 1.4 and more i have something like all black go to grey color ... 1.9 is gamma settings what i fly in regular flight . It look ok , but no black at all . If i chose 1.3 - 1 i have amazing black color !!!! But with some shadows or texture glitches... if this possible to have perfect black and visibility of objects like on 1.8-1.9 gamma ? :cry::joystick::mad: I know there was a bug before on 1.5 and 2.1 version of the game with night flight , now it's much better but grey .... and no black at all. I saw the same in Fallout 4 VR , the add slider in VR settings named something like "Color antialiasing " or something like this . It's add better dark color BUT STILL NO BLACK ...
  2. thanks , now downloading ... need to try by myself . My dream is using touch like natural hands gestures in cockpit with vibration :)
  3. but ... they say in 2.5 whats wrong .... ?
  4. 2.5 on live ?! We can play ?! or just download it ? What about oculus touch integration ?
  5. can you share dimensions of all throttle parts ? maybe it's posiible 3d printed it or cut from metal ...
  6. thanks a lot ! with delay it is little bit better . But i decide to change this buttons on tactile 12x12 ... they show almost perfect result .
  7. testing my new UFC and have problems with DcsBios::Switch3Pos ufcSel("UFC_SEL", PIN_A, PIN_B); and same on CSMP ... all other buttons on UFC and CMSP work perfect but when i try to use Switch3Pos value switching is not correct ,i press 1 time but in game it switch more , every time number is different sometime it go +2 , sometime more ... if i use same pin for other like MASTER CAUTION or ENT everythig is work fine . Can some one tell me why it wont work correctly ? :cry:
  8. next UPDATE !!! :) CMSP + UFC BETA (without engraving)
  9. can you give a link for this display ?
  10. You can search on this forum , or just google it MSFFB 2 mod :) if you need any help i can try to help
  11. SOON NEW UPDATE :) almost done all main panels !!! new update UFC , TRIM , CMSP , FUEL
  12. https://ru.aliexpress.com/item/4-Digit-LED-0-36-Display-Tube-decimal-7-segments-GREEN-TM1637-disp-size-30x14mm/32795864597.html?spm=a2g0s.9042311.0.0.80ZojL https://ru.aliexpress.com/item/6-Digit-LED-0-36-Display-Tube-decimal-7-segments-WHITE-TM1637-disp-size-46x14mm/32798356812.html?spm=a2g0s.9042311.0.0.80ZojL 8 digits , have different chip on it and its not work with this librarry
  13. my code is simple . #include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x3f,16,2); #include "SevenSegmentTM1637.h" #define TM1637_MAX_LINES 1 // number of display lines #define TM1637_MAX_COLOM 6 // number of coloms (digits) SevenSegmentTM1637 am(2,3); SevenSegmentTM1637 ama(4,5); SevenSegmentTM1637 uhf(6,7); SevenSegmentTM1637 ils(8,9); SevenSegmentTM1637 tacan(10,11); #define DCSBIOS_DEFAULT_SERIAL #include "DcsBios.h" void onCmsp1Change(char* newValue) { lcd.backlight(); lcd.setCursor(0,0); lcd.print(newValue[0]); lcd.print(newValue[1]); lcd.print(newValue[2]); lcd.print(newValue[3]); lcd.print(newValue[5]); lcd.print(newValue[6]); lcd.print(newValue[7]); lcd.print(newValue[8]); lcd.print(newValue[10]); lcd.print(newValue[11]); lcd.print(newValue[12]); lcd.print(newValue[13]); lcd.print(newValue[15]); lcd.print(newValue[16]); lcd.print(newValue[17]); lcd.print(newValue[18]); } DcsBios::StringBuffer<19> cmsp1Buffer(0x1000, onCmsp1Change); void onCmsp2Change(char* newValue) { lcd.setCursor(0, 1); lcd.print(newValue[0]); lcd.print(newValue[1]); lcd.print(newValue[2]); lcd.print(newValue[4]); lcd.print(newValue[5]); lcd.print(newValue[6]); lcd.print(newValue[7]); lcd.print(newValue[9]); lcd.print(newValue[10]); lcd.print(newValue[11]); lcd.print(newValue[12]); lcd.print(newValue[14]); lcd.print(newValue[15]); lcd.print(newValue[16]); lcd.print(newValue[17]); lcd.print(newValue[18]); } DcsBios::StringBuffer<19> cmsp2Buffer(0x1014, onCmsp2Change); void onVhfamFreq1Change(char* newValue) { am.setCursor(0,0); am.print(newValue); } DcsBios::StringBuffer<2> vhfamFreq1StrBuffer(0x1190, onVhfamFreq1Change); void onVhfamFreq2Change(unsigned int newValue) { am.setCursor(0,3); am.print(newValue); } DcsBios::IntegerBuffer vhfamFreq2Buffer(0x118e, 0x00f0, 4, onVhfamFreq2Change); void onVhfamFreq3Change(unsigned int newValue) { ama.setCursor(0,0); ama.print(newValue); } DcsBios::IntegerBuffer vhfamFreq3Buffer(0x118e, 0x0f00, 8, onVhfamFreq3Change); void onVhfamFreq4Change(char* newValue) { ama.setCursor(0,2); ama.print(newValue); } DcsBios::StringBuffer<2> vhfamFreq4StrBuffer(0x1192, onVhfamFreq4Change); void onUhfFrequencyChange(char* newValue) { uhf.setCursor(0,1); uhf.print(newValue[1]); uhf.setCursor(0,2); uhf.print(newValue[0]); uhf.setCursor(0,0); uhf.print(newValue[2]); uhf.setCursor(0,5); uhf.print(newValue[4]); uhf.setCursor(0,4); uhf.print(newValue[5]); uhf.setCursor(0,3); uhf.print(newValue[6]); } DcsBios::StringBuffer<7> uhfFrequencyBuffer(0x1180, onUhfFrequencyChange); void onIlsMhzChange(char* newValue) { ils.on(); ils.setCursor(0,1); ils.print(newValue[1]); ils.setCursor(0,2); ils.print(newValue[0]); ils.setCursor(0,0); ils.print(newValue[2]); } DcsBios::StringBuffer<3> ilsMhzStrBuffer(0x116e, onIlsMhzChange); void onIlsKhzChange(char* newValue) { ils.setCursor(0,4); ils.print(newValue[0]); ils.setCursor(0,3); ils.print(newValue[1]); ils.printRaw(128,5); } DcsBios::StringBuffer<2> ilsKhzStrBuffer(0x1172, onIlsKhzChange); void onTacanChannelChange(char* newValue) { tacan.print(newValue); } DcsBios::StringBuffer<4> tacanChannelBuffer(0x1162, onTacanChannelChange); void setup() { DcsBios::setup(); lcd.init(); am.init(); am.clear(); ama.init(); ama.clear(); uhf.init(); uhf.clear(); uhf.printRaw(256,5); uhf.printRaw(256,4); ils.init(); ils.clear(); ils.printRaw(256,5); ils.printRaw(256,4); tacan.init(); } void loop() { DcsBios::loop(); }
  14. give me your mail i will send you Librarry . You can use 4-6 displays from robotdyn
  15. can you make same mod for MFFB2 ?
  16. i have Simshaker with 8 motors ... and it's work perfect !!! I want same feeling from stick ))):pilotfly::joystick:
  17. https://forums.eagle.ru/showthread.php?t=194682 here is work ) at this moment i'm in development :thumbup::music_whistling:
  18. Hello ! I was modding my Microsoft stick and realize that is no shaking at all on a10c :joystick: Compared to Spitfire ... Ok there is hydraulic on a10c ... but there is no GUN shaking and Stalling effect ... only trimmer and that's all . If this possible to fix this manual ? And if i turn off hydraulic on emergency panel , it must feel like on Spitfire ? Because i turn off assist . And one more , i was make power mode but i decide to add +1 more resistor on top . Standart power mode is 1 extra resistor on 8 resistors on the board , right now i have +2 resistor on each and its work perfect with WARTHOG grip !!! But my FFB in open case and i will make new for it . There is now overheating of motors , everything i think is same ! :thumbup::pilotfly:
  19. New update ^_^ i was add bearings to my FFB2 Joystick , make x2 Power Mode and custom adapter for 25mm aluminium tube , but i think i will use carbon extension. Now need to design new body for Microsoft FFB2 joystick https://farm5.staticflickr.com/4458/37887430746_d1d3d19eaa_b.jpg' alt='37887430746_d1d3d19eaa_b.jpg'> and this is video from Warthog Grip+Microsoft FFB2 (power mode) and this is test of Landing Gear Panel Lights
  20. Я нашел только а10с и есть вроде бы ещё на F 15 и прочие
  21. Панели моего производства :) сделаны из слоев акрила . Можно сделать под любой самолёт , как цвет так и компоновку элементов .Я осваиваю пока и пытаюсь сделать качество такое , какое хотел бы получить сам :) все делаю в программе Fusion 360 .Резка акрила лазером , гравировка лазером , покраска пока к сожалению сам и качество вот мне не нравится ...
  22. new updated panels ! they are not perfect ... but they will ))) P71023-215939 by Gennadii Petrovskyi, on Flickr[/img] P71023-220106 by Gennadii Petrovskyi, on Flickr[/img] P71023-215852 by Gennadii Petrovskyi, on Flickr
  23. P71023-215939 by Gennadii Petrovskyi, on Flickr[/img] P71023-220106 by Gennadii Petrovskyi, on Flickr[/img] P71023-215852 by Gennadii Petrovskyi, on Flickr в борьбе за качество ))) Новые прототипы
  24. завтра сделают новые панели и новую гравировку ... , зашкурил кнопки и покрасил :) Короче будет красивенько ! Я бы с радостью клепал бы такие , был бы спрос ))
×
×
  • Create New...