11 lines
238 B
Python
Executable File
11 lines
238 B
Python
Executable File
#!/usr/bin/env python3
|
|
import logging
|
|
import include_homekit
|
|
|
|
from homekit.inverter.emulator import InverterEmulator
|
|
|
|
|
|
if __name__ == '__main__':
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
InverterEmulator(addr=('127.0.0.1', 8305))
|