def generate_wifi_list_screen(self):
self.wifi_grid = GridLayout(cols=1, padding=0, spacing=0)
self.placeholder = WifiLoadingList()
self.wifi_grid.add_widget(self.placeholder)
self.rsm._generate_backbutton_screen(
name=self.name,
title=roboprinter.lang.pack['WiFi']['Select_Network'],
back_destination=self.back_destination,
content=self.wifi_grid,
cta=self._refresh_wifi_list,
icon='Icons/Manual_Control/refresh_icon.png')
thread.start_new_thread(self._append_wifi_list, ())
Clock.schedule_interval(self._wifi_callback, 1 / 30.)
return
评论列表
文章目录