use of org.eclipse.smarthome.binding.astro.handler.AstroThingHandler in project smarthome by eclipse.
the class PositionalJob method run.
@Override
public void run() {
AstroThingHandler astroHandler = AstroHandlerFactory.getHandler(getThingUID());
if (checkNull(astroHandler, "AstroThingHandler is null")) {
return;
}
astroHandler.publishPositionalInfo();
}
Aggregations