├── .DS_Store ├── .gitignore ├── External └── Firebase.framework │ ├── Firebase │ ├── Headers │ ├── FAuthData.h │ ├── FAuthType.h │ ├── FConfig.h │ ├── FDataSnapshot.h │ ├── FEventType.h │ ├── FMutableData.h │ ├── FQuery.h │ ├── FTransactionResult.h │ ├── Firebase.h │ ├── FirebaseApp.h │ └── FirebaseServerValue.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── NOTICE ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── Resources ├── OpenSans-Bold.ttf ├── OpenSans-Light.ttf ├── OpenSans-Regular.ttf ├── ss_demo_io.png ├── ss_demo_io_sm.png ├── ss_demo_motion.png ├── ss_demo_motion_sm.png ├── ss_demo_selection.png ├── ss_demo_selection_sm.png ├── ss_device_selection.png ├── ss_device_selection_sm.png ├── ss_motion_streaming.png └── ss_motion_streaming_sm.png ├── ThunderBoard ├── .gitignore ├── AppDelegate.swift ├── ApplicationConfig.swift ├── ApplicationPresenter.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── ItunesArtwork@1x.png │ │ ├── ItunesArtwork@2x.png │ │ ├── Thunderboard-20x20@2x.png │ │ ├── Thunderboard-20x20@3x.png │ │ ├── Thunderboard-29x29@1x.png │ │ ├── Thunderboard-29x29@2x.png │ │ ├── Thunderboard-29x29@3x.png │ │ ├── Thunderboard-40x40@2x.png │ │ ├── Thunderboard-40x40@3x.png │ │ ├── Thunderboard-60x60@2x.png │ │ └── Thunderboard-60x60@3x.png │ ├── Contents.json │ ├── Mask Group 2.imageset │ │ ├── Contents.json │ │ ├── Mask Group 2.png │ │ ├── Mask Group 2@2x.png │ │ └── Mask Group 2@3x.png │ ├── btn_io_light_blue_on.imageset │ │ ├── Contents.json │ │ ├── btn_io_light_blue_on.png │ │ ├── btn_io_light_blue_on@2x.png │ │ └── btn_io_light_blue_on@3x.png │ ├── btn_io_light_green_on.imageset │ │ ├── Contents.json │ │ ├── btn_io_light_green_on.png │ │ ├── btn_io_light_green_on@2x.png │ │ └── btn_io_light_green_on@3x.png │ ├── btn_io_light_off.imageset │ │ ├── Contents.json │ │ ├── btn_io_light_off.png │ │ ├── btn_io_light_off@2x.png │ │ └── btn_io_light_off@3x.png │ ├── btn_io_light_red_on.imageset │ │ ├── Contents.json │ │ ├── btn_io_light_red_on.png │ │ ├── btn_io_light_red_on@2x.png │ │ └── btn_io_light_red_on@3x.png │ ├── btn_navbar_back.imageset │ │ ├── Contents.json │ │ ├── btn_navbar_back.png │ │ ├── btn_navbar_back@2x.png │ │ └── btn_navbar_back@3x.png │ ├── btn_navbar_close.imageset │ │ ├── Contents.json │ │ ├── btn_navbar_close.png │ │ ├── btn_navbar_close@2x.png │ │ └── btn_navbar_close@3x.png │ ├── btn_navbar_done_active.imageset │ │ ├── Contents.json │ │ ├── btn_navbar_done_active.png │ │ ├── btn_navbar_done_active@2x.png │ │ └── btn_navbar_done_active@3x.png │ ├── btn_navbar_done_inactive.imageset │ │ ├── Contents.json │ │ ├── btn_navbar_done_inactive.png │ │ ├── btn_navbar_done_inactive@2x.png │ │ └── btn_navbar_done_inactive@3x.png │ ├── btn_navbar_settings.imageset │ │ ├── Contents.json │ │ ├── btn_navbar_settings.png │ │ ├── btn_navbar_settings@2x.png │ │ └── btn_navbar_settings@3x.png │ ├── btn_streaming_share.imageset │ │ ├── Contents.json │ │ ├── btn_streaming_share.png │ │ ├── btn_streaming_share@2x.png │ │ └── btn_streaming_share@3x.png │ ├── ic_atmospheric_pressure.imageset │ │ ├── Contents.json │ │ ├── ic_atmospheric_pressure.png │ │ ├── ic_atmospheric_pressure@2x.png │ │ └── ic_atmospheric_pressure@3x.png │ ├── ic_atmospheric_pressure_inactive.imageset │ │ ├── Contents.json │ │ ├── ic_atmospheric_pressure_inactive.png │ │ ├── ic_atmospheric_pressure_inactive@2x.png │ │ └── ic_atmospheric_pressure_inactive@3x.png │ ├── ic_carbon_dioxide.imageset │ │ ├── Contents.json │ │ ├── ic_carbon_dioxide.png │ │ ├── ic_carbon_dioxide@2x.png │ │ └── ic_carbon_dioxide@3x.png │ ├── ic_carbon_dioxide_inactive.imageset │ │ ├── Contents.json │ │ ├── ic_carbon_dioxide_inactive.png │ │ ├── ic_carbon_dioxide_inactive@2x.png │ │ └── ic_carbon_dioxide_inactive@3x.png │ ├── ic_environment.imageset │ │ ├── Contents.json │ │ └── icon - motion.pdf │ ├── ic_led_color_tint.imageset │ │ ├── Contents.json │ │ ├── ic_led_color_tint.png │ │ ├── ic_led_color_tint@2x.png │ │ └── ic_led_color_tint@3x.png │ ├── ic_led_lights_off.imageset │ │ ├── Contents.json │ │ ├── ic_led_lights_off.png │ │ ├── ic_led_lights_off@2x.png │ │ └── ic_led_lights_off@3x.png │ ├── ic_led_lights_on.imageset │ │ ├── Contents.json │ │ ├── ic_led_lights_on.png │ │ ├── ic_led_lights_on@2x.png │ │ └── ic_led_lights_on@3x.png │ ├── ic_sound_level.imageset │ │ ├── Contents.json │ │ ├── ic_sound_level.png │ │ ├── ic_sound_level@2x.png │ │ └── ic_sound_level@3x.png │ ├── ic_sound_level_inactive.imageset │ │ ├── Contents.json │ │ ├── ic_sound_level_inactive.png │ │ ├── ic_sound_level_inactive@2x.png │ │ └── ic_sound_level_inactive@3x.png │ ├── ic_voc.imageset │ │ ├── Contents.json │ │ ├── ic_voc.png │ │ ├── ic_voc@2x.png │ │ └── ic_voc@3x.png │ ├── ic_voc_inactive.imageset │ │ ├── Contents.json │ │ ├── ic_voc_inactive.png │ │ ├── ic_voc_inactive@2x.png │ │ └── ic_voc_inactive@3x.png │ ├── icn_demo_ambient_light.imageset │ │ ├── Contents.json │ │ ├── icn_demo_ambient_light.png │ │ ├── icn_demo_ambient_light@2x.png │ │ └── icn_demo_ambient_light@3x.png │ ├── icn_demo_ambient_light_inactive.imageset │ │ ├── Contents.json │ │ ├── icn_demo_ambient_light_inactive.png │ │ ├── icn_demo_ambient_light_inactive@2x.png │ │ └── icn_demo_ambient_light_inactive@3x.png │ ├── icn_demo_environmental_unsel.imageset │ │ ├── Contents.json │ │ ├── icn_demo_environmental_unsel.png │ │ ├── icn_demo_environmental_unsel@2x.png │ │ └── icn_demo_environmental_unsel@3x.png │ ├── icn_demo_hall_effect_closed.imageset │ │ ├── Contents.json │ │ ├── icn_demo_hall_effect_closed.png │ │ ├── icn_demo_hall_effect_closed@2x.png │ │ └── icn_demo_hall_effect_closed@3x.png │ ├── icn_demo_hall_effect_opened.imageset │ │ ├── Contents.json │ │ ├── icn_demo_hall_effect_opened.png │ │ ├── icn_demo_hall_effect_opened@2x.png │ │ └── icn_demo_hall_effect_opened@3x.png │ ├── icn_demo_hall_effect_tampered.imageset │ │ ├── Contents.json │ │ ├── icn_demo_hall_effect_tampered.png │ │ ├── icn_demo_hall_effect_tampered@2x.png │ │ └── icn_demo_hall_effect_tampered@3x.png │ ├── icn_demo_humidity.imageset │ │ ├── Contents.json │ │ ├── icn_demo_humidity.png │ │ ├── icn_demo_humidity@2x.png │ │ └── icn_demo_humidity@3x.png │ ├── icn_demo_humidity_inactive.imageset │ │ ├── Contents.json │ │ ├── icn_demo_humidity_inactive.png │ │ ├── icn_demo_humidity_inactive@2x.png │ │ └── icn_demo_humidity_inactive@3x.png │ ├── icn_demo_io_unsel.imageset │ │ ├── Contents.json │ │ ├── icn_demo_io_unsel.png │ │ ├── icn_demo_io_unsel@2x.png │ │ └── icn_demo_io_unsel@3x.png │ ├── icn_demo_magnetic_field.imageset │ │ ├── Contents.json │ │ ├── icn_demo_magnetic_field.png │ │ ├── icn_demo_magnetic_field@2x.png │ │ └── icn_demo_magnetic_field@3x.png │ ├── icn_demo_motion_unsel.imageset │ │ ├── Contents.json │ │ ├── icn_demo_motion_unsel.png │ │ ├── icn_demo_motion_unsel@2x.png │ │ └── icn_demo_motion_unsel@3x.png │ ├── icn_demo_temp.imageset │ │ ├── Contents.json │ │ ├── icn_demo_temp.png │ │ ├── icn_demo_temp@2x.png │ │ └── icn_demo_temp@3x.png │ ├── icn_demo_temp_inactive.imageset │ │ ├── Contents.json │ │ ├── icn_demo_temp_inactive.png │ │ ├── icn_demo_temp_inactive@2x.png │ │ └── icn_demo_temp_inactive@3x.png │ ├── icn_demo_tint_circle.imageset │ │ ├── Contents.json │ │ ├── icn_demo_tint_circle.png │ │ ├── icn_demo_tint_circle@2x.png │ │ └── icn_demo_tint_circle@3x.png │ ├── icn_demo_uv_index.imageset │ │ ├── Contents.json │ │ ├── icn_demo_uv_index.png │ │ ├── icn_demo_uv_index@2x.png │ │ └── icn_demo_uv_index@3x.png │ ├── icn_demo_uv_index_inactive.imageset │ │ ├── Contents.json │ │ ├── icn_demo_uv_index_inactive.png │ │ ├── icn_demo_uv_index_inactive@2x.png │ │ └── icn_demo_uv_index_inactive@3x.png │ ├── icn_device_alert.imageset │ │ ├── Contents.json │ │ ├── icn_device_alert.png │ │ ├── icn_device_alert@2x.png │ │ └── icn_device_alert@3x.png │ ├── icn_device_signal_0bar.imageset │ │ ├── Contents.json │ │ ├── icn_device_signal_0bar.png │ │ ├── icn_device_signal_0bar@2x.png │ │ └── icn_device_signal_0bar@3x.png │ ├── icn_device_signal_1bar.imageset │ │ ├── Contents.json │ │ ├── icn_device_signal_1bar.png │ │ ├── icn_device_signal_1bar@2x.png │ │ └── icn_device_signal_1bar@3x.png │ ├── icn_device_signal_2bar.imageset │ │ ├── Contents.json │ │ ├── icn_device_signal_2bar.png │ │ ├── icn_device_signal_2bar@2x.png │ │ └── icn_device_signal_2bar@3x.png │ ├── icn_device_signal_3bar.imageset │ │ ├── Contents.json │ │ ├── icn_device_signal_3bar.png │ │ ├── icn_device_signal_3bar@2x.png │ │ └── icn_device_signal_3bar@3x.png │ ├── icn_device_signal_4bar.imageset │ │ ├── Contents.json │ │ ├── icn_device_signal_4bar.png │ │ ├── icn_device_signal_4bar@2x.png │ │ └── icn_device_signal_4bar@3x.png │ ├── icn_device_signal_5bar.imageset │ │ ├── Contents.json │ │ ├── icn_device_signal_5bar.png │ │ ├── icn_device_signal_5bar@2x.png │ │ └── icn_device_signal_5bar@3x.png │ ├── icn_history.imageset │ │ ├── Contents.json │ │ ├── icn-history.png │ │ ├── icn-history@2x.png │ │ └── icn-history@3x.png │ ├── icn_io_switch_off.imageset │ │ ├── Contents.json │ │ ├── icn_io_switch_off.png │ │ ├── icn_io_switch_off@2x.png │ │ └── icn_io_switch_off@3x.png │ ├── icn_io_switch_on.imageset │ │ ├── Contents.json │ │ ├── icn_io_switch_on.png │ │ ├── icn_io_switch_on@2x.png │ │ └── icn_io_switch_on@3x.png │ ├── icn_sensor_off.imageset │ │ ├── Contents.json │ │ ├── icn_sensor_off.png │ │ ├── icn_sensor_off@2x.png │ │ └── icn_sensor_off@3x.png │ ├── icn_sensor_on.imageset │ │ ├── Contents.json │ │ ├── icn_sensor_on.png │ │ ├── icn_sensor_on@2x.png │ │ └── icn_sensor_on@3x.png │ ├── icn_settings_arrow.imageset │ │ ├── Contents.json │ │ ├── icn_settings_arrow.png │ │ ├── icn_settings_arrow@2x.png │ │ └── icn_settings_arrow@3x.png │ ├── icn_settings_textfield_clear.imageset │ │ ├── Contents.json │ │ ├── icn_settings_textfield_clear.png │ │ ├── icn_settings_textfield_clear@2x.png │ │ └── icn_settings_textfield_clear@3x.png │ ├── icn_signal_0.imageset │ │ ├── Contents.json │ │ ├── icn_signal_0.png │ │ ├── icn_signal_0@2x.png │ │ └── icn_signal_0@3x.png │ ├── icn_signal_100.imageset │ │ ├── Contents.json │ │ ├── icn_signal_100.png │ │ ├── icn_signal_100@2x.png │ │ └── icn_signal_100@3x.png │ ├── icn_signal_25.imageset │ │ ├── Contents.json │ │ ├── icn_signal_25.png │ │ ├── icn_signal_25@2x.png │ │ └── icn_signal_25@3x.png │ ├── icn_signal_50.imageset │ │ ├── Contents.json │ │ ├── icn_signal_50.png │ │ ├── icn_signal_50@2x.png │ │ └── icn_signal_50@3x.png │ ├── icn_signal_75.imageset │ │ ├── Contents.json │ │ ├── icn_signal_75.png │ │ ├── icn_signal_75@2x.png │ │ └── icn_signal_75@3x.png │ ├── icn_signal_unknown.imageset │ │ ├── Contents.json │ │ ├── icn_signal_unknown.png │ │ ├── icn_signal_unknown@2x.png │ │ └── icn_signal_unknown@3x.png │ ├── icn_usb.imageset │ │ ├── Contents.json │ │ ├── icn_usb.png │ │ ├── icn_usb@2x.png │ │ └── icn_usb@3x.png │ ├── icon - CO2.imageset │ │ ├── Contents.json │ │ ├── icon - CO2.png │ │ ├── icon - CO2@2x.png │ │ └── icon - CO2@3x.png │ ├── icon - UV.imageset │ │ ├── Contents.json │ │ ├── icon - UV.png │ │ ├── icon - UV@2x.png │ │ └── icon - UV@3x.png │ ├── icon - VOCs.imageset │ │ ├── Contents.json │ │ ├── icon - VOCs.png │ │ ├── icon - VOCs@2x.png │ │ └── icon - VOCs@3x.png │ ├── icon - air pressure.imageset │ │ ├── Contents.json │ │ ├── icon - air pressure.png │ │ ├── icon - air pressure@2x.png │ │ └── icon - air pressure@3x.png │ ├── icon - bars - 0.imageset │ │ ├── Contents.json │ │ ├── icon - bars - 0.png │ │ ├── icon - bars - 0@2x.png │ │ └── icon - bars - 0@3x.png │ ├── icon - bars - 1.imageset │ │ ├── Contents.json │ │ ├── icon - bars - 1.png │ │ ├── icon - bars - 1@2x.png │ │ └── icon - bars - 1@3x.png │ ├── icon - bars - 2.imageset │ │ ├── Contents.json │ │ ├── icon - bars - 2.png │ │ ├── icon - bars - 2@2x.png │ │ └── icon - bars - 2@3x.png │ ├── icon - bars - 3.imageset │ │ ├── Contents.json │ │ ├── icon - bars - 3.png │ │ ├── icon - bars - 3@2x.png │ │ └── icon - bars - 3@3x.png │ ├── icon - bars - 4.imageset │ │ ├── Contents.json │ │ ├── icon - bars - 4.png │ │ ├── icon - bars - 4@2x.png │ │ └── icon - bars - 4@3x.png │ ├── icon - bars - 5.imageset │ │ ├── Contents.json │ │ ├── icon - bars - 5.png │ │ ├── icon - bars - 5@2x.png │ │ └── icon - bars - 5@3x.png │ ├── icon - battery - 0.imageset │ │ ├── Contents.json │ │ ├── icon - battery - 0.png │ │ ├── icon - battery - 0@2x.png │ │ └── icon - battery - 0@3x.png │ ├── icon - battery - 1.imageset │ │ ├── Contents.json │ │ ├── icon - battery - 1.png │ │ ├── icon - battery - 1@2x.png │ │ └── icon - battery - 1@3x.png │ ├── icon - battery - 2.imageset │ │ ├── Contents.json │ │ ├── icon - battery - 2.png │ │ ├── icon - battery - 2@2x.png │ │ └── icon - battery - 2@3x.png │ ├── icon - battery - 3.imageset │ │ ├── Contents.json │ │ ├── icon - battery - 3.png │ │ ├── icon - battery - 3@2x.png │ │ └── icon - battery - 3@3x.png │ ├── icon - battery - 4.imageset │ │ ├── Contents.json │ │ ├── icon - battery - 4.png │ │ ├── icon - battery - 4@2x.png │ │ └── icon - battery - 4@3x.png │ ├── icon - door state.imageset │ │ ├── Contents.json │ │ ├── icon - door state.png │ │ ├── icon - door state@2x.png │ │ └── icon - door state@3x.png │ ├── icon - environment.imageset │ │ ├── Contents.json │ │ ├── icon - environment.png │ │ ├── icon - environment@2x.png │ │ └── icon - environment@3x.png │ ├── icon - light.imageset │ │ ├── Contents.json │ │ ├── icon - light.png │ │ ├── icon - light@2x.png │ │ └── icon - light@3x.png │ ├── icon - magnetic field.imageset │ │ ├── Contents.json │ │ ├── icon - magnetic field.png │ │ ├── icon - magnetic field@2x.png │ │ └── icon - magnetic field@3x.png │ ├── icon - motion.imageset │ │ ├── Contents.json │ │ ├── icon - motion.png │ │ ├── icon - motion@2x.png │ │ └── icon - motion@3x.png │ ├── icon - power.imageset │ │ ├── Contents.json │ │ ├── icon - power.png │ │ ├── icon - power@2x.png │ │ └── icon - power@3x.png │ ├── icon - sound.imageset │ │ ├── Contents.json │ │ ├── icon - sound.png │ │ ├── icon - sound@2x.png │ │ └── icon - sound@3x.png │ ├── icon - temp.imageset │ │ ├── Contents.json │ │ ├── icon - temp.png │ │ ├── icon - temp@2x.png │ │ └── icon - temp@3x.png │ ├── icon - thunderboard.imageset │ │ ├── Contents.json │ │ ├── icon - thunderboard.png │ │ ├── icon - thunderboard@2x.png │ │ └── icon - thunderboard@3x.png │ ├── icon - usb - opt2.imageset │ │ ├── Contents.json │ │ ├── icon - usb - opt2.png │ │ ├── icon - usb - opt2@2x.png │ │ └── icon - usb - opt2@3x.png │ ├── interface - color line.imageset │ │ ├── Contents.json │ │ ├── interface - color line.png │ │ ├── interface - color line@2x.png │ │ └── interface - color line@3x.png │ ├── interface - gray line.imageset │ │ ├── Contents.json │ │ ├── interface - gray line.png │ │ ├── interface - gray line@2x.png │ │ └── interface - gray line@3x.png │ ├── logo.imageset │ │ ├── Component 15 – 3.png │ │ ├── Component 15 – 3@2x.png │ │ ├── Component 15 – 3@3x.png │ │ └── Contents.json │ ├── logo_splash.imageset │ │ ├── Contents.json │ │ ├── logo_splash.png │ │ ├── logo_splash@2x.png │ │ └── logo_splash@3x.png │ ├── logo_splash_mm.imageset │ │ ├── Contents.json │ │ ├── logo_splash_mm.png │ │ ├── logo_splash_mm@2x.png │ │ └── logo_splash_mm@3x.png │ ├── logo_splash_thunderboard.imageset │ │ ├── Contents.json │ │ ├── logo_splash_thunderboard.png │ │ ├── logo_splash_thunderboard@2x.png │ │ └── logo_splash_thunderboard@3x.png │ └── safari.imageset │ │ ├── Contents.json │ │ ├── safari.png │ │ ├── safari@2x.png │ │ └── safari@3x.png ├── AsyncOperation.swift ├── BarView.swift ├── Base.lproj │ ├── DemoSelection.storyboard │ └── LaunchScreen.storyboard ├── BatteryIcon.swift ├── BeaconNotificationManager.swift ├── BleDevice+DemoConfiguration.swift ├── BleDevice.swift ├── BleEnvironmentalDemoConnection.swift ├── BleIoDemoConnection.swift ├── BleManager+DiscoveryFiltering.swift ├── BleManager.swift ├── BleMotionDemoConnection.swift ├── BrightnessCell.swift ├── BrightnessSlider.swift ├── ButtonSpinner.swift ├── CBCharacteristicExtensions.swift ├── CBUUIDExtensions.swift ├── ColorCell.swift ├── ColorSlider.swift ├── ConnectedDevice.swift ├── ConnectedDeviceBarView.swift ├── ConnectedDeviceBarView.xib ├── DashboardCollectionViewCell.swift ├── DashboardCollectionViewCell.xib ├── Data+Extensions.swift ├── DemoConfiguration.swift ├── DemoConnection.swift ├── DemoHistoryPresenter.swift ├── DemoPresenter.swift ├── DemoSelectionInteraction.swift ├── DemoSelectionPresenter.swift ├── DemoSelectionViewController.swift ├── DemoTableViewCell.swift ├── DemoViewController.swift ├── Device.swift ├── DeviceConnection.swift ├── DeviceExtensions.swift ├── DeviceScanner.swift ├── DeviceSelection.storyboard ├── DeviceSelectionInteraction.swift ├── DeviceSelectionPresenter.swift ├── DeviceSelectionViewController.swift ├── DeviceTableViewCell.swift ├── DeviceTransportDelegate.swift ├── DispatchBlockHelpers.swift ├── EnvironmentCollectionViewCell.swift ├── EnvironmentDemoCollectionViewCell.swift ├── EnvironmentDemoCollectionViewDataSource.swift ├── EnvironmentDemoCollectionViewLayout.swift ├── EnvironmentDemoInteraction.swift ├── EnvironmentDemoViewController.storyboard ├── EnvironmentDemoViewController.swift ├── EnvironmentDemoViewModel.swift ├── EnvironmentalDemoConnection.swift ├── HueGradientView.swift ├── Info.plist ├── IoDemoConnection.swift ├── IoDemoInteraction.swift ├── IoDemoInteractionProtocol.swift ├── IoDemoViewController.storyboard ├── IoDemoViewController.swift ├── IsgdShortener.swift ├── LightsCell.swift ├── Localizable.strings ├── Logging.swift ├── Models.scnassets │ ├── -o_0.04_0_BRD4184A_LowPoly_Back.jpg │ ├── BRD4184A_LowPoly.dae │ ├── BRD4184A_LowPoly.mtl │ ├── BRD4184A_LowPoly.obj │ ├── BRD4184A_LowPoly.scn │ ├── BRD4184A_LowPoly_Back.jpg │ ├── BRD4184A_LowPoly_Front.jpg │ ├── EFR23_Chip_SiLabs_Logo.jpg │ └── antenna.jpg ├── Models │ ├── React-Board │ │ ├── Gecko_Module_Shield_Update_Lowpoly.jpg │ │ ├── Thunderboard_LowPoly_Back.jpg │ │ ├── Thunderboard_LowPoly_Front.jpg │ │ ├── Thunderboard_React_031616.mb │ │ ├── Thunderboard_React_031716.fbx │ │ ├── Thunderboard_React_031716_obj.mtl │ │ └── Thunderboard_React_031716_obj.obj │ ├── React-Derby │ │ └── SL_Derby_Assembly_1116_centered.obj │ └── Sense-Board │ │ ├── BRD4160_Lowpoly_Face.jpg │ │ ├── BRD4160_NewFrontText.jpg │ │ ├── BRD4160_NewGoldBackText.jpg │ │ ├── TBSense_Rev_Lowpoly_2.mtl │ │ ├── TBSense_Rev_Lowpoly_2.obj │ │ └── antenna.jpg ├── MotionBoardDemoViewController.storyboard ├── MotionBoardDemoViewController.swift ├── MotionCarDemoViewController.storyboard ├── MotionCarDemoViewController.swift ├── MotionCell.swift ├── MotionDemoCalibrateButton.swift ├── MotionDemoConnection.swift ├── MotionDemoInteraction.swift ├── MotionDemoView.swift ├── MotionDemoViewController.swift ├── MotionSense84BoardDemoViewController.swift ├── MotionSenseBoardDemoViewController.storyboard ├── MotionSenseBoardDemoViewController.swift ├── NSDataExtensions.swift ├── NavBar.swift ├── NavigationController.swift ├── NotificationDevice.swift ├── NotificationManager.swift ├── NotificationSettingsDeviceCell.swift ├── NotificationSettingsInteraction.swift ├── NotificationSettingsViewController.swift ├── OpenSans-Bold.ttf ├── OpenSans-Light.ttf ├── OpenSans-Regular.ttf ├── RGBCell.swift ├── Roboto-Black.ttf ├── Roboto-BlackItalic.ttf ├── Roboto-Bold.ttf ├── Roboto-BoldItalic.ttf ├── Roboto-Italic.ttf ├── Roboto-Light.ttf ├── Roboto-LightItalic.ttf ├── Roboto-Medium.ttf ├── Roboto-MediumItalic.ttf ├── Roboto-Regular.ttf ├── Roboto-Thin.ttf ├── Roboto-ThinItalic.ttf ├── RoundCell.swift ├── RoundView.swift ├── RoundedButton.swift ├── SILAppSelectionHelpViewController.h ├── SILAppSelectionHelpViewController.m ├── SILAppSelectionHelpViewController.xib ├── SL_Derby_Assembly_1116_centered.obj ├── SafariActivity.swift ├── SettingsNavigationController.swift ├── SettingsPresenter.swift ├── SettingsTableViewHeader.swift ├── SettingsViewCell.swift ├── SettingsViewController.storyboard ├── SettingsViewController.swift ├── SharingActivityProvider.swift ├── SimulatedDevice.swift ├── SimulatedDeviceScanner.swift ├── SimulatedEnvironmentalDemoConnection.swift ├── SimulatedIoDemoConnection.swift ├── SimulatedMotionDemoConnection.swift ├── SimulatedNotificationManager.swift ├── Spinner.swift ├── StrengthCell.swift ├── Style.swift ├── StyledLabel.swift ├── SwitchStatusCell.swift ├── SwitchView.swift ├── Throttle.swift ├── ThunderBoardErrors.swift ├── ThunderBoardSettings.swift ├── ThunderBoardTypes.swift ├── Thunderboard-Bridging-Header.h ├── UIApplication+Version.swift ├── UIDevice+extensions.swift ├── UIImage+Color.swift ├── UITableView+Extensions.swift ├── UIView+Style.swift ├── UIViewController+Extensions.swift ├── UrlFactory.swift ├── UrlShortener.swift ├── ViewControllerFactory.swift ├── WYPopoverController+SILHelpers.h ├── WYPopoverController+SILHelpers.m └── WeakTimer.swift ├── Thunderboard.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── Thunderboard.xcscheme ├── Thunderboard.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── ThunderboardTests ├── Info.plist └── ThunderboardTests.swift /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/.DS_Store -------------------------------------------------------------------------------- /External/Firebase.framework/Firebase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/External/Firebase.framework/Firebase -------------------------------------------------------------------------------- /External/Firebase.framework/Headers/FirebaseServerValue.h: -------------------------------------------------------------------------------- 1 | @interface FirebaseServerValue : NSObject 2 | 3 | + (NSDictionary *) timestamp; 4 | 5 | @end -------------------------------------------------------------------------------- /External/Firebase.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/External/Firebase.framework/Info.plist -------------------------------------------------------------------------------- /External/Firebase.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Firebase { 2 | umbrella header "Firebase.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'Thunderboard' do 5 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | # Pods for Thunderboard 9 | pod 'RxSwift', '~> 6.2.0' 10 | pod 'RxCocoa', '~> 6.2.0' 11 | pod 'WYPopoverController' 12 | end 13 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - RxCocoa (6.2.0): 3 | - RxRelay (= 6.2.0) 4 | - RxSwift (= 6.2.0) 5 | - RxRelay (6.2.0): 6 | - RxSwift (= 6.2.0) 7 | - RxSwift (6.2.0) 8 | - WYPopoverController (0.3.9) 9 | 10 | DEPENDENCIES: 11 | - RxCocoa (~> 6.2.0) 12 | - RxSwift (~> 6.2.0) 13 | - WYPopoverController 14 | 15 | SPEC REPOS: 16 | trunk: 17 | - RxCocoa 18 | - RxRelay 19 | - RxSwift 20 | - WYPopoverController 21 | 22 | SPEC CHECKSUMS: 23 | RxCocoa: 4baf94bb35f2c0ab31bc0cb9f1900155f646ba42 24 | RxRelay: e72dbfd157807478401ef1982e1c61c945c94b2f 25 | RxSwift: d356ab7bee873611322f134c5f9ef379fa183d8f 26 | WYPopoverController: a9db25ac2841a686acdc0f3a99bdb21545db32f4 27 | 28 | PODFILE CHECKSUM: 847eb703c22a5edabc1094486bd4abe9c8938753 29 | 30 | COCOAPODS: 1.10.1 31 | -------------------------------------------------------------------------------- /Resources/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /Resources/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/OpenSans-Light.ttf -------------------------------------------------------------------------------- /Resources/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Resources/ss_demo_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_demo_io.png -------------------------------------------------------------------------------- /Resources/ss_demo_io_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_demo_io_sm.png -------------------------------------------------------------------------------- /Resources/ss_demo_motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_demo_motion.png -------------------------------------------------------------------------------- /Resources/ss_demo_motion_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_demo_motion_sm.png -------------------------------------------------------------------------------- /Resources/ss_demo_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_demo_selection.png -------------------------------------------------------------------------------- /Resources/ss_demo_selection_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_demo_selection_sm.png -------------------------------------------------------------------------------- /Resources/ss_device_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_device_selection.png -------------------------------------------------------------------------------- /Resources/ss_device_selection_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_device_selection_sm.png -------------------------------------------------------------------------------- /Resources/ss_motion_streaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_motion_streaming.png -------------------------------------------------------------------------------- /Resources/ss_motion_streaming_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/Resources/ss_motion_streaming_sm.png -------------------------------------------------------------------------------- /ThunderBoard/.gitignore: -------------------------------------------------------------------------------- 1 | #protect 2 | !*.obj -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@1x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-20x20@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-20x20@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-29x29@1x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-29x29@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-29x29@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-40x40@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-40x40@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-60x60@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/AppIcon.appiconset/Thunderboard-60x60@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/Mask Group 2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Mask Group 2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "Mask Group 2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "Mask Group 2@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/Mask Group 2.imageset/Mask Group 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/Mask Group 2.imageset/Mask Group 2.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/Mask Group 2.imageset/Mask Group 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/Mask Group 2.imageset/Mask Group 2@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/Mask Group 2.imageset/Mask Group 2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/Mask Group 2.imageset/Mask Group 2@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_blue_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_io_light_blue_on.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_io_light_blue_on@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_io_light_blue_on@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_blue_on.imageset/btn_io_light_blue_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_blue_on.imageset/btn_io_light_blue_on.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_blue_on.imageset/btn_io_light_blue_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_blue_on.imageset/btn_io_light_blue_on@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_blue_on.imageset/btn_io_light_blue_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_blue_on.imageset/btn_io_light_blue_on@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_green_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_io_light_green_on.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_io_light_green_on@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_io_light_green_on@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_green_on.imageset/btn_io_light_green_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_green_on.imageset/btn_io_light_green_on.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_green_on.imageset/btn_io_light_green_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_green_on.imageset/btn_io_light_green_on@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_green_on.imageset/btn_io_light_green_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_green_on.imageset/btn_io_light_green_on@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_off.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_io_light_off.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_io_light_off@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_io_light_off@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_off.imageset/btn_io_light_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_off.imageset/btn_io_light_off.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_off.imageset/btn_io_light_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_off.imageset/btn_io_light_off@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_off.imageset/btn_io_light_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_off.imageset/btn_io_light_off@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_red_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_io_light_red_on.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_io_light_red_on@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_io_light_red_on@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_red_on.imageset/btn_io_light_red_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_red_on.imageset/btn_io_light_red_on.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_red_on.imageset/btn_io_light_red_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_red_on.imageset/btn_io_light_red_on@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_io_light_red_on.imageset/btn_io_light_red_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_io_light_red_on.imageset/btn_io_light_red_on@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_navbar_back.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_navbar_back@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_navbar_back@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_back.imageset/btn_navbar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_back.imageset/btn_navbar_back.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_back.imageset/btn_navbar_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_back.imageset/btn_navbar_back@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_back.imageset/btn_navbar_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_back.imageset/btn_navbar_back@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_navbar_close.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_navbar_close@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_navbar_close@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_close.imageset/btn_navbar_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_close.imageset/btn_navbar_close.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_close.imageset/btn_navbar_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_close.imageset/btn_navbar_close@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_close.imageset/btn_navbar_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_close.imageset/btn_navbar_close@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_done_active.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_navbar_done_active.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_navbar_done_active@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_navbar_done_active@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_done_active.imageset/btn_navbar_done_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_done_active.imageset/btn_navbar_done_active.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_done_active.imageset/btn_navbar_done_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_done_active.imageset/btn_navbar_done_active@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_done_active.imageset/btn_navbar_done_active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_done_active.imageset/btn_navbar_done_active@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_done_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_navbar_done_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_navbar_done_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_navbar_done_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_done_inactive.imageset/btn_navbar_done_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_done_inactive.imageset/btn_navbar_done_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_done_inactive.imageset/btn_navbar_done_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_done_inactive.imageset/btn_navbar_done_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_done_inactive.imageset/btn_navbar_done_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_done_inactive.imageset/btn_navbar_done_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_settings.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_navbar_settings.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_navbar_settings@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_navbar_settings@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_settings.imageset/btn_navbar_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_settings.imageset/btn_navbar_settings.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_settings.imageset/btn_navbar_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_settings.imageset/btn_navbar_settings@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_navbar_settings.imageset/btn_navbar_settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_navbar_settings.imageset/btn_navbar_settings@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_streaming_share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn_streaming_share.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn_streaming_share@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn_streaming_share@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_streaming_share.imageset/btn_streaming_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_streaming_share.imageset/btn_streaming_share.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_streaming_share.imageset/btn_streaming_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_streaming_share.imageset/btn_streaming_share@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/btn_streaming_share.imageset/btn_streaming_share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/btn_streaming_share.imageset/btn_streaming_share@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_atmospheric_pressure.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_atmospheric_pressure.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_atmospheric_pressure@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_atmospheric_pressure@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_atmospheric_pressure.imageset/ic_atmospheric_pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_atmospheric_pressure.imageset/ic_atmospheric_pressure.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_atmospheric_pressure.imageset/ic_atmospheric_pressure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_atmospheric_pressure.imageset/ic_atmospheric_pressure@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_atmospheric_pressure.imageset/ic_atmospheric_pressure@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_atmospheric_pressure.imageset/ic_atmospheric_pressure@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_atmospheric_pressure_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_atmospheric_pressure_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_atmospheric_pressure_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_atmospheric_pressure_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_atmospheric_pressure_inactive.imageset/ic_atmospheric_pressure_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_atmospheric_pressure_inactive.imageset/ic_atmospheric_pressure_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_atmospheric_pressure_inactive.imageset/ic_atmospheric_pressure_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_atmospheric_pressure_inactive.imageset/ic_atmospheric_pressure_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_atmospheric_pressure_inactive.imageset/ic_atmospheric_pressure_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_atmospheric_pressure_inactive.imageset/ic_atmospheric_pressure_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_carbon_dioxide.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_carbon_dioxide.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_carbon_dioxide@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_carbon_dioxide@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_carbon_dioxide.imageset/ic_carbon_dioxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_carbon_dioxide.imageset/ic_carbon_dioxide.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_carbon_dioxide.imageset/ic_carbon_dioxide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_carbon_dioxide.imageset/ic_carbon_dioxide@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_carbon_dioxide.imageset/ic_carbon_dioxide@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_carbon_dioxide.imageset/ic_carbon_dioxide@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_carbon_dioxide_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_carbon_dioxide_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_carbon_dioxide_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_carbon_dioxide_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_carbon_dioxide_inactive.imageset/ic_carbon_dioxide_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_carbon_dioxide_inactive.imageset/ic_carbon_dioxide_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_carbon_dioxide_inactive.imageset/ic_carbon_dioxide_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_carbon_dioxide_inactive.imageset/ic_carbon_dioxide_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_carbon_dioxide_inactive.imageset/ic_carbon_dioxide_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_carbon_dioxide_inactive.imageset/ic_carbon_dioxide_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_environment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "icon - motion.pdf", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_environment.imageset/icon - motion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_environment.imageset/icon - motion.pdf -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_color_tint.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_led_color_tint.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_led_color_tint@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_led_color_tint@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_color_tint.imageset/ic_led_color_tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_color_tint.imageset/ic_led_color_tint.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_color_tint.imageset/ic_led_color_tint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_color_tint.imageset/ic_led_color_tint@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_color_tint.imageset/ic_led_color_tint@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_color_tint.imageset/ic_led_color_tint@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_lights_off.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_led_lights_off.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_led_lights_off@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_led_lights_off@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_lights_off.imageset/ic_led_lights_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_lights_off.imageset/ic_led_lights_off.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_lights_off.imageset/ic_led_lights_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_lights_off.imageset/ic_led_lights_off@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_lights_off.imageset/ic_led_lights_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_lights_off.imageset/ic_led_lights_off@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_lights_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_led_lights_on.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_led_lights_on@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_led_lights_on@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_lights_on.imageset/ic_led_lights_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_lights_on.imageset/ic_led_lights_on.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_lights_on.imageset/ic_led_lights_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_lights_on.imageset/ic_led_lights_on@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_led_lights_on.imageset/ic_led_lights_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_led_lights_on.imageset/ic_led_lights_on@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_sound_level.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_sound_level.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_sound_level@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_sound_level@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_sound_level.imageset/ic_sound_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_sound_level.imageset/ic_sound_level.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_sound_level.imageset/ic_sound_level@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_sound_level.imageset/ic_sound_level@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_sound_level.imageset/ic_sound_level@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_sound_level.imageset/ic_sound_level@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_sound_level_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_sound_level_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_sound_level_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_sound_level_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_sound_level_inactive.imageset/ic_sound_level_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_sound_level_inactive.imageset/ic_sound_level_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_sound_level_inactive.imageset/ic_sound_level_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_sound_level_inactive.imageset/ic_sound_level_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_sound_level_inactive.imageset/ic_sound_level_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_sound_level_inactive.imageset/ic_sound_level_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_voc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_voc.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_voc@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_voc@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_voc.imageset/ic_voc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_voc.imageset/ic_voc.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_voc.imageset/ic_voc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_voc.imageset/ic_voc@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_voc.imageset/ic_voc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_voc.imageset/ic_voc@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_voc_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ic_voc_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ic_voc_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "ic_voc_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_voc_inactive.imageset/ic_voc_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_voc_inactive.imageset/ic_voc_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_voc_inactive.imageset/ic_voc_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_voc_inactive.imageset/ic_voc_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/ic_voc_inactive.imageset/ic_voc_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/ic_voc_inactive.imageset/ic_voc_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_ambient_light.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_ambient_light.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_ambient_light@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_ambient_light@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_ambient_light.imageset/icn_demo_ambient_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_ambient_light.imageset/icn_demo_ambient_light.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_ambient_light.imageset/icn_demo_ambient_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_ambient_light.imageset/icn_demo_ambient_light@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_ambient_light.imageset/icn_demo_ambient_light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_ambient_light.imageset/icn_demo_ambient_light@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_ambient_light_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_ambient_light_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_ambient_light_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_ambient_light_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_ambient_light_inactive.imageset/icn_demo_ambient_light_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_ambient_light_inactive.imageset/icn_demo_ambient_light_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_ambient_light_inactive.imageset/icn_demo_ambient_light_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_ambient_light_inactive.imageset/icn_demo_ambient_light_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_ambient_light_inactive.imageset/icn_demo_ambient_light_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_ambient_light_inactive.imageset/icn_demo_ambient_light_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_environmental_unsel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_environmental_unsel.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_environmental_unsel@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_environmental_unsel@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_environmental_unsel.imageset/icn_demo_environmental_unsel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_environmental_unsel.imageset/icn_demo_environmental_unsel.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_environmental_unsel.imageset/icn_demo_environmental_unsel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_environmental_unsel.imageset/icn_demo_environmental_unsel@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_environmental_unsel.imageset/icn_demo_environmental_unsel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_environmental_unsel.imageset/icn_demo_environmental_unsel@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_closed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_hall_effect_closed.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_hall_effect_closed@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_hall_effect_closed@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_closed.imageset/icn_demo_hall_effect_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_closed.imageset/icn_demo_hall_effect_closed.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_closed.imageset/icn_demo_hall_effect_closed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_closed.imageset/icn_demo_hall_effect_closed@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_closed.imageset/icn_demo_hall_effect_closed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_closed.imageset/icn_demo_hall_effect_closed@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_opened.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_hall_effect_opened.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_hall_effect_opened@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_hall_effect_opened@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_opened.imageset/icn_demo_hall_effect_opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_opened.imageset/icn_demo_hall_effect_opened.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_opened.imageset/icn_demo_hall_effect_opened@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_opened.imageset/icn_demo_hall_effect_opened@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_opened.imageset/icn_demo_hall_effect_opened@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_opened.imageset/icn_demo_hall_effect_opened@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_tampered.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_hall_effect_tampered.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_hall_effect_tampered@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_hall_effect_tampered@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_tampered.imageset/icn_demo_hall_effect_tampered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_tampered.imageset/icn_demo_hall_effect_tampered.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_tampered.imageset/icn_demo_hall_effect_tampered@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_tampered.imageset/icn_demo_hall_effect_tampered@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_hall_effect_tampered.imageset/icn_demo_hall_effect_tampered@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_hall_effect_tampered.imageset/icn_demo_hall_effect_tampered@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_humidity.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_humidity.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_humidity@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_humidity@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_humidity.imageset/icn_demo_humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_humidity.imageset/icn_demo_humidity.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_humidity.imageset/icn_demo_humidity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_humidity.imageset/icn_demo_humidity@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_humidity.imageset/icn_demo_humidity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_humidity.imageset/icn_demo_humidity@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_humidity_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_humidity_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_humidity_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_humidity_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_humidity_inactive.imageset/icn_demo_humidity_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_humidity_inactive.imageset/icn_demo_humidity_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_humidity_inactive.imageset/icn_demo_humidity_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_humidity_inactive.imageset/icn_demo_humidity_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_humidity_inactive.imageset/icn_demo_humidity_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_humidity_inactive.imageset/icn_demo_humidity_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_io_unsel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_io_unsel.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_io_unsel@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_io_unsel@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_io_unsel.imageset/icn_demo_io_unsel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_io_unsel.imageset/icn_demo_io_unsel.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_io_unsel.imageset/icn_demo_io_unsel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_io_unsel.imageset/icn_demo_io_unsel@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_io_unsel.imageset/icn_demo_io_unsel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_io_unsel.imageset/icn_demo_io_unsel@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_magnetic_field.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_magnetic_field.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_magnetic_field@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_magnetic_field@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_magnetic_field.imageset/icn_demo_magnetic_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_magnetic_field.imageset/icn_demo_magnetic_field.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_magnetic_field.imageset/icn_demo_magnetic_field@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_magnetic_field.imageset/icn_demo_magnetic_field@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_magnetic_field.imageset/icn_demo_magnetic_field@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_magnetic_field.imageset/icn_demo_magnetic_field@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_motion_unsel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_motion_unsel.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_motion_unsel@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_motion_unsel@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_motion_unsel.imageset/icn_demo_motion_unsel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_motion_unsel.imageset/icn_demo_motion_unsel.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_motion_unsel.imageset/icn_demo_motion_unsel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_motion_unsel.imageset/icn_demo_motion_unsel@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_motion_unsel.imageset/icn_demo_motion_unsel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_motion_unsel.imageset/icn_demo_motion_unsel@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_temp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_temp.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_temp@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_temp@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_temp.imageset/icn_demo_temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_temp.imageset/icn_demo_temp.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_temp.imageset/icn_demo_temp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_temp.imageset/icn_demo_temp@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_temp.imageset/icn_demo_temp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_temp.imageset/icn_demo_temp@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_temp_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_temp_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_temp_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_temp_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_temp_inactive.imageset/icn_demo_temp_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_temp_inactive.imageset/icn_demo_temp_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_temp_inactive.imageset/icn_demo_temp_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_temp_inactive.imageset/icn_demo_temp_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_temp_inactive.imageset/icn_demo_temp_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_temp_inactive.imageset/icn_demo_temp_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_tint_circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_tint_circle.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_tint_circle@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_tint_circle@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_tint_circle.imageset/icn_demo_tint_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_tint_circle.imageset/icn_demo_tint_circle.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_tint_circle.imageset/icn_demo_tint_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_tint_circle.imageset/icn_demo_tint_circle@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_tint_circle.imageset/icn_demo_tint_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_tint_circle.imageset/icn_demo_tint_circle@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_uv_index.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_uv_index.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_uv_index@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_uv_index@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_uv_index.imageset/icn_demo_uv_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_uv_index.imageset/icn_demo_uv_index.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_uv_index.imageset/icn_demo_uv_index@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_uv_index.imageset/icn_demo_uv_index@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_uv_index.imageset/icn_demo_uv_index@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_uv_index.imageset/icn_demo_uv_index@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_uv_index_inactive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_demo_uv_index_inactive.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_demo_uv_index_inactive@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_demo_uv_index_inactive@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_uv_index_inactive.imageset/icn_demo_uv_index_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_uv_index_inactive.imageset/icn_demo_uv_index_inactive.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_uv_index_inactive.imageset/icn_demo_uv_index_inactive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_uv_index_inactive.imageset/icn_demo_uv_index_inactive@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_demo_uv_index_inactive.imageset/icn_demo_uv_index_inactive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_demo_uv_index_inactive.imageset/icn_demo_uv_index_inactive@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_alert.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_device_alert.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_device_alert@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_device_alert@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_alert.imageset/icn_device_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_alert.imageset/icn_device_alert.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_alert.imageset/icn_device_alert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_alert.imageset/icn_device_alert@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_alert.imageset/icn_device_alert@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_alert.imageset/icn_device_alert@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_0bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_device_signal_0bar.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_device_signal_0bar@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_device_signal_0bar@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_0bar.imageset/icn_device_signal_0bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_0bar.imageset/icn_device_signal_0bar.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_0bar.imageset/icn_device_signal_0bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_0bar.imageset/icn_device_signal_0bar@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_0bar.imageset/icn_device_signal_0bar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_0bar.imageset/icn_device_signal_0bar@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_1bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_device_signal_1bar.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_device_signal_1bar@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_device_signal_1bar@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_1bar.imageset/icn_device_signal_1bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_1bar.imageset/icn_device_signal_1bar.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_1bar.imageset/icn_device_signal_1bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_1bar.imageset/icn_device_signal_1bar@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_1bar.imageset/icn_device_signal_1bar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_1bar.imageset/icn_device_signal_1bar@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_2bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_device_signal_2bar.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_device_signal_2bar@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_device_signal_2bar@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_2bar.imageset/icn_device_signal_2bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_2bar.imageset/icn_device_signal_2bar.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_2bar.imageset/icn_device_signal_2bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_2bar.imageset/icn_device_signal_2bar@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_2bar.imageset/icn_device_signal_2bar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_2bar.imageset/icn_device_signal_2bar@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_3bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_device_signal_3bar.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_device_signal_3bar@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_device_signal_3bar@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_3bar.imageset/icn_device_signal_3bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_3bar.imageset/icn_device_signal_3bar.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_3bar.imageset/icn_device_signal_3bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_3bar.imageset/icn_device_signal_3bar@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_3bar.imageset/icn_device_signal_3bar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_3bar.imageset/icn_device_signal_3bar@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_4bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_device_signal_4bar.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_device_signal_4bar@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_device_signal_4bar@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_4bar.imageset/icn_device_signal_4bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_4bar.imageset/icn_device_signal_4bar.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_4bar.imageset/icn_device_signal_4bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_4bar.imageset/icn_device_signal_4bar@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_4bar.imageset/icn_device_signal_4bar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_4bar.imageset/icn_device_signal_4bar@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_5bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_device_signal_5bar.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_device_signal_5bar@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_device_signal_5bar@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_5bar.imageset/icn_device_signal_5bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_5bar.imageset/icn_device_signal_5bar.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_5bar.imageset/icn_device_signal_5bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_5bar.imageset/icn_device_signal_5bar@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_device_signal_5bar.imageset/icn_device_signal_5bar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_device_signal_5bar.imageset/icn_device_signal_5bar@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_history.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn-history.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn-history@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn-history@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_history.imageset/icn-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_history.imageset/icn-history.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_history.imageset/icn-history@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_history.imageset/icn-history@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_history.imageset/icn-history@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_history.imageset/icn-history@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_io_switch_off.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_io_switch_off.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_io_switch_off@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_io_switch_off@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_io_switch_off.imageset/icn_io_switch_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_io_switch_off.imageset/icn_io_switch_off.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_io_switch_off.imageset/icn_io_switch_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_io_switch_off.imageset/icn_io_switch_off@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_io_switch_off.imageset/icn_io_switch_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_io_switch_off.imageset/icn_io_switch_off@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_io_switch_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_io_switch_on.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_io_switch_on@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_io_switch_on@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_io_switch_on.imageset/icn_io_switch_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_io_switch_on.imageset/icn_io_switch_on.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_io_switch_on.imageset/icn_io_switch_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_io_switch_on.imageset/icn_io_switch_on@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_io_switch_on.imageset/icn_io_switch_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_io_switch_on.imageset/icn_io_switch_on@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_sensor_off.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_sensor_off.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_sensor_off@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_sensor_off@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_sensor_off.imageset/icn_sensor_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_sensor_off.imageset/icn_sensor_off.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_sensor_off.imageset/icn_sensor_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_sensor_off.imageset/icn_sensor_off@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_sensor_off.imageset/icn_sensor_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_sensor_off.imageset/icn_sensor_off@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_sensor_on.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_sensor_on.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_sensor_on@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_sensor_on@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_sensor_on.imageset/icn_sensor_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_sensor_on.imageset/icn_sensor_on.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_sensor_on.imageset/icn_sensor_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_sensor_on.imageset/icn_sensor_on@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_sensor_on.imageset/icn_sensor_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_sensor_on.imageset/icn_sensor_on@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_settings_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_settings_arrow.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_settings_arrow@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_settings_arrow@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_settings_arrow.imageset/icn_settings_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_settings_arrow.imageset/icn_settings_arrow.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_settings_arrow.imageset/icn_settings_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_settings_arrow.imageset/icn_settings_arrow@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_settings_arrow.imageset/icn_settings_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_settings_arrow.imageset/icn_settings_arrow@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_settings_textfield_clear.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_settings_textfield_clear.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_settings_textfield_clear@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_settings_textfield_clear@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_settings_textfield_clear.imageset/icn_settings_textfield_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_settings_textfield_clear.imageset/icn_settings_textfield_clear.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_settings_textfield_clear.imageset/icn_settings_textfield_clear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_settings_textfield_clear.imageset/icn_settings_textfield_clear@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_settings_textfield_clear.imageset/icn_settings_textfield_clear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_settings_textfield_clear.imageset/icn_settings_textfield_clear@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_signal_0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_signal_0@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_signal_0@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_0.imageset/icn_signal_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_0.imageset/icn_signal_0.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_0.imageset/icn_signal_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_0.imageset/icn_signal_0@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_0.imageset/icn_signal_0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_0.imageset/icn_signal_0@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_100.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_signal_100.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_signal_100@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_signal_100@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_100.imageset/icn_signal_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_100.imageset/icn_signal_100.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_100.imageset/icn_signal_100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_100.imageset/icn_signal_100@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_100.imageset/icn_signal_100@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_100.imageset/icn_signal_100@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_25.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_signal_25.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_signal_25@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_signal_25@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_25.imageset/icn_signal_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_25.imageset/icn_signal_25.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_25.imageset/icn_signal_25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_25.imageset/icn_signal_25@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_25.imageset/icn_signal_25@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_25.imageset/icn_signal_25@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_50.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_signal_50.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_signal_50@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_signal_50@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_50.imageset/icn_signal_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_50.imageset/icn_signal_50.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_50.imageset/icn_signal_50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_50.imageset/icn_signal_50@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_50.imageset/icn_signal_50@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_50.imageset/icn_signal_50@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_75.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_signal_75.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_signal_75@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_signal_75@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_75.imageset/icn_signal_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_75.imageset/icn_signal_75.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_75.imageset/icn_signal_75@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_75.imageset/icn_signal_75@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_75.imageset/icn_signal_75@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_75.imageset/icn_signal_75@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_unknown.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_signal_unknown.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_signal_unknown@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_signal_unknown@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_unknown.imageset/icn_signal_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_unknown.imageset/icn_signal_unknown.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_unknown.imageset/icn_signal_unknown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_unknown.imageset/icn_signal_unknown@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_signal_unknown.imageset/icn_signal_unknown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_signal_unknown.imageset/icn_signal_unknown@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_usb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icn_usb.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icn_usb@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icn_usb@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_usb.imageset/icn_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_usb.imageset/icn_usb.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_usb.imageset/icn_usb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_usb.imageset/icn_usb@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icn_usb.imageset/icn_usb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icn_usb.imageset/icn_usb@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - CO2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - CO2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - CO2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - CO2@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - CO2.imageset/icon - CO2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - CO2.imageset/icon - CO2.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - CO2.imageset/icon - CO2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - CO2.imageset/icon - CO2@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - CO2.imageset/icon - CO2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - CO2.imageset/icon - CO2@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - UV.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - UV.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - UV@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - UV@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - UV.imageset/icon - UV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - UV.imageset/icon - UV.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - UV.imageset/icon - UV@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - UV.imageset/icon - UV@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - UV.imageset/icon - UV@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - UV.imageset/icon - UV@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - VOCs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - VOCs.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - VOCs@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - VOCs@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - VOCs.imageset/icon - VOCs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - VOCs.imageset/icon - VOCs.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - VOCs.imageset/icon - VOCs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - VOCs.imageset/icon - VOCs@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - VOCs.imageset/icon - VOCs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - VOCs.imageset/icon - VOCs@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - air pressure.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - air pressure.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - air pressure@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - air pressure@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - air pressure.imageset/icon - air pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - air pressure.imageset/icon - air pressure.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - air pressure.imageset/icon - air pressure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - air pressure.imageset/icon - air pressure@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - air pressure.imageset/icon - air pressure@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - air pressure.imageset/icon - air pressure@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - bars - 0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - bars - 0@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - bars - 0@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 0.imageset/icon - bars - 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 0.imageset/icon - bars - 0.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 0.imageset/icon - bars - 0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 0.imageset/icon - bars - 0@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 0.imageset/icon - bars - 0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 0.imageset/icon - bars - 0@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - bars - 1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - bars - 1@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - bars - 1@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 1.imageset/icon - bars - 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 1.imageset/icon - bars - 1.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 1.imageset/icon - bars - 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 1.imageset/icon - bars - 1@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 1.imageset/icon - bars - 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 1.imageset/icon - bars - 1@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - bars - 2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - bars - 2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - bars - 2@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 2.imageset/icon - bars - 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 2.imageset/icon - bars - 2.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 2.imageset/icon - bars - 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 2.imageset/icon - bars - 2@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 2.imageset/icon - bars - 2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 2.imageset/icon - bars - 2@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - bars - 3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - bars - 3@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - bars - 3@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 3.imageset/icon - bars - 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 3.imageset/icon - bars - 3.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 3.imageset/icon - bars - 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 3.imageset/icon - bars - 3@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 3.imageset/icon - bars - 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 3.imageset/icon - bars - 3@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - bars - 4.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - bars - 4@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - bars - 4@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 4.imageset/icon - bars - 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 4.imageset/icon - bars - 4.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 4.imageset/icon - bars - 4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 4.imageset/icon - bars - 4@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 4.imageset/icon - bars - 4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 4.imageset/icon - bars - 4@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - bars - 5.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - bars - 5@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - bars - 5@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 5.imageset/icon - bars - 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 5.imageset/icon - bars - 5.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 5.imageset/icon - bars - 5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 5.imageset/icon - bars - 5@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - bars - 5.imageset/icon - bars - 5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - bars - 5.imageset/icon - bars - 5@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - battery - 0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - battery - 0@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - battery - 0@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 0.imageset/icon - battery - 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 0.imageset/icon - battery - 0.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 0.imageset/icon - battery - 0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 0.imageset/icon - battery - 0@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 0.imageset/icon - battery - 0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 0.imageset/icon - battery - 0@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - battery - 1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - battery - 1@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - battery - 1@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 1.imageset/icon - battery - 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 1.imageset/icon - battery - 1.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 1.imageset/icon - battery - 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 1.imageset/icon - battery - 1@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 1.imageset/icon - battery - 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 1.imageset/icon - battery - 1@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - battery - 2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - battery - 2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - battery - 2@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 2.imageset/icon - battery - 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 2.imageset/icon - battery - 2.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 2.imageset/icon - battery - 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 2.imageset/icon - battery - 2@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 2.imageset/icon - battery - 2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 2.imageset/icon - battery - 2@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - battery - 3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - battery - 3@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - battery - 3@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 3.imageset/icon - battery - 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 3.imageset/icon - battery - 3.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 3.imageset/icon - battery - 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 3.imageset/icon - battery - 3@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 3.imageset/icon - battery - 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 3.imageset/icon - battery - 3@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - battery - 4.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - battery - 4@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - battery - 4@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 4.imageset/icon - battery - 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 4.imageset/icon - battery - 4.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 4.imageset/icon - battery - 4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 4.imageset/icon - battery - 4@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - battery - 4.imageset/icon - battery - 4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - battery - 4.imageset/icon - battery - 4@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - door state.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - door state.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - door state@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - door state@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - door state.imageset/icon - door state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - door state.imageset/icon - door state.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - door state.imageset/icon - door state@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - door state.imageset/icon - door state@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - door state.imageset/icon - door state@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - door state.imageset/icon - door state@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - environment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - environment.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - environment@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - environment@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - environment.imageset/icon - environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - environment.imageset/icon - environment.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - environment.imageset/icon - environment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - environment.imageset/icon - environment@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - environment.imageset/icon - environment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - environment.imageset/icon - environment@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - light.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - light.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - light@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - light@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - light.imageset/icon - light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - light.imageset/icon - light.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - light.imageset/icon - light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - light.imageset/icon - light@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - light.imageset/icon - light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - light.imageset/icon - light@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - magnetic field.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - magnetic field.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - magnetic field@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - magnetic field@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - magnetic field.imageset/icon - magnetic field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - magnetic field.imageset/icon - magnetic field.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - magnetic field.imageset/icon - magnetic field@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - magnetic field.imageset/icon - magnetic field@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - magnetic field.imageset/icon - magnetic field@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - magnetic field.imageset/icon - magnetic field@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - motion.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - motion.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - motion@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - motion@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - motion.imageset/icon - motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - motion.imageset/icon - motion.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - motion.imageset/icon - motion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - motion.imageset/icon - motion@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - motion.imageset/icon - motion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - motion.imageset/icon - motion@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - power.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - power.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - power@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - power@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - power.imageset/icon - power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - power.imageset/icon - power.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - power.imageset/icon - power@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - power.imageset/icon - power@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - power.imageset/icon - power@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - power.imageset/icon - power@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - sound.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - sound.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - sound@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - sound@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - sound.imageset/icon - sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - sound.imageset/icon - sound.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - sound.imageset/icon - sound@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - sound.imageset/icon - sound@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - sound.imageset/icon - sound@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - sound.imageset/icon - sound@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - temp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - temp.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - temp@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - temp@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - temp.imageset/icon - temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - temp.imageset/icon - temp.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - temp.imageset/icon - temp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - temp.imageset/icon - temp@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - temp.imageset/icon - temp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - temp.imageset/icon - temp@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - thunderboard.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - thunderboard.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - thunderboard@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - thunderboard@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - thunderboard.imageset/icon - thunderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - thunderboard.imageset/icon - thunderboard.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - thunderboard.imageset/icon - thunderboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - thunderboard.imageset/icon - thunderboard@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - thunderboard.imageset/icon - thunderboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - thunderboard.imageset/icon - thunderboard@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - usb - opt2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon - usb - opt2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon - usb - opt2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon - usb - opt2@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - usb - opt2.imageset/icon - usb - opt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - usb - opt2.imageset/icon - usb - opt2.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - usb - opt2.imageset/icon - usb - opt2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - usb - opt2.imageset/icon - usb - opt2@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/icon - usb - opt2.imageset/icon - usb - opt2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/icon - usb - opt2.imageset/icon - usb - opt2@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/interface - color line.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "interface - color line.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "interface - color line@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "interface - color line@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/interface - color line.imageset/interface - color line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/interface - color line.imageset/interface - color line.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/interface - color line.imageset/interface - color line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/interface - color line.imageset/interface - color line@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/interface - color line.imageset/interface - color line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/interface - color line.imageset/interface - color line@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/interface - gray line.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "interface - gray line.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "interface - gray line@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "interface - gray line@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/interface - gray line.imageset/interface - gray line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/interface - gray line.imageset/interface - gray line.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/interface - gray line.imageset/interface - gray line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/interface - gray line.imageset/interface - gray line@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/interface - gray line.imageset/interface - gray line@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/interface - gray line.imageset/interface - gray line@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo.imageset/Component 15 – 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo.imageset/Component 15 – 3.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo.imageset/Component 15 – 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo.imageset/Component 15 – 3@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo.imageset/Component 15 – 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo.imageset/Component 15 – 3@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Component 15 – 3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "Component 15 – 3@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "Component 15 – 3@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "logo_splash.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "logo_splash@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "logo_splash@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash.imageset/logo_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash.imageset/logo_splash.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash.imageset/logo_splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash.imageset/logo_splash@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash.imageset/logo_splash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash.imageset/logo_splash@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash_mm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "logo_splash_mm.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "logo_splash_mm@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "logo_splash_mm@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash_mm.imageset/logo_splash_mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash_mm.imageset/logo_splash_mm.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash_mm.imageset/logo_splash_mm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash_mm.imageset/logo_splash_mm@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash_mm.imageset/logo_splash_mm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash_mm.imageset/logo_splash_mm@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash_thunderboard.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "logo_splash_thunderboard.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "logo_splash_thunderboard@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "logo_splash_thunderboard@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash_thunderboard.imageset/logo_splash_thunderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash_thunderboard.imageset/logo_splash_thunderboard.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash_thunderboard.imageset/logo_splash_thunderboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash_thunderboard.imageset/logo_splash_thunderboard@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/logo_splash_thunderboard.imageset/logo_splash_thunderboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/logo_splash_thunderboard.imageset/logo_splash_thunderboard@3x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/safari.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "safari.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "safari@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "safari@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/safari.imageset/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/safari.imageset/safari.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/safari.imageset/safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/safari.imageset/safari@2x.png -------------------------------------------------------------------------------- /ThunderBoard/Assets.xcassets/safari.imageset/safari@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Assets.xcassets/safari.imageset/safari@3x.png -------------------------------------------------------------------------------- /ThunderBoard/BatteryIcon.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BatteryIcon.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 21/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class BatteryIcon: UIImageView { 12 | 13 | private let iconFileString: String = "icon - battery - " 14 | 15 | var level: Int = 0 { 16 | didSet { 17 | self.image = UIImage(named: "\(self.iconFileString)\(self.level)") 18 | } 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /ThunderBoard/BleManager+DiscoveryFiltering.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BleManager+DiscoveryFiltering.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import CoreBluetooth 9 | 10 | extension BleManager { 11 | 12 | func isThunderboard(_ peripheralName: String) -> Bool { 13 | return peripheralName.hasPrefix("Thunder") || peripheralName.hasPrefix("TBS") 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /ThunderBoard/BrightnessCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BrightnessCell.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 12/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class BrightnessCell: RoundCell { 12 | 13 | @IBOutlet weak var titleLabel: UILabel! 14 | @IBOutlet weak var slider: BrightnessSlider! 15 | 16 | } 17 | -------------------------------------------------------------------------------- /ThunderBoard/BrightnessSlider.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BrightnessSlider.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 12/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class BrightnessSlider: UISlider { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | self.setMinimumTrackImage(UIImage(named: "interface - gray line"), for: .normal) 16 | self.setMaximumTrackImage(UIImage(named: "interface - gray line"), for: .normal) 17 | } 18 | 19 | 20 | } 21 | -------------------------------------------------------------------------------- /ThunderBoard/ColorCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ColorCell.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 12/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable 12 | class ColorCell: UITableViewCell { 13 | @IBOutlet weak var titleLabel: UILabel! 14 | @IBOutlet weak var colorSlider: ColorSlider! 15 | 16 | @IBAction func colorChanged(_ sender: ColorSlider) { 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /ThunderBoard/ColorSlider.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ColorSlider.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 12/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable 12 | class ColorSlider: UISlider { 13 | 14 | override func awakeFromNib() { 15 | super.awakeFromNib() 16 | self.setMinimumTrackImage(UIImage(named: "interface - color line")?.stretchableImage(withLeftCapWidth: Int(self.bounds.size.width), topCapHeight: 0), for: .normal) 17 | self.setMaximumTrackImage(UIImage(named: "interface - color line"), for: .normal) 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /ThunderBoard/ConnectedDevice.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ConnectedDevice.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol ConnectedDeviceDelegate: class { 11 | func connectedDeviceUpdated(_ name: String, RSSI: Int?, power: PowerSource, identifier: DeviceId?, firmwareVersion: String?) 12 | } 13 | -------------------------------------------------------------------------------- /ThunderBoard/Data+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Data+Extensions.swift 3 | // Thunderboard 4 | // 5 | // Created by Max Litteral on 8/3/17. 6 | // Copyright © 2017 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension Data { 12 | init(bytes: [UInt8]) { 13 | self = .init(bytes: UnsafePointer(bytes), count: bytes.count) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /ThunderBoard/DemoConfiguration.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DemoConfiguration.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol DemoConfiguration: class { 11 | var deviceIdentifier: DeviceId? { get } 12 | var configurationDelegate: DemoConfigurationDelegate? { get set } 13 | func configureForDemo(_ demo: ThunderboardDemo) 14 | func resetDemoConfiguration() 15 | } 16 | 17 | protocol DemoConfigurationDelegate: class { 18 | 19 | func deviceIdentifierUpdated(_ deviceId: DeviceId) 20 | 21 | func configuringIoDemo() 22 | func ioDemoReady(_ connection: IoDemoConnection) 23 | 24 | func configuringMotionDemo() 25 | func motionDemoReady(_ connection: MotionDemoConnection) 26 | 27 | func configuringEnvironmentDemo() 28 | func environmentDemoReady(_ connection: EnvironmentDemoConnection) 29 | 30 | func demoConfigurationReset() 31 | } 32 | -------------------------------------------------------------------------------- /ThunderBoard/DemoConnection.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DemoConnection.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol DemoConnection: class { 11 | var device: Device { get set } 12 | var capabilities: Set { get } 13 | } -------------------------------------------------------------------------------- /ThunderBoard/DemoHistoryPresenter.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DemoHistoryPresenter.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol DemoHistoryPresenter { 11 | func showHistory() 12 | } -------------------------------------------------------------------------------- /ThunderBoard/DemoPresenter.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DemoPresenter.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol DemoPresenter { 11 | func showIoDemo(_ connection: IoDemoConnection) 12 | func showMotionDemo(_ connection: MotionDemoConnection) 13 | func showEnvironmentDemo(_ connection: EnvironmentDemoConnection) 14 | } 15 | -------------------------------------------------------------------------------- /ThunderBoard/DemoSelectionPresenter.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DemoSelectionPresenter.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol DemoSelectionPresenter { 11 | func showDemoSelection(_ configuration: DemoConfiguration) 12 | } 13 | -------------------------------------------------------------------------------- /ThunderBoard/DemoTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DemoTableViewCell.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class DemoTableViewCell: UITableViewCell { 11 | @IBOutlet weak var demoName: UILabel! 12 | @IBOutlet weak var demoImage: UIImageView! 13 | @IBOutlet weak var demoSpinner: Spinner! 14 | } 15 | -------------------------------------------------------------------------------- /ThunderBoard/DemoViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DemoViewController.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | 11 | class DemoViewController : UIViewController { 12 | override func viewDidLoad() { 13 | super.viewDidLoad() 14 | self.view.backgroundColor = StyleColor.lightGray 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ThunderBoard/DeviceConnection.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BleConnection.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol DeviceConnection: class { 11 | var connectionDelegate: DeviceConnectionDelegate? { get set } 12 | func connect(_ device: Device) 13 | func disconnectAllDevices() 14 | func isConnectedToDevice(_ device: Device) -> Bool 15 | } 16 | 17 | protocol DeviceConnectionDelegate: class { 18 | func connectedToDevice(_ device: Device) 19 | func connectionToDeviceTimedOut(_ device: Device) 20 | func connectionToDeviceFailed() 21 | } 22 | -------------------------------------------------------------------------------- /ThunderBoard/DeviceScanner.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DeviceScanner.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol DeviceScanner: class { 11 | var scanningDelegate: DeviceScannerDelegate? { get set } 12 | 13 | func startScanning() 14 | func stopScanning() 15 | } 16 | 17 | protocol DeviceScannerDelegate: DeviceTransportPowerDelegate { 18 | func startedScanning() 19 | func discoveredDevice(_ device: Device) 20 | func stoppedScanning() 21 | } 22 | -------------------------------------------------------------------------------- /ThunderBoard/DeviceSelectionPresenter.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DeviceSelectionPresenter.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol DeviceSelectionPresenter { 11 | func showDeviceSelection() 12 | } -------------------------------------------------------------------------------- /ThunderBoard/DeviceTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DeviceTableViewCell.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class DeviceTableViewCell: UITableViewCell { 11 | 12 | let canvasCornerRadius: CGFloat = 16.0 13 | 14 | @IBOutlet weak var canvasView: UIView! 15 | @IBOutlet weak var nameLabel: UILabel! 16 | @IBOutlet weak var rssiImage: UIImageView! 17 | @IBOutlet weak var rssiLabel: UILabel! 18 | @IBOutlet weak var connectingSpinner: Spinner! 19 | 20 | override func layoutSubviews() { 21 | super.layoutSubviews() 22 | canvasView.layer.cornerRadius = canvasCornerRadius 23 | canvasView.layer.masksToBounds = true 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /ThunderBoard/DeviceTransportDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DeviceTransportDelegate.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | enum DeviceTransportState { 11 | case enabled 12 | case disabled 13 | } 14 | 15 | protocol DeviceTransportPowerDelegate: class { 16 | func transportPowerStateUpdated(_ state: DeviceTransportState) 17 | } 18 | 19 | protocol DeviceTransportApplicationDelegate: DeviceTransportPowerDelegate { 20 | func transportConnectedToDevice(_ device: Device) 21 | func transportDisconnectedFromDevice(_ device: Device) 22 | func transportLostConnectionToDevice(_ device: Device) 23 | } 24 | -------------------------------------------------------------------------------- /ThunderBoard/DispatchBlockHelpers.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DispatchBlockHelpers.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | typealias DispatchBlock = ( () -> Void ) 11 | func delay(_ after: TimeInterval, run: @escaping DispatchBlock) { 12 | DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + Double(Int64(after * Double(NSEC_PER_SEC))) / Double(NSEC_PER_SEC)) { 13 | run() 14 | } 15 | } 16 | 17 | func dispatch_main_async(_ block: @escaping DispatchBlock) { 18 | OperationQueue.main.addOperation { () -> Void in 19 | block() 20 | } 21 | } 22 | 23 | func dispatch_main_sync(_ block: DispatchBlock) { 24 | DispatchQueue.main.sync { () -> Void in 25 | block() 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /ThunderBoard/IoDemoInteractionProtocol.swift: -------------------------------------------------------------------------------- 1 | // 2 | // IoDemoInteractionProtocol.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 03/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol IoDemoInteractionOutput : class { 12 | func showButtonState(_ button: Int, pressed: Bool) 13 | func showLedState(_ led: Int, state: LedState) 14 | func disableRgb() 15 | func enable(_ enable: Bool, led ledNo: Int) 16 | func enable(_ enable: Bool, switch switchNo: Int) 17 | } 18 | -------------------------------------------------------------------------------- /ThunderBoard/LightsCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LightsCell.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 12/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class LightsCell: RoundCell { 12 | 13 | @IBOutlet weak var titleLabel: UILabel! 14 | @IBOutlet var lights: [UISwitch]! 15 | 16 | @IBAction func switched(_ sender: UISwitch) { 17 | 18 | } 19 | 20 | override func prepareForReuse() { 21 | super.prepareForReuse() 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /ThunderBoard/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | Localizable.strings 3 | Thunderboard 4 | 5 | Created by Jan Wisniewski on 03/02/2020. 6 | Copyright © 2020 Silicon Labs. All rights reserved. 7 | */ 8 | 9 | 10 | "io" = "I/O"; 11 | "motion" = "Motion"; 12 | "environment" = "Environment"; 13 | "ON" = "ON"; 14 | "OFF" = "OFF"; 15 | "led" = "LED"; 16 | "leds" = "LEDs"; 17 | "rgb_leds" = "RGB LEDs"; 18 | "app_info" = "For more information visit:\nwww.silabs.com/products/wireless\n\nSupport:\nsilabs.com/support\n\nSource code:\ngithub.com/SiliconLabs/thunderboard-ios\n\nAdditional documentation:\ndocs.silabs.com/bluetooth/latest\n\nAdditional Apps released by Silicon Labs:\napps.apple.com/us/developer/silicon-labs/id555074469"; 19 | -------------------------------------------------------------------------------- /ThunderBoard/Models.scnassets/-o_0.04_0_BRD4184A_LowPoly_Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models.scnassets/-o_0.04_0_BRD4184A_LowPoly_Back.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models.scnassets/BRD4184A_LowPoly.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models.scnassets/BRD4184A_LowPoly.scn -------------------------------------------------------------------------------- /ThunderBoard/Models.scnassets/BRD4184A_LowPoly_Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models.scnassets/BRD4184A_LowPoly_Back.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models.scnassets/BRD4184A_LowPoly_Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models.scnassets/BRD4184A_LowPoly_Front.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models.scnassets/EFR23_Chip_SiLabs_Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models.scnassets/EFR23_Chip_SiLabs_Logo.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models.scnassets/antenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models.scnassets/antenna.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models/React-Board/Gecko_Module_Shield_Update_Lowpoly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/React-Board/Gecko_Module_Shield_Update_Lowpoly.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models/React-Board/Thunderboard_LowPoly_Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/React-Board/Thunderboard_LowPoly_Back.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models/React-Board/Thunderboard_LowPoly_Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/React-Board/Thunderboard_LowPoly_Front.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models/React-Board/Thunderboard_React_031616.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/React-Board/Thunderboard_React_031616.mb -------------------------------------------------------------------------------- /ThunderBoard/Models/React-Board/Thunderboard_React_031716.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/React-Board/Thunderboard_React_031716.fbx -------------------------------------------------------------------------------- /ThunderBoard/Models/Sense-Board/BRD4160_Lowpoly_Face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/Sense-Board/BRD4160_Lowpoly_Face.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models/Sense-Board/BRD4160_NewFrontText.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/Sense-Board/BRD4160_NewFrontText.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models/Sense-Board/BRD4160_NewGoldBackText.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/Sense-Board/BRD4160_NewGoldBackText.jpg -------------------------------------------------------------------------------- /ThunderBoard/Models/Sense-Board/antenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Models/Sense-Board/antenna.jpg -------------------------------------------------------------------------------- /ThunderBoard/MotionCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MotionCell.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 19/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class MotionCell: RoundCell { 12 | 13 | @IBOutlet weak var motionView: MotionDemoView! 14 | 15 | } 16 | -------------------------------------------------------------------------------- /ThunderBoard/NSDataExtensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NSDataExtensions.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | extension Data { 11 | func tb_getByteAtIndex(_ index: Int) -> UInt8 { 12 | var byte: UInt8 = 0 13 | (subdata(in: index..<(index+1)) as NSData).getBytes(&byte, length: 1) 14 | return byte 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ThunderBoard/NavBar.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NavBar.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 17/03/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class NavBar: UIView { 12 | 13 | 14 | @IBOutlet weak var height: NSLayoutConstraint! 15 | 16 | override func layoutSubviews() { 17 | super.layoutSubviews() 18 | if UIDevice.current.hasNoth { 19 | height.constant = 148 20 | } 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /ThunderBoard/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /ThunderBoard/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/OpenSans-Light.ttf -------------------------------------------------------------------------------- /ThunderBoard/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /ThunderBoard/RGBCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RGBCell.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 17/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class RGBCell: RoundCell { 12 | @IBOutlet weak var titleLabel: UILabel! 13 | @IBOutlet weak var lightSwitch: UISwitch! 14 | 15 | @IBAction func switched(_ sender: UISwitch) { 16 | 17 | } 18 | 19 | override func prepareForReuse() { 20 | super.prepareForReuse() 21 | lightSwitch.isOn = false 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /ThunderBoard/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-Black.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-Bold.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-Italic.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-Light.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-Thin.ttf -------------------------------------------------------------------------------- /ThunderBoard/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiliconLabs/thunderboard-ios/a54ecf0409712393e7b8b5c459126f88863b9dbe/ThunderBoard/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /ThunderBoard/RoundView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RoundView.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 11/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable 12 | class RoundView: UIView { 13 | 14 | @IBInspectable var colorOff: UIColor = #colorLiteral(red: 0.8374180198, green: 0.8374378085, blue: 0.8374271393, alpha: 1) 15 | @IBInspectable var colorOn: UIColor = #colorLiteral(red: 0, green: 0.6030532122, blue: 0.8807592392, alpha: 1) 16 | 17 | @IBInspectable var isOn: Bool = false { 18 | didSet { 19 | backgroundColor = self.isOn ? colorOn : colorOff 20 | } 21 | } 22 | 23 | override func draw(_ rect: CGRect) { 24 | self.layer.cornerRadius = self.bounds.size.height/2.0 25 | self.layer.masksToBounds = true 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /ThunderBoard/RoundedButton.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RoundedButton.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 18/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable 12 | class RoundedButton: UIButton { 13 | 14 | @IBInspectable var cornerRadius: CGFloat = 4 { 15 | didSet { 16 | setNeedsLayout() 17 | } 18 | } 19 | 20 | override func layoutSubviews() { 21 | super.layoutSubviews() 22 | self.layer.cornerRadius = self.cornerRadius 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /ThunderBoard/SILAppSelectionHelpViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SILAppSelectionHelpViewController.h 3 | // SiliconLabsApp 4 | // 5 | // Created by Colden Prime on 1/26/15. 6 | // Copyright (c) 2015 SiliconLabs. All rights reserved. 7 | // 8 | 9 | #import 10 | @protocol SILAppSelectionHelpViewControllerDelegate; 11 | 12 | @interface SILAppSelectionHelpViewController : UIViewController 13 | 14 | @property (weak, nonatomic) id delegate; 15 | 16 | @end 17 | 18 | 19 | @protocol SILAppSelectionHelpViewControllerDelegate 20 | 21 | - (void)didFinishHelpWithAppSelectionHelpViewController:(SILAppSelectionHelpViewController *)helpViewController; 22 | 23 | @end -------------------------------------------------------------------------------- /ThunderBoard/SettingsNavigationController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SettingsNavigationController.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class SettingsNavigationController : UINavigationController { 11 | 12 | weak var notificationManager: NotificationManager? 13 | 14 | override var preferredStatusBarStyle : UIStatusBarStyle { 15 | return .lightContent 16 | } 17 | 18 | override func viewDidLoad() { 19 | super.viewDidLoad() 20 | self.tb_setNavigationBarStyleForDemo(.settings) 21 | self.navigationBar.tintColor = StyleColor.white 22 | self.settingsViewController.notificationManager = notificationManager 23 | } 24 | 25 | var settingsViewController: SettingsViewController { 26 | get { return self.viewControllers[0] as! SettingsViewController } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /ThunderBoard/SettingsPresenter.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SettingsPresenter.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol SettingsPresenter: class { 11 | func showSettings() 12 | } 13 | -------------------------------------------------------------------------------- /ThunderBoard/SettingsViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SettingsViewCell.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class SettingsViewCell : UITableViewCell { 11 | 12 | var drawBottomSeparator: Bool = false 13 | 14 | override func draw(_ rect: CGRect) { 15 | super.draw(rect) 16 | 17 | if drawBottomSeparator { 18 | let path = UIBezierPath() 19 | let lineWidth: CGFloat = 1.0 20 | path.move(to: CGPoint(x: 15, y: rect.size.height - lineWidth)) 21 | path.addLine(to: CGPoint(x: rect.width, y: rect.size.height - lineWidth)) 22 | path.lineWidth = lineWidth 23 | 24 | StyleColor.lightGray.setStroke() 25 | path.stroke() 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /ThunderBoard/StrengthCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // StrengthCell.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 12/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class StrengthCell: UITableViewCell { 12 | 13 | @IBOutlet weak var titleLabel: UILabel! 14 | @IBOutlet weak var barView: BarView! 15 | 16 | var level: Int { 17 | get { 18 | return barView.level 19 | } 20 | set (newValue) { 21 | barView.level = newValue 22 | } 23 | } 24 | 25 | override func prepareForReuse() { 26 | super.prepareForReuse() 27 | level = 0 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /ThunderBoard/StyledLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // StyledLabel.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class StyledLabel: UILabel { 11 | 12 | var style: StyleText? 13 | 14 | convenience init(style: StyleText) { 15 | self.init() 16 | self.style = style 17 | } 18 | 19 | @objc override var text: String? { 20 | get { 21 | return super.text 22 | } 23 | set { 24 | if let style = style, let newValue = newValue { 25 | super.tb_setText(newValue, style: style) 26 | } else { 27 | super.text = newValue 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /ThunderBoard/SwitchStatusCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SwitchStatusCell.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 11/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable 12 | class SwitchStatusCell: RoundCell { 13 | 14 | @IBOutlet weak var titleLabel: UILabel! 15 | @IBOutlet var switches: [SwitchView]! 16 | @IBOutlet weak var switchConstraint: NSLayoutConstraint! 17 | 18 | override func prepareForReuse() { 19 | super.prepareForReuse() 20 | switches.forEach { (switchView) in 21 | switchView.switchStatus = .off 22 | } 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /ThunderBoard/SwitchView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SwitchView.swift 3 | // Thunderboard 4 | // 5 | // Created by Jan Wisniewski on 12/02/2020. 6 | // Copyright © 2020 Silicon Labs. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable 12 | class SwitchView: UIView { 13 | @IBOutlet weak var switchLabel: UILabel! 14 | @IBOutlet weak var dot: RoundView! 15 | 16 | enum SwitchStatus: String { 17 | case on = "ON" 18 | case off = "OFF" 19 | } 20 | 21 | var switchStatus: SwitchStatus = .off { 22 | didSet { 23 | switch self.switchStatus { 24 | case .on: 25 | dot.isOn = true 26 | case .off: 27 | dot.isOn = false 28 | } 29 | switchLabel.text = NSLocalizedString(self.switchStatus.rawValue, comment: "") 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /ThunderBoard/Thunderboard-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #import "SILAppSelectionHelpViewController.h" 6 | #import "WYPopoverController.h" 7 | #import "WYPopoverController+SILHelpers.h" 8 | -------------------------------------------------------------------------------- /ThunderBoard/UIApplication+Version.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIApplication+Version.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | extension UIApplication { 11 | 12 | var tb_version: String { 13 | get { 14 | return tb_stringForBundleVersionKey("CFBundleShortVersionString") 15 | } 16 | } 17 | 18 | var tb_buildNumber: String { 19 | get { 20 | return tb_stringForBundleVersionKey("CFBundleVersion") 21 | } 22 | } 23 | 24 | func tb_stringForBundleVersionKey(_ key: String) -> String { 25 | if let version = self.tb_applicationInfoPlistEntry(key) as? String { 26 | return version 27 | } 28 | 29 | return "???" 30 | } 31 | 32 | func tb_applicationInfoPlistEntry(_ key: String) -> AnyObject? { 33 | return Bundle.main.infoDictionary?[key] as AnyObject? 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /ThunderBoard/UITableView+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UITableView+Extensions.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | extension UITableView { 11 | func tb_isLastCell(_ indexPath: IndexPath) -> Bool { 12 | guard let dataSource = self.dataSource else { 13 | return false 14 | } 15 | 16 | let count = dataSource.tableView(self, numberOfRowsInSection: indexPath.section) 17 | return indexPath.row == (count - 1) 18 | } 19 | 20 | func tb_isFirstCell(_ indexPath: IndexPath) -> Bool { 21 | return indexPath.row == 0 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ThunderBoard/UIViewController+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIViewController+Extensions.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | extension UIViewController { 11 | func tb_removeTitleFromBackButton() { 12 | self.navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: .plain, target: nil, action: nil) 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /ThunderBoard/UrlFactory.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UrlFactory.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | extension URL { 11 | static func tb_urlForDemoHistory(_ device: DeviceId) -> URL { 12 | let host = ApplicationConfig.FirebaseDemoHost 13 | return URL(string: "https://\(host)/#/\(device)/sessions")! 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /ThunderBoard/UrlShortener.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UrlShortener.swift 3 | // Thunderboard 4 | // 5 | // Copyright © 2016 Silicon Labs. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | protocol UrlShortener { 11 | func shortenUrl(_ url: String, completion: @escaping ((_ url: String?, _ error: Error?) -> Void)) 12 | } 13 | -------------------------------------------------------------------------------- /ThunderBoard/WYPopoverController+SILHelpers.h: -------------------------------------------------------------------------------- 1 | // 2 | // WYPopoverController+SILHelpers.h 3 | // SiliconLabsApp 4 | // 5 | // Created by Colden Prime on 1/22/15. 6 | // Copyright (c) 2015 SiliconLabs. All rights reserved. 7 | // 8 | 9 | #import "WYPopoverController.h" 10 | 11 | @interface WYPopoverController (SILHelpers) 12 | 13 | + (WYPopoverController *)sil_presentCenterPopoverWithContentViewController:(UIViewController *)contentViewController 14 | presentingViewController:(UIViewController *)presentingViewController 15 | delegate:(id)delegate 16 | animated:(BOOL)animated; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Thunderboard.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Thunderboard.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ThunderboardTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | --------------------------------------------------------------------------------