Jump to content

RainerHH

Members
  • Posts

    9
  • Joined

  • Last visited

Recent Profile Visitors

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

RainerHH's Achievements

Rookie

Rookie (2/14)

  • First Post Rare
  • Conversation Starter Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

2

Reputation

  1. maybe this can help? https://github.com/mathoudebine/turing-smart-screen-python https://github.com/upiir/turzx_screen_themes
  2. I wish to connect the 5-Zoll-IPS-LCD-Monitor 800*480-USB-Display from TURZX (TuringSmartScreen).
  3. 1.: When I put my PC into standby mode, the AX206 display goes out. That is exactly right. But after a certain time the display comes on again and shows its firmware panel. Can you change that? 2 .: Is there a similar panel in 5 inches?
  4. Solution: it cannot be any picture name, it has to start with IMG_.
  5. I am unable to turn off the panel in standby. If I only put a completely black picture in the photo folder, it is the same as if I have no photo in it at all. It comes Splash Screen.
  6. I installed the Beada Panel, great! But: Entering Standby Mode, it does not switch off, instead showing ScreenSavers. Is there a way to change that?
  7. this code is from the everest/aida64 help topic "ext. Apps".
  8. thats the code of the plugin to read the values wich are puts in the shared memory by everest/aida64. no, I'm unable to disassemble the .dll, understand it, change it and reassemble. first the plugin must find the running aida and then locate the shared memory of it and then periodictly read the values.
  9. here are the sample code to get the values stored from Everest in the shared memory (file/options/ext. Apps/activate shared memory). The alphacool app reads ist from there.: Const sharedmem_name = 'EVEREST_SensorValues'; Function ExtApp_SharedMem_ReadBuffer(bu:PChar;bu_size:DWord):Boolean; Var mappedData : PChar; th : THandle; Begin Result:=False; th:=OpenFileMapping(FILE_MAP_READ,False,sharedmem_name); If th<>INVALID_HANDLE_VALUE Then Begin mappedData:=MapViewOfFile(th,FILE_MAP_READ,0,0,0); If mappedData<>Nil Then Begin StrLCopy(bu,mappedData,bu_size); If UnmapViewOfFile(mappedData) Then Result:=True; End; CloseHandle(th); End; End; The only difference to AIDA64 is this: Const sharedmem_name = 'AIDA64_SensorValues'; An example of read values is attached:
×
×
  • Create New...