Sub Process_Globals
Private TableViewDeviceList As TableView
End Sub
Private Sub Application_Start (Nav As NavigationController)
TableViewDeviceList.Initialize("TableViewDeviceList", False)
Page1.RootPanel.AddView(TableViewDeviceList, 200, 200, 100%x, 100%y)
'TableViewDeviceList.AddSingleLine("Test")
End Sub
Sub BLEmanager_DeviceFound (Name As String, Id As String, AdvertisingData As Map, RSSI As Double)
Log("Found: " & Name & ", " & Id & ", RSSI = " & RSSI & ", " & AdvertisingData)
'WHAT DO I DO HERE TO ADD Name TO TableViewDeviceList??
End Sub