Hi all, i'm not able to get my python app sending command to DCS throught network (LAN).
My python code works on local (on my DCS pc) and I'm a able to use virtual cockpit from my computer running the python app (so i guess not a network or port issue). What i am missing? Do i need to configurate my python app differently if running from a network computer instead of local? Where can i put the ip address?
from dcs_bios_connector import DcsBiosConnector
class DcsBios():
def init(self):
self.bios = DcsBiosConnector()
self.bios.connect()
def send_command(self, command):
self.bios.send(command)
print('DCSBios sending command ..')
Thanks in advance.
Hi all, i'm not able to get my python app sending command to DCS throught network (LAN).
My python code works on local (on my DCS pc) and I'm a able to use virtual cockpit from my computer running the python app (so i guess not a network or port issue). What i am missing? Do i need to configurate my python app differently if running from a network computer instead of local? Where can i put the ip address?
from dcs_bios_connector import DcsBiosConnector
class DcsBios():
def init(self):
self.bios = DcsBiosConnector()
self.bios.connect()
def send_command(self, command):
self.bios.send(command)
print('DCSBios sending command ..')
Thanks in advance.