본문 바로가기

분류 전체보기31

[MSFS] pmdg 737 Data Access \Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalState\packages\pmdg-aircraft-737\work 737_Options.ini 추가 하자. [SDK] EnableDataBroadcast=1 EnableCDUBroadcast.0=1 EnableCDUBroadcast.1=1 역시 매뉴얼을 꼼꼼히 읽어 보고 시작해야 되네요 ㅠㅠ 2023. 4. 20.
[MSFS-DIY] simconnect documentation https://docs.flightsimulator.com/html/Programming_Tools/SimConnect/SimConnect_SDK.htm SimConnect SDK SIMCONNECT SDK The SimConnect SDK can be used by programmers to write add-on components that communicate with Microsoft Flight Simulator. Both in-process modules and out-of-process executables have access to the SimConnect API, noting the following: Out-of docs.flightsimulator.com https://docs.fl.. 2023. 4. 5.
[MSFS-DIY] pyton simconnect 연결 예 먼저 simconnect 설치가 필요하다. https://pypi.org/project/SimConnect/ SimConnect Adds a pythonic wrapper for SimConnect SDK. pypi.org pip install SimConnect 설치가 완료되면 아래 예제를 실행 해 보자. import simconnect import time # Connect to SimConnect sm = simconnect.SimConnect() # Define the aircraft object aircraft = sm.add_aircraft_object("Aircraft") # Set the current heading of the aircraft to 270 degrees heading = .. 2023. 4. 4.
[MSFS-DIY] arduino tm1637 segment 출 준비물 : arduino tm1637 4 digit segment (4자리 세그먼트 + tm1637) 연결할 점퍼선 들... 1. 아두이노와 tm1637 보드연결 tm1637 의 5v gnd 는 아두이노 보드의 5v gnd 에 clk 는 2번 핀 dio 는 3번 핀 에 연결 한다. 2. arduino 코드 및 컴파일 tm1637 출력 예제 0.1초 에 1씩 증가하는 예제 #include #define CLK 2 // Define CLK pin #define DIO 3 // Define DIO pin TM1637 tm1637(CLK, DIO); // Create a TM1637 object void setup() { tm1637.init(); // Initialize the module } int i = .. 2023. 4. 4.