Hi Dev1an,
Your Swift-Atem package look amazing but I just cannot get it working. I must be doing something wrong as the control software will connect to my Atem Mini and so will your NodeJS Atem package.
My code is very simple:
let controller = try? Controller(ipAddress: "192.168.68.240") { connection in
connection.when { (connected: Config.InitiationComplete) in
print(connected)
print("Type a number and press <enter> to change the current preview")
}
connection.whenDisconnected = {
print("Disconnected")
}
}
controller?.send(message: Do.ChangeProgramBus(to:VideoSource.input(2)))
I keep getting the following in the output:
channel active
👹 Not sending because connectionstate is nil
🛑 Shutting down connection [IPv4]192.168.68.240:9910
channel inactive
Disconnected
lost connection due to channel inactive
I guess the issues here is the fact that the logging isn't really telling me anything. Is there a way to enable full logging that might give me a clue why this isn't working?
Thanks,
Simon
Hi Dev1an,
Your Swift-Atem package look amazing but I just cannot get it working. I must be doing something wrong as the control software will connect to my Atem Mini and so will your NodeJS Atem package.
My code is very simple:
I keep getting the following in the output:
I guess the issues here is the fact that the logging isn't really telling me anything. Is there a way to enable full logging that might give me a clue why this isn't working?
Thanks,
Simon