├── .gitignore ├── App ├── Application │ ├── AppDelegate+Resolver.swift │ ├── AppDelegate+Welcome.swift │ ├── AppDelegate.swift │ └── Info.plist ├── Controllers │ ├── AppInfo │ │ ├── AppInfoDelegate.swift │ │ ├── AppInfoPresenter.swift │ │ └── AppInfoViewController.swift │ ├── Common │ │ └── BaseNodeViewController.swift │ ├── Empty │ │ ├── EmptyDelegate.swift │ │ ├── EmptyPresenter.swift │ │ ├── EmptyView.swift │ │ ├── EmptyView.xib │ │ └── EmptyViewController.swift │ ├── Main │ │ └── MainPresenter.swift │ └── Node │ │ ├── Filter │ │ ├── NodeFilterDelegate.swift │ │ ├── NodeFilterPresenter.swift │ │ └── NodeFilterViewController.swift │ │ └── List │ │ ├── Cells │ │ ├── NodeCell.swift │ │ ├── NodeCell.xib │ │ └── NodeViewModel.swift │ │ ├── NoResultView.swift │ │ ├── Node+Image.swift │ │ ├── NodeListDelegate.swift │ │ ├── NodeListPresenter.swift │ │ ├── NodeListView.swift │ │ ├── NodeListView.xib │ │ └── NodeListViewController.swift ├── Layouts │ └── TabBarItemLayout+ST.swift ├── Localization │ ├── Localizer+Helper.swift │ └── Localizer.swift └── Resources │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 1024x1024.png │ │ ├── 120x120.png │ │ ├── 120x120_2.png │ │ ├── 152x152.png │ │ ├── 167x167.png │ │ ├── 180x180.png │ │ ├── 20x20.png │ │ ├── 29x29.png │ │ ├── 40x40.png │ │ ├── 40x40_2.png │ │ ├── 40x40_3.png │ │ ├── 58x58.png │ │ ├── 58x58_2.png │ │ ├── 60x60.png │ │ ├── 76x76.png │ │ ├── 80x80.png │ │ ├── 80x80_2.png │ │ ├── 87x87.png │ │ └── Contents.json │ ├── Contents.json │ ├── img_checkmark_circle.symbolset │ │ ├── Contents.json │ │ └── img_checkmark_circle.svg │ ├── img_checkmark_circle_fill.symbolset │ │ ├── Contents.json │ │ └── img_checkmark_circle_fill.svg │ ├── img_developer.imageset │ │ ├── Contents.json │ │ └── img_developer.png │ ├── img_enviromental_humidity.imageset │ │ ├── Contents.json │ │ └── img_enviromental_humidity.pdf │ ├── img_enviromental_humidity_missing.imageset │ │ ├── Contents.json │ │ └── img_enviromental_humidity_missing.pdf │ ├── img_enviromental_led_off.imageset │ │ ├── Contents.json │ │ └── img_enviromental_led_off.pdf │ ├── img_enviromental_led_on.imageset │ │ ├── Contents.json │ │ └── img_enviromental_led_on.pdf │ ├── img_enviromental_pressure.imageset │ │ ├── Contents.json │ │ └── img_enviromental_pressure.pdf │ ├── img_enviromental_pressure_missing.imageset │ │ ├── Contents.json │ │ └── img_enviromental_pressure_missing.pdf │ ├── img_enviromental_temperature.imageset │ │ ├── Contents.json │ │ └── img_enviromental_temperature.pdf │ ├── img_enviromental_temperature_missing.imageset │ │ ├── Contents.json │ │ └── img_enviromental_temperature_missing.pdf │ ├── img_fae.imageset │ │ ├── Contents.json │ │ └── img_fae.png │ ├── img_logo_launch.imageset │ │ ├── Contents.json │ │ └── img_logo_launch.pdf │ ├── img_other.imageset │ │ ├── Contents.json │ │ └── img_other.png │ ├── img_university.imageset │ │ ├── Contents.json │ │ └── img_university.png │ ├── img_welcome1.imageset │ │ ├── Contents.json │ │ └── img_welcome1.png │ ├── img_welcome2.imageset │ │ ├── Contents.json │ │ └── img_welcome2.png │ ├── img_welcome3.imageset │ │ ├── Contents.json │ │ └── img_welcome3.png │ ├── img_welcome4.imageset │ │ ├── Contents.json │ │ └── img_welcome4.png │ ├── img_welcome5.imageset │ │ ├── Contents.json │ │ └── img_welcome5.png │ ├── img_welcome6.imageset │ │ ├── Contents.json │ │ └── img_welcome6.png │ ├── img_welcome7.imageset │ │ ├── Contents.json │ │ └── img_welcome7.png │ └── logo.imageset │ │ ├── Contents.json │ │ └── logo.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Localizable.strings │ ├── Entitlements │ ├── prod.entitlements │ └── stage.entitlements │ ├── License.md │ ├── NEAILogoWhite.gif │ └── art.scnassets │ ├── cubeModel.scn │ └── texture_cube.png ├── BlueMS.xcodeproj └── project.pbxproj ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Packages ├── STBlueSDK_iOS │ ├── License.md │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ └── STBlueSDK │ │ │ ├── Advertise │ │ │ ├── AdvertiseFilter.swift │ │ │ ├── AdvertiseInfo.swift │ │ │ ├── AdvertiseParser.swift │ │ │ ├── BlueAdvertiseInfo.swift │ │ │ ├── BlueNRGAdvertiseInfo.swift │ │ │ ├── BlueNRGOtaAdvertiseParser.swift │ │ │ ├── LE │ │ │ │ ├── LeAdvertiseFilter.swift │ │ │ │ ├── LeAdvertiseInfo.swift │ │ │ │ ├── LeAdvertiseParser.swift │ │ │ │ └── LeBlueAdvertiseInfo.swift │ │ │ └── NodeTypeMapper.swift │ │ │ ├── Calatog │ │ │ ├── CatalogService.swift │ │ │ ├── Models │ │ │ │ ├── BleCharacteristic.swift │ │ │ │ ├── BleCharacteristicFormat.swift │ │ │ │ ├── BleCharacteristicStringValue.swift │ │ │ │ ├── Catalog.swift │ │ │ │ ├── Checksum.swift │ │ │ │ ├── CloudApp.swift │ │ │ │ ├── DemoDecorator.swift │ │ │ │ ├── ExtraExampleFlow.swift │ │ │ │ ├── Firmware.swift │ │ │ │ ├── FotaDetails.swift │ │ │ │ ├── IconValue.swift │ │ │ │ ├── Maturity.swift │ │ │ │ ├── OptionByte.swift │ │ │ │ ├── SensorAdapterElement.swift │ │ │ │ └── StringValue.swift │ │ │ └── URLSession+Helper.swift │ │ │ ├── Commands │ │ │ ├── ECCommand │ │ │ │ ├── ECCommand.swift │ │ │ │ ├── ECCommandSection.swift │ │ │ │ ├── ECCustomCommand.swift │ │ │ │ └── ECResponse.swift │ │ │ ├── Feature │ │ │ │ ├── BaseCommandResponse.swift │ │ │ │ ├── BatteryCommandResponse.swift │ │ │ │ └── FeatureCommand.swift │ │ │ ├── PnpLCommand │ │ │ │ └── PnpLCommand.swift │ │ │ └── StandardJsonCommand.swift │ │ │ ├── Core │ │ │ ├── BleService.swift │ │ │ ├── BlueCharacteristic.swift │ │ │ ├── BlueDelegate.swift │ │ │ ├── BlueManager+BinaryCommand.swift │ │ │ ├── BlueManager+Catalog.swift │ │ │ ├── BlueManager+Command.swift │ │ │ ├── BlueManager+DebugConsole.swift │ │ │ ├── BlueManager+Discovery.swift │ │ │ ├── BlueManager+ECCommand.swift │ │ │ ├── BlueManager+Feature.swift │ │ │ ├── BlueManager+Firmware.swift │ │ │ ├── BlueManager+HSDCommand.swift │ │ │ ├── BlueManager+Notifications.swift │ │ │ ├── BlueManager+PnpLCommand.swift │ │ │ ├── BlueManager.swift │ │ │ ├── BlueUUID.swift │ │ │ ├── DataTransporter.swift │ │ │ ├── DebugConsole+Helper.swift │ │ │ ├── DebugConsole.swift │ │ │ ├── DebugConsoleCallback.swift │ │ │ ├── FavoritesServiceCore.swift │ │ │ ├── STBlueSDK.swift │ │ │ ├── WiFiSettings.swift │ │ │ └── WriteDataManager.swift │ │ │ ├── Extensions │ │ │ ├── Array+BlueCharacteristic.swift │ │ │ ├── Array+FeatureType.swift │ │ │ ├── BytesUtils.swift │ │ │ ├── CBCharacteristic+Common.swift │ │ │ ├── CBCharacteristic+Feature.swift │ │ │ ├── CBService+Blue.swift │ │ │ ├── CBUUID+Helper.swift │ │ │ ├── Data+Helper.swift │ │ │ ├── Data+NumberConversion.swift │ │ │ ├── DateFormatter+Helper.swift │ │ │ ├── Int+Helper.swift │ │ │ ├── NSRegularExpression+Helper.swift │ │ │ ├── Optional+Helper.swift │ │ │ ├── String+Helper.swift │ │ │ ├── String+Regex.swift │ │ │ ├── UInt32+Helper.swift │ │ │ └── URL+Helper.swift │ │ │ ├── Features │ │ │ ├── AILogging │ │ │ │ ├── AILoggingCommand.swift │ │ │ │ ├── AILoggingData.swift │ │ │ │ ├── AILoggingFeature.swift │ │ │ │ └── AILoggingStatus.swift │ │ │ ├── Acceleration │ │ │ │ ├── AccelerationData.swift │ │ │ │ └── AccelerationFeature.swift │ │ │ ├── AccelerationEvent │ │ │ │ ├── AccelerationEventData.swift │ │ │ │ └── AccelerationEventFeature.swift │ │ │ ├── Activity │ │ │ │ ├── ActivityData.swift │ │ │ │ ├── ActivityFeature.swift │ │ │ │ └── ActivityType.swift │ │ │ ├── AssetTrackingEvent │ │ │ │ ├── AssetTrackingEventData.swift │ │ │ │ ├── AssetTrackingEventFeature.swift │ │ │ │ ├── AssetTrackingEventType.swift │ │ │ │ ├── FallEvent │ │ │ │ │ └── FallAssetTrackingEvent.swift │ │ │ │ ├── ShockEvent │ │ │ │ │ └── ShockAssetTrackingEvent.swift │ │ │ │ └── StatusEvent │ │ │ │ │ └── StatusAssetTrackingEvent.swift │ │ │ ├── Audio │ │ │ │ ├── ADPCM │ │ │ │ │ ├── ADPCMAudioData.swift │ │ │ │ │ ├── ADPCMAudioFeature.swift │ │ │ │ │ ├── ADPCMAudioSyncFeature.swift │ │ │ │ │ ├── ADPCMCodecManager.swift │ │ │ │ │ ├── ADPCMEngine.swift │ │ │ │ │ └── AudioSyncData.swift │ │ │ │ ├── AudioCodec.swift │ │ │ │ ├── AudioDataFeature.swift │ │ │ │ ├── AudioFeature.swift │ │ │ │ ├── AudioPlayer.swift │ │ │ │ ├── AudioRecorder.swift │ │ │ │ ├── BeamFormingFeature.swift │ │ │ │ ├── BlueVoiceSyncQueue.swift │ │ │ │ └── Opus │ │ │ │ │ ├── OpusAudioConfFeature.swift │ │ │ │ │ ├── OpusAudioData.swift │ │ │ │ │ ├── OpusAudioFeature.swift │ │ │ │ │ ├── OpusCodecManager.swift │ │ │ │ │ ├── OpusConfData.swift │ │ │ │ │ ├── OpusConstants.swift │ │ │ │ │ └── OpusEngine.swift │ │ │ ├── AudioClassification │ │ │ │ ├── AudioClassificationData.swift │ │ │ │ └── AudioClassificationFeature.swift │ │ │ ├── Battery │ │ │ │ ├── BatteryData.swift │ │ │ │ └── BatteryFeature.swift │ │ │ ├── BinaryContent │ │ │ │ ├── BinaryContentData.swift │ │ │ │ └── BinaryContentFeature.swift │ │ │ ├── BlueNRGOta │ │ │ │ ├── ACK │ │ │ │ │ ├── BlueNRGOtaAckData.swift │ │ │ │ │ └── BlueNRGOtaAckFeature.swift │ │ │ │ ├── BlueNRGOtaDataTransferFeature.swift │ │ │ │ ├── MemoryInfo │ │ │ │ │ ├── BlueNRGOtaMemoryInfoData.swift │ │ │ │ │ └── BlueNRGOtaMemoryInfoFeature.swift │ │ │ │ └── Settings │ │ │ │ │ ├── BlueNRGOtaSettingsData.swift │ │ │ │ │ └── BlueNRGOtaSettingsFeature.swift │ │ │ ├── COSensor │ │ │ │ ├── COSensorCommand.swift │ │ │ │ ├── COSensorCommandResponse.swift │ │ │ │ ├── COSensorData.swift │ │ │ │ └── COSensorFeature.swift │ │ │ ├── CarryPosition │ │ │ │ ├── CarryPositionData.swift │ │ │ │ ├── CarryPositionFeature.swift │ │ │ │ └── CarryPositionType.swift │ │ │ ├── ColorAmbientLight │ │ │ │ ├── ColorAmbientLightData.swift │ │ │ │ └── ColorAmbientLightFeature.swift │ │ │ ├── Common │ │ │ │ ├── BaseFeature+Remote.swift │ │ │ │ ├── BaseFeature.swift │ │ │ │ ├── EnvironmentalFeature.swift │ │ │ │ ├── Feature.swift │ │ │ │ ├── FeatureCommandType.swift │ │ │ │ ├── FeatureField.swift │ │ │ │ ├── FeatureSample.swift │ │ │ │ ├── FeatureType.swift │ │ │ │ └── TimestampFeature.swift │ │ │ ├── Compass │ │ │ │ ├── CompassData.swift │ │ │ │ └── CompassFeature.swift │ │ │ ├── DirectionOfArrival │ │ │ │ ├── DirectionOfArrivalCommand.swift │ │ │ │ ├── DirectionOfArrivalData.swift │ │ │ │ └── DirectionOfArrivalFeature.swift │ │ │ ├── EulerAngle │ │ │ │ ├── EulerAngleData.swift │ │ │ │ └── EulerAngleFeature.swift │ │ │ ├── EventCounter │ │ │ │ ├── EventCounterData.swift │ │ │ │ └── EventCounterFeature.swift │ │ │ ├── Extended │ │ │ │ ├── ExtendedConfigurationData.swift │ │ │ │ └── ExtendedConfigurationFeature.swift │ │ │ ├── FFTAmplitude │ │ │ │ ├── FFTAmplitudeData.swift │ │ │ │ ├── FFTAmplitudeFeature.swift │ │ │ │ └── FFTDataTransporter.swift │ │ │ ├── FiniteStateMachine │ │ │ │ ├── FiniteStateMachineData.swift │ │ │ │ └── FiniteStateMachineFeature.swift │ │ │ ├── FitnessActivity │ │ │ │ ├── FitnessActivityData.swift │ │ │ │ ├── FitnessActivityFeature.swift │ │ │ │ └── FitnessActivityType.swift │ │ │ ├── FreeFall │ │ │ │ ├── FreeFallData.swift │ │ │ │ └── FreeFallFeature.swift │ │ │ ├── GNSS │ │ │ │ ├── GNSSData.swift │ │ │ │ └── GNSSFeature.swift │ │ │ ├── GeneralPurpose │ │ │ │ ├── GeneralPurposeData.swift │ │ │ │ └── GeneralPurposeFeature.swift │ │ │ ├── GestureNavigation │ │ │ │ ├── GestureNavigationData.swift │ │ │ │ ├── GestureNavigationFeature.swift │ │ │ │ └── GestureNavigationType.swift │ │ │ ├── Gyroscope │ │ │ │ ├── GyroscopeData.swift │ │ │ │ └── GyroscopeFeature.swift │ │ │ ├── HeartRate │ │ │ │ ├── HeartRateData.swift │ │ │ │ └── HeartRateFeature.swift │ │ │ ├── HighSpeedDataLog │ │ │ │ ├── HSDData.swift │ │ │ │ └── HSDFeature.swift │ │ │ ├── Humidity │ │ │ │ ├── HumidityData.swift │ │ │ │ └── HumidityFeature.swift │ │ │ ├── JsonNFC │ │ │ │ ├── JsonNFCData.swift │ │ │ │ ├── JsonNFCFeature.swift │ │ │ │ └── JsonNFCModel.swift │ │ │ ├── Led │ │ │ │ └── ControlLedFeature.swift │ │ │ ├── Luminosity │ │ │ │ ├── LuminosityData.swift │ │ │ │ └── LuminosityFeature.swift │ │ │ ├── MachineLearningCore │ │ │ │ ├── MachineLearningCoreData.swift │ │ │ │ ├── MachineLearningCoreFeature.swift │ │ │ │ └── Model │ │ │ │ │ └── JsonMLCFormat.swift │ │ │ ├── Magnetometer │ │ │ │ ├── MagnetometerData.swift │ │ │ │ └── MagnetometerFeature.swift │ │ │ ├── MedicalSignal │ │ │ │ ├── MedicalInfo.swift │ │ │ │ ├── MedicalPrecision.swift │ │ │ │ ├── MedicalSignal16BitFeature.swift │ │ │ │ ├── MedicalSignal24BitFeature.swift │ │ │ │ └── MedicalSignalType.swift │ │ │ ├── MemsGesture │ │ │ │ ├── GestureType.swift │ │ │ │ ├── MemsGestureData.swift │ │ │ │ └── MemsGestureFeature.swift │ │ │ ├── MemsNorm │ │ │ │ ├── MemsNormData.swift │ │ │ │ └── MemsNormFeature.swift │ │ │ ├── MicLevel │ │ │ │ ├── MicLevelFeature.swift │ │ │ │ └── MicLevelsData.swift │ │ │ ├── MotionAlgorithm │ │ │ │ ├── Algorithm.swift │ │ │ │ ├── DeskTypeDetection.swift │ │ │ │ ├── MotionAlgorithmData.swift │ │ │ │ ├── MotionAlgorithmFeature.swift │ │ │ │ ├── PoseEstimation.swift │ │ │ │ └── VerticalContext.swift │ │ │ ├── MotionIntensity │ │ │ │ ├── MotionIntensityData.swift │ │ │ │ └── MotionIntensityFeature.swift │ │ │ ├── MotorTimeParameters │ │ │ │ ├── MotorTimeParametersData.swift │ │ │ │ └── MotorTimeParametersFeature.swift │ │ │ ├── NEAIAnomalyDetection │ │ │ │ ├── NEAIAnomalyDetectionCommand.swift │ │ │ │ ├── NEAIAnomalyDetectionData.swift │ │ │ │ ├── NEAIAnomalyDetectionFeature.swift │ │ │ │ └── NEAIAnomalyDetectionModel.swift │ │ │ ├── NEAIClassification │ │ │ │ ├── NEAIClassificationCommand.swift │ │ │ │ ├── NEAIClassificationData.swift │ │ │ │ ├── NEAIClassificationFeature.swift │ │ │ │ └── NEAIClassificationModel.swift │ │ │ ├── NEAIExtrapolation │ │ │ │ ├── NEAIExtrapolationCommand.swift │ │ │ │ ├── NEAIExtrapolationData.swift │ │ │ │ ├── NEAIExtrapolationFeature.swift │ │ │ │ └── NEAIExtrapolationModel.swift │ │ │ ├── Pedometer │ │ │ │ ├── PedometerData.swift │ │ │ │ └── PedometerFeature.swift │ │ │ ├── Piano │ │ │ │ ├── PianoCommand.swift │ │ │ │ └── PianoFeature.swift │ │ │ ├── PnPLike │ │ │ │ ├── Array+PnPLikeElement.swift │ │ │ │ ├── Configuration │ │ │ │ │ ├── PnPLType.swift │ │ │ │ │ ├── PnPLikeConfiguration.swift │ │ │ │ │ └── PnPLikeConfigurationParameter.swift │ │ │ │ ├── ContentType.swift │ │ │ │ ├── DTMI │ │ │ │ │ ├── Array+PnpLContent.swift │ │ │ │ │ ├── PnpLCommandContent.swift │ │ │ │ │ ├── PnpLCommandPayload.swift │ │ │ │ │ ├── PnpLCommandPayloadContent.swift │ │ │ │ │ ├── PnpLComponentContent.swift │ │ │ │ │ ├── PnpLContent.swift │ │ │ │ │ ├── PnpLEnumerativeContent.swift │ │ │ │ │ ├── PnpLInterfaceContent.swift │ │ │ │ │ ├── PnpLObjectContent.swift │ │ │ │ │ ├── PnpLPrimitiveContent.swift │ │ │ │ │ ├── PnpLPropertyContent.swift │ │ │ │ │ └── PnpLUnknownContent.swift │ │ │ │ ├── JSONValue.swift │ │ │ │ ├── PnPLData.swift │ │ │ │ ├── PnPLFeature.swift │ │ │ │ ├── PnPLResponse.swift │ │ │ │ ├── PnPLikeDtmiCommand.swift │ │ │ │ ├── SchemaContent.swift │ │ │ │ └── SpontaneousMessage │ │ │ │ │ └── Model │ │ │ │ │ ├── PnPLSpontaneousMessage.swift │ │ │ │ │ └── PnPLSpontaneousResponseMessage.swift │ │ │ ├── Predictive │ │ │ │ ├── AccelerationStatus │ │ │ │ │ ├── PredictiveAccelerationStatusData.swift │ │ │ │ │ └── PredictiveAccelerationStatusFeature.swift │ │ │ │ ├── FrequencyDomain │ │ │ │ │ ├── PredictiveFrequencyDomainStatusData.swift │ │ │ │ │ └── PredictiveFrequencyDomainStatusFeature.swift │ │ │ │ ├── PredictiveStatus.swift │ │ │ │ └── SpeedStatus │ │ │ │ │ ├── PredictiveSpeedStatusData.swift │ │ │ │ │ └── PredictiveSpeedStatusFeature.swift │ │ │ ├── Pressure │ │ │ │ ├── PressureData.swift │ │ │ │ └── PressureFeature.swift │ │ │ ├── Proximity │ │ │ │ ├── ProximityData.swift │ │ │ │ └── ProximityFeature.swift │ │ │ ├── ProximityGesture │ │ │ │ ├── ProximityGestureData.swift │ │ │ │ ├── ProximityGestureFeature.swift │ │ │ │ └── ProximityGestureType.swift │ │ │ ├── RawPnPL │ │ │ │ ├── Model │ │ │ │ │ ├── RawCustom.swift │ │ │ │ │ ├── RawCustomEntry.swift │ │ │ │ │ ├── RawPnPLEnumLabel.swift │ │ │ │ │ ├── RawPnPLStream.swift │ │ │ │ │ └── RawPnPLStreamEntry.swift │ │ │ │ ├── RawPnPLControlledData.swift │ │ │ │ ├── RawPnPLControlledFeature+Helper.swift │ │ │ │ └── RawPnPLControlledFeature.swift │ │ │ ├── Remote │ │ │ │ ├── RemoteData.swift │ │ │ │ ├── RemoteHumidityFeature.swift │ │ │ │ ├── RemotePressureFeature.swift │ │ │ │ ├── RemoteSwitchFeature.swift │ │ │ │ └── RemoteTemperatureFeature.swift │ │ │ ├── Robotics Movement │ │ │ │ ├── HelperClasses │ │ │ │ │ ├── RoboticsActionCode.swift │ │ │ │ │ ├── RoboticsMovementType.swift │ │ │ │ │ ├── RoboticsNavigationMode.swift │ │ │ │ │ └── RoboticsTopology.swift │ │ │ │ ├── RoboticsMovementCommandsData.swift │ │ │ │ └── RoboticsMovementFeature.swift │ │ │ ├── SDLogging │ │ │ │ ├── SDLoggingCommand.swift │ │ │ │ ├── SDLoggingData.swift │ │ │ │ └── SDLoggingFeature.swift │ │ │ ├── STM32OTA │ │ │ │ ├── Data+STM32WBControl.swift │ │ │ │ ├── Data+STM32WBUpload.swift │ │ │ │ ├── STM32WBOtaControlFeature.swift │ │ │ │ ├── STM32WBOtaUploadFeature.swift │ │ │ │ ├── STM32WBOtaWillRebootFeature.swift │ │ │ │ └── STM32WBRebootOtaModeFeature.swift │ │ │ ├── STM32Switch │ │ │ │ ├── STM32SwitchStatusData.swift │ │ │ │ └── STM32SwitchStatusFeature.swift │ │ │ ├── STREDL │ │ │ │ ├── STREDLData.swift │ │ │ │ └── STREDLFeature.swift │ │ │ ├── SceneDescription │ │ │ │ ├── SceneDescriptionData.swift │ │ │ │ └── SceneDescriptionFeature.swift │ │ │ ├── SensorFusion │ │ │ │ ├── AutoConfigurationCommand.swift │ │ │ │ ├── AutoConfigurationCommandResponse.swift │ │ │ │ ├── CommandFeature.swift │ │ │ │ ├── QuaternionConfiguration.swift │ │ │ │ ├── SensorFusionCompactData.swift │ │ │ │ ├── SensorFusionCompactFeature.swift │ │ │ │ ├── SensorFusionData.swift │ │ │ │ └── SensorFusionFeature.swift │ │ │ ├── Switch │ │ │ │ ├── SwitchData.swift │ │ │ │ ├── SwitchFeature.swift │ │ │ │ └── SwitchType.swift │ │ │ ├── Temperature │ │ │ │ ├── TemperatureData.swift │ │ │ │ └── TemperatureFeature.swift │ │ │ ├── ToFMultiObject │ │ │ │ ├── ToFCommand.swift │ │ │ │ ├── ToFMultiObjectData.swift │ │ │ │ └── ToFMultiObjectFeature.swift │ │ │ └── UnkownFeature.swift │ │ │ ├── Firmware │ │ │ ├── BaseFirmwareService.swift │ │ │ ├── BlueNRG │ │ │ │ ├── BlueNRGFirmwareService.swift │ │ │ │ ├── Delegates │ │ │ │ │ ├── AckUpgradeFirmwareDelegate.swift │ │ │ │ │ ├── CheckMemoryAddressDelegate.swift │ │ │ │ │ └── CheckUpgradeSettingsDelegate.swift │ │ │ │ ├── FirmwareUpgradeParam.swift │ │ │ │ ├── FirmwareUpgradeSettings.swift │ │ │ │ └── VersionInfoDelegate.swift │ │ │ ├── DebugConsole │ │ │ │ ├── Data+Firmware.swift │ │ │ │ ├── DebugConsoleFirmwareService.swift │ │ │ │ └── FirmwareLoaders │ │ │ │ │ ├── BaseFirmwareLoader.swift │ │ │ │ │ ├── DebugConsoleFirmwareLoader.swift │ │ │ │ │ └── DebugConsoleWithResumeFirmwareLoader.swift │ │ │ ├── FirmwareServiceFactory.swift │ │ │ ├── FirmwareVersion.swift │ │ │ ├── STM32 │ │ │ │ ├── MemoryLayout.swift │ │ │ │ └── STM32WBFirmwareService.swift │ │ │ └── URLSession+Firmware.swift │ │ │ ├── HSD │ │ │ ├── FWErrorInfo.swift │ │ │ ├── HSDCmd+GET.swift │ │ │ ├── HSDCmd+SET.swift │ │ │ ├── HSDCmd.swift │ │ │ ├── HSDConfigData.swift │ │ │ ├── HSDDevice.swift │ │ │ ├── HSDDeviceInfo.swift │ │ │ ├── HSDDeviceParser.swift │ │ │ ├── HSDDeviceStatus.swift │ │ │ ├── HSDOptionModel.swift │ │ │ ├── HSDResponse.swift │ │ │ ├── HSDSamplesPerTs.swift │ │ │ ├── HSDSensor.swift │ │ │ ├── HSDSensorStatus.swift │ │ │ ├── HSDSubSensor.swift │ │ │ ├── HSDTag.swift │ │ │ └── HSDTagConfig.swift │ │ │ ├── License.md │ │ │ ├── Node │ │ │ ├── Array+Node.swift │ │ │ ├── Array+NodeService.swift │ │ │ ├── LE │ │ │ │ ├── LeNode+Advertise.swift │ │ │ │ └── LeNode.swift │ │ │ ├── Node+Advertise.swift │ │ │ ├── Node+BLE.swift │ │ │ ├── Node+Image.swift │ │ │ ├── Node+String.swift │ │ │ ├── Node.swift │ │ │ ├── NodeFamily.swift │ │ │ ├── NodeService+Command.swift │ │ │ ├── NodeService+ECCommand.swift │ │ │ ├── NodeService+Notifications.swift │ │ │ ├── NodeService+ReadWrite.swift │ │ │ ├── NodeService.swift │ │ │ ├── NodeState.swift │ │ │ ├── NodeType.swift │ │ │ └── Services │ │ │ │ └── GenericBleNodePinService.swift │ │ │ ├── README.txt │ │ │ └── Utils │ │ │ ├── BlueSTM32CRC.swift │ │ │ ├── FeatureFileLogger.swift │ │ │ ├── FeatureLogger.swift │ │ │ ├── LoadingView.swift │ │ │ ├── UnwrapTimeStamp.swift │ │ │ ├── WeakCallback.swift │ │ │ └── WeakObject.swift │ └── Tests │ │ └── STBlueSDKTests │ │ └── STBlueSDKTests.swift ├── STCatalog_iOS │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── STCatalog │ │ │ ├── Detail │ │ │ ├── BoardDelegate.swift │ │ │ ├── BoardPresenter.swift │ │ │ ├── BoardViewController.swift │ │ │ └── Cellls │ │ │ │ ├── BoardHeaderCell.swift │ │ │ │ ├── BoardHeaderViewModel.swift │ │ │ │ ├── YoutubeCell.swift │ │ │ │ └── YoutubeViewModel.swift │ │ │ ├── Filter │ │ │ ├── DemoGroupFilterDelegate.swift │ │ │ ├── DemoGroupFilterPresenter.swift │ │ │ ├── DemoGroupFilterViewController.swift │ │ │ └── Parameters │ │ │ │ └── FilterParameters.swift │ │ │ ├── Firmware │ │ │ └── List │ │ │ │ ├── FirmwareCell.swift │ │ │ │ ├── FirmwareListDelegate.swift │ │ │ │ ├── FirmwareListPresenter.swift │ │ │ │ ├── FirmwareListViewController.swift │ │ │ │ └── FirmwareViewModel.swift │ │ │ ├── List │ │ │ ├── BoardListDelegate.swift │ │ │ ├── BoardListPresenter.swift │ │ │ ├── BoardListViewController.swift │ │ │ └── View │ │ │ │ ├── BoardCell.swift │ │ │ │ └── BoardViewModel.swift │ │ │ ├── Localization │ │ │ ├── Localizer+Helper.swift │ │ │ └── Localizer.swift │ │ │ ├── README.txt │ │ │ ├── Resources │ │ │ └── Base.lproj │ │ │ │ └── Localizable.strings │ │ │ └── STCatalog.swift │ └── Tests │ │ └── STCatalogTests │ │ └── STCatalogTests.swift ├── STCore_iOS │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── STCore │ │ │ ├── Analytics │ │ │ ├── AnalyticsService.swift │ │ │ └── AnalyticsServiceAIoTCraftProtocol.swift │ │ │ ├── Extensions │ │ │ ├── Bool+Helper.swift │ │ │ ├── Data+Helper.swift │ │ │ ├── DateFormatter+Helper.swift │ │ │ ├── FileManager+Helper.swift │ │ │ ├── JSONDecoder+Helper.swift │ │ │ └── URL+Helper.swift │ │ │ ├── Localizer │ │ │ └── Localizable.swift │ │ │ ├── Logger │ │ │ └── Logger.swift │ │ │ ├── Models │ │ │ ├── App.swift │ │ │ ├── Auth.swift │ │ │ ├── BoxedValue.swift │ │ │ ├── CodableWrapper.swift │ │ │ ├── Permission.swift │ │ │ └── STError.swift │ │ │ ├── README.txt │ │ │ ├── Resolver │ │ │ ├── Container.swift │ │ │ └── Resolver.swift │ │ │ ├── STCore.swift │ │ │ └── Services │ │ │ ├── AuthDataStorage.swift │ │ │ ├── DataKeychainPropertyWrapper.swift │ │ │ ├── JsonDefaultPropertyWrapper.swift │ │ │ ├── JsonKeychainPropertyWrapper.swift │ │ │ ├── LoginService.swift │ │ │ ├── Network │ │ │ ├── DownloadTaskPublisher.swift │ │ │ ├── MultipartFileBuilder.swift │ │ │ ├── MultipartRequest.swift │ │ │ ├── NetworkService.swift │ │ │ └── UploadTaskPublisher.swift │ │ │ ├── SessionService.swift │ │ │ └── UserDefaultPropertyWrapper.swift │ └── Tests │ │ └── STCoreTests │ │ └── STCoreTests.swift ├── STDemos_iOS │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── STDemos │ │ │ ├── AccelerationEvent │ │ │ ├── AccelerationEvent+Extension.swift │ │ │ ├── AccelerationEventDelegate.swift │ │ │ ├── AccelerationEventPresenter.swift │ │ │ ├── AccelerationEventViewController.swift │ │ │ └── View │ │ │ │ ├── AccEventMultipleView.swift │ │ │ │ └── AccEventSingleView.swift │ │ │ ├── ActivityRecognition │ │ │ ├── ActivityRecognitionDelegate.swift │ │ │ ├── ActivityRecognitionFirstSampleDelegate.swift │ │ │ ├── ActivityRecognitionPresenter.swift │ │ │ ├── ActivityRecognitionView.swift │ │ │ ├── ActivityRecognitionView.xib │ │ │ ├── ActivityRecognitionViewController.swift │ │ │ └── View │ │ │ │ ├── ARBaseView.swift │ │ │ │ ├── ARGMPView.swift │ │ │ │ ├── ARGMPView.xib │ │ │ │ ├── ARIGNView.swift │ │ │ │ ├── ARIGNView.xib │ │ │ │ ├── ARMLCView.swift │ │ │ │ ├── ARMLCView.xib │ │ │ │ ├── ARMotionView.swift │ │ │ │ ├── ARMotionView.xib │ │ │ │ ├── AdultPresenceMLCView.swift │ │ │ │ └── AdultPresenceMLCView.xib │ │ │ ├── AssetTracking │ │ │ ├── AssetTrackingEventDelegate.swift │ │ │ ├── AssetTrackingEventPresenter.swift │ │ │ ├── AssetTrackingEventViewController.swift │ │ │ ├── Model │ │ │ │ └── AssetTrackingEventDetected.swift │ │ │ └── View │ │ │ │ ├── AssetTrackingEventView.swift │ │ │ │ ├── AssetTrackingEventViewModel.swift │ │ │ │ └── Items │ │ │ │ ├── AssetTrackingEventFilterDialogView.swift.swift │ │ │ │ ├── AssetTrackingEventsAmpsView.swift │ │ │ │ ├── AssetTrackingFallEventView.swift │ │ │ │ ├── AssetTrackingShockCubeView.swift │ │ │ │ ├── AssetTrackingShockEventDetailsView.swift │ │ │ │ └── AssetTrackingShockEventView.swift │ │ │ ├── AudioClassification │ │ │ ├── AudioClassificationDelegate.swift │ │ │ ├── AudioClassificationFirstSampleDelegate.swift │ │ │ ├── AudioClassificationPresenter.swift │ │ │ ├── AudioClassificationView.swift │ │ │ ├── AudioClassificationView.xib │ │ │ ├── AudioClassificationViewController.swift │ │ │ └── View │ │ │ │ ├── AudioSceneView.swift │ │ │ │ ├── AudioSceneView.xib │ │ │ │ ├── BabyCryingView.swift │ │ │ │ ├── BabyCryingView.xib │ │ │ │ └── BaseAudioClassView.swift │ │ │ ├── AudioSourceLocalization │ │ │ ├── AudioSourceLocalizationDelegate.swift │ │ │ ├── AudioSourceLocalizationPresenter.swift │ │ │ ├── AudioSourceLocalizationView.swift │ │ │ ├── AudioSourceLocalizationView.xib │ │ │ └── AudioSourceLocalizationViewController.swift │ │ │ ├── Battery │ │ │ ├── BatteryDelegate.swift │ │ │ ├── BatteryPresenter.swift │ │ │ ├── BatteryViewController.swift │ │ │ └── VIews │ │ │ │ ├── BatteryView.swift │ │ │ │ └── RSSIView.swift │ │ │ ├── BeamForming │ │ │ ├── BeamFormingDelegate.swift │ │ │ ├── BeamFormingPresenter.swift │ │ │ ├── BeamFormingView.swift │ │ │ ├── BeamFormingView.xib │ │ │ └── BeamFormingViewController.swift │ │ │ ├── BinaryContent │ │ │ ├── BinaryContentDelegate.swift │ │ │ ├── BinaryContentPresent.swift │ │ │ ├── BinaryContentViewController.swift │ │ │ └── FileManagerBinaryContent.swift │ │ │ ├── BlueVoice │ │ │ ├── BlueVoiceDelegate.swift │ │ │ ├── BlueVoicePresenter.swift │ │ │ ├── BlueVoiceView.swift │ │ │ ├── BlueVoiceView.xib │ │ │ ├── BlueVoiceViewController.swift │ │ │ └── DataSource │ │ │ │ ├── AudioCircularBuffer.swift │ │ │ │ └── AudioPlotDataSource.swift │ │ │ ├── CarryPosition │ │ │ ├── CarryPositionDelegate.swift │ │ │ ├── CarryPositionPresenter.swift │ │ │ └── CarryPositionViewController.swift │ │ │ ├── CloudMQTT │ │ │ ├── CloudMQTTDelegate.swift │ │ │ ├── CloudMQTTMainView.swift │ │ │ ├── CloudMQTTPresenter.swift │ │ │ ├── CloudMQTTViewController.swift │ │ │ ├── MQTTManager │ │ │ │ └── CloudMQTTViewModel.swift │ │ │ └── TabView │ │ │ │ ├── CloudMQTTConfigurationView.swift │ │ │ │ └── CloudMQTTDevUploadView.swift │ │ │ ├── ColorAmbientLight │ │ │ ├── ColorAmbientLightDelegate.swift │ │ │ ├── ColorAmbientLightPresenter.swift │ │ │ ├── ColorAmbientLightViewController.swift │ │ │ └── Views │ │ │ │ └── ColorAmbientLightView.swift │ │ │ ├── Common │ │ │ ├── BaseNodeNoViewController.swift │ │ │ ├── DemoNodeTableNoViewController.swift │ │ │ ├── DemoNodeTableViewController.swift │ │ │ ├── DemoNodeViewController.swift │ │ │ ├── DemoPresenter.swift │ │ │ ├── Localizer+Helper.swift │ │ │ ├── Localizer.swift │ │ │ └── TableNodeNoViewController.swift │ │ │ ├── Compass │ │ │ ├── CompassDelegate.swift │ │ │ ├── CompassPresenter.swift │ │ │ ├── CompassView.swift │ │ │ ├── CompassView.xib │ │ │ └── CompassViewController.swift │ │ │ ├── DebugConsole │ │ │ ├── DebugConsoleDelegate.swift │ │ │ ├── DebugConsolePresenter.swift │ │ │ └── DebugConsoleViewController.swift │ │ │ ├── Environmental │ │ │ ├── EnviromentalDelegate.swift │ │ │ ├── EnviromentalPresenter.swift │ │ │ ├── EnviromentalView.swift │ │ │ ├── EnviromentalView.xib │ │ │ ├── EnviromentalViewController.swift │ │ │ ├── SensorView.swift │ │ │ └── SensorView.xib │ │ │ ├── EventCounter │ │ │ ├── EventCounterDelegate.swift │ │ │ ├── EventCounterPresenter.swift │ │ │ └── EventCounterViewController.swift │ │ │ ├── ExtendedConfiguration │ │ │ ├── BankStatus │ │ │ │ ├── FlashBankStatusDelegate.swift │ │ │ │ ├── FlashBankStatusDivisorViewModel.swift │ │ │ │ ├── FlashBankStatusPresenter+Actions.swift │ │ │ │ ├── FlashBankStatusPresenter+Layout.swift │ │ │ │ ├── FlashBankStatusPresenter.swift │ │ │ │ ├── FlashBankStatusView.swift │ │ │ │ ├── FlashBankStatusView.xib │ │ │ │ └── FlashBankStatusViewController.swift │ │ │ ├── DeviceCertificate │ │ │ │ ├── DeviceCertificateDelegate.swift │ │ │ │ ├── DeviceCertificatePresenter.swift │ │ │ │ └── DeviceCertificateViewController.swift │ │ │ ├── ExtendedConfigurationDelegate.swift │ │ │ ├── ExtendedConfigurationPresenter+Actions.swift │ │ │ ├── ExtendedConfigurationPresenter+CustomCommand.swift │ │ │ ├── ExtendedConfigurationPresenter.swift │ │ │ ├── ExtendedConfigurationView.swift │ │ │ ├── ExtendedConfigurationView.xib │ │ │ ├── ExtendedConfigurationViewController.swift │ │ │ ├── UITextField+KeyPress.swift │ │ │ └── UpdateWifi │ │ │ │ ├── UpdateWifiDelegate.swift │ │ │ │ ├── UpdateWifiPresenter.swift │ │ │ │ └── UpdateWifiViewController.swift │ │ │ ├── FFT │ │ │ ├── FFTDelegate.swift │ │ │ ├── FFTPresenter.swift │ │ │ ├── FFTViewController.swift │ │ │ ├── Model │ │ │ │ └── FFTDetailModels.swift │ │ │ └── Stats │ │ │ │ ├── FFTStatsDelegate.swift │ │ │ │ ├── FFTStatsView.swift │ │ │ │ ├── FFTStatsView.xib │ │ │ │ ├── FFTStatsViewController.swift │ │ │ │ └── FFTStatsViewModel.swift │ │ │ ├── FiniteStateMachine │ │ │ ├── FinitStateMachineFirstSampleDelegate.swift │ │ │ ├── FiniteStateMachineDelegate.swift │ │ │ ├── FiniteStateMachinePresenter.swift │ │ │ ├── FiniteStateMachineView.swift │ │ │ ├── FiniteStateMachineView.xib │ │ │ └── FiniteStateMachineViewController.swift │ │ │ ├── Firmware │ │ │ ├── Checker │ │ │ │ ├── Cells │ │ │ │ │ ├── FirmwareCheckerCell.swift │ │ │ │ │ ├── FirmwareCheckerCell.xib │ │ │ │ │ └── FirmwareCheckerViewModel.swift │ │ │ │ ├── FirmwareCheckerDelegate.swift │ │ │ │ ├── FirmwareCheckerPresenter.swift │ │ │ │ ├── FirmwareCheckerView.swift │ │ │ │ ├── FirmwareCheckerView.xib │ │ │ │ └── FirmwareCheckerViewController.swift │ │ │ └── Select │ │ │ │ ├── BoardInfoView.swift │ │ │ │ ├── FirmwareSelectDelegate.swift │ │ │ │ ├── FirmwareSelectPresenter.swift │ │ │ │ ├── FirmwareSelectViewController.swift │ │ │ │ ├── STM32FirmwareTypeView.swift │ │ │ │ └── STM32FirmwareTypeView.xib │ │ │ ├── FitnessActivity │ │ │ ├── FitnessActivityDelegate.swift │ │ │ ├── FitnessActivityPresenter.swift │ │ │ └── FitnessActivityViewController.swift │ │ │ ├── Flow │ │ │ ├── ControlTab │ │ │ │ └── FlowControlTabPresenter.swift │ │ │ ├── Extensions │ │ │ │ ├── Array+Flow.swift │ │ │ │ ├── FileManager+Helper.swift │ │ │ │ └── String+sanitazed.swift │ │ │ ├── FlowMainPresenter.swift │ │ │ ├── FlowTab │ │ │ │ ├── FlowCategories │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── FlowAppsCatagoriesDetailViewModel.swift │ │ │ │ │ │ ├── FlowAppsCatagoriesViewModel.swift │ │ │ │ │ │ └── FlowAppsCategoriesCell.swift │ │ │ │ │ └── FlowAppCategoryDetail │ │ │ │ │ │ ├── FlowAppCategoryDetailDelegate.swift │ │ │ │ │ │ ├── FlowAppCategoryDetailPresenter.swift │ │ │ │ │ │ └── FlowAppCategoryDetailViewController.swift │ │ │ │ ├── FlowConditional │ │ │ │ │ ├── ExecuteInput │ │ │ │ │ │ ├── FlowExecuteInputDelegate.swift │ │ │ │ │ │ ├── FlowExecuteInputPresenter.swift │ │ │ │ │ │ └── FlowExecuteInputViewController.swift │ │ │ │ │ ├── FlowConditionalDelegate.swift │ │ │ │ │ ├── FlowConditionalInput │ │ │ │ │ │ ├── FlowConditionalInputDelegate.swift │ │ │ │ │ │ ├── FlowConditionalInputPresenter.swift │ │ │ │ │ │ └── FlowConditionalInputViewController.swift │ │ │ │ │ ├── FlowConditionalPresenter.swift │ │ │ │ │ └── FlowConditionalViewController.swift │ │ │ │ ├── FlowExpert │ │ │ │ │ ├── FlowExpertDelegate.swift │ │ │ │ │ ├── FlowExpertPresenter.swift │ │ │ │ │ ├── FlowExpertViewController.swift │ │ │ │ │ └── Header │ │ │ │ │ │ ├── FlowExpertHeaderCell.swift │ │ │ │ │ │ └── FlowExpertHeaderViewModel.swift │ │ │ │ ├── FlowNew │ │ │ │ │ ├── FlowFunctions │ │ │ │ │ │ ├── Cell │ │ │ │ │ │ │ ├── FlowFunctionCell.swift │ │ │ │ │ │ │ └── FlowFunctionViewModel.swift │ │ │ │ │ │ ├── FlowFunctionsDelegate.swift │ │ │ │ │ │ ├── FlowFunctionsPresenter.swift │ │ │ │ │ │ ├── FlowFunctionsViewController.swift │ │ │ │ │ │ └── Option │ │ │ │ │ │ │ ├── FlowFunctionOptionDelegate.swift │ │ │ │ │ │ │ ├── FlowFunctionOptionPresenter.swift │ │ │ │ │ │ │ └── FlowFunctionOptionViewController.swift │ │ │ │ │ ├── FlowInput │ │ │ │ │ │ ├── Cell │ │ │ │ │ │ │ ├── FlowInputCell.swift │ │ │ │ │ │ │ └── FlowInputViewModel.swift │ │ │ │ │ │ ├── FlowInputDelegate.swift │ │ │ │ │ │ ├── FlowInputPresenter.swift │ │ │ │ │ │ ├── FlowInputViewController.swift │ │ │ │ │ │ └── Option │ │ │ │ │ │ │ ├── FlowInputOptionDelegate.swift │ │ │ │ │ │ │ ├── FlowInputOptionPresenter.swift │ │ │ │ │ │ │ ├── FlowInputOptionViewController.swift │ │ │ │ │ │ │ └── Parser │ │ │ │ │ │ │ └── UcfParser.swift │ │ │ │ │ ├── FlowItem │ │ │ │ │ │ └── Cell │ │ │ │ │ │ │ ├── FlowItemCell.swift │ │ │ │ │ │ │ └── FlowItemViewModel.swift │ │ │ │ │ ├── NewFlowDelegate.swift │ │ │ │ │ ├── NewFlowParametersSelectionDelegate.swift │ │ │ │ │ ├── NewFlowPresenter.swift │ │ │ │ │ ├── NewFlowViewController.swift │ │ │ │ │ └── Output │ │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── FlowOutputCell.swift │ │ │ │ │ │ └── FlowOutputViewModel.swift │ │ │ │ │ │ ├── FlowOutputDelegate.swift │ │ │ │ │ │ ├── FlowOutputPresenter.swift │ │ │ │ │ │ ├── FlowOutputViewController.swift │ │ │ │ │ │ └── Option │ │ │ │ │ │ ├── FlowOutputOptionDelegate.swift │ │ │ │ │ │ ├── FlowOutputOptionPresenter.swift │ │ │ │ │ │ └── FlowOutputOptionViewController.swift │ │ │ │ ├── FlowOverview │ │ │ │ │ ├── FlowOverviewDelegate.swift │ │ │ │ │ ├── FlowOverviewPresenter.swift │ │ │ │ │ ├── FlowOverviewViewController.swift │ │ │ │ │ └── VIewModel │ │ │ │ │ │ ├── FlowOverviewButtonCell.swift │ │ │ │ │ │ └── FlowOverviewButtonViewModel.swift │ │ │ │ ├── FlowTabDelegate.swift │ │ │ │ ├── FlowTabPresenter.swift │ │ │ │ ├── FlowTabViewController.swift │ │ │ │ ├── FlowUpload │ │ │ │ │ ├── FlowUploadDelegate.swift │ │ │ │ │ ├── FlowUploadPresenter.swift │ │ │ │ │ └── FlowUploadViewController.swift │ │ │ │ └── SaveFlow │ │ │ │ │ ├── SaveFlowDelegate.swift │ │ │ │ │ ├── SaveFlowPresenter.swift │ │ │ │ │ └── SaveFlowViewController.swift │ │ │ ├── Json │ │ │ │ ├── Examples │ │ │ │ │ ├── Baby Crying Detector.json │ │ │ │ │ ├── Barometer.json │ │ │ │ │ ├── Barometer_pro.json │ │ │ │ │ ├── Compass.json │ │ │ │ │ ├── Compass_pro.json │ │ │ │ │ ├── Data recorder.json │ │ │ │ │ ├── Data recorder_pro.json │ │ │ │ │ ├── Free-Fall detector_pro.json │ │ │ │ │ ├── Human Activity recognition.json │ │ │ │ │ ├── Human Activity recognition_pro.json │ │ │ │ │ ├── In-Vehicle Baby Alarm.json │ │ │ │ │ ├── In-Vehicle Baby Alarm_pro.json │ │ │ │ │ ├── Level.json │ │ │ │ │ ├── Level_pro.json │ │ │ │ │ ├── NFC Writer.json │ │ │ │ │ ├── NFC WriterB.json │ │ │ │ │ ├── Pedometer.json │ │ │ │ │ ├── Pedometer_pro.json │ │ │ │ │ ├── Q-Touch.json │ │ │ │ │ ├── SensorFusionCube.json │ │ │ │ │ ├── SensorFusionCube_pro.json │ │ │ │ │ ├── Vibration monitor - Compare.json │ │ │ │ │ └── Vibration monitor - Training.json │ │ │ │ ├── counter_flows.json │ │ │ │ ├── exp_flows.json │ │ │ │ ├── filters.json │ │ │ │ ├── functions.json │ │ │ │ ├── output.json │ │ │ │ └── sensors.json │ │ │ ├── Models │ │ │ │ ├── Condition.swift │ │ │ │ ├── Configuration.swift │ │ │ │ ├── Filter.swift │ │ │ │ ├── Flow.swift │ │ │ │ ├── FlowItem.swift │ │ │ │ ├── Function.swift │ │ │ │ ├── MandatoryInput.swift │ │ │ │ ├── MoreItem.swift │ │ │ │ ├── Output.swift │ │ │ │ ├── PowerMode.swift │ │ │ │ ├── Property.swift │ │ │ │ ├── RadioValue.swift │ │ │ │ └── Sensor.swift │ │ │ ├── MoreTab │ │ │ │ ├── Cell │ │ │ │ │ ├── FlowMoreBoardDetailCell.swift │ │ │ │ │ ├── FlowMoreBoardDetailViewModel.swift │ │ │ │ │ ├── FlowMoreItemCell.swift │ │ │ │ │ └── FlowMoreItemViewModel.swift │ │ │ │ ├── FlowMoreTabDelegate.swift │ │ │ │ ├── FlowMoreTabPresenter.swift │ │ │ │ ├── FlowMoreTabViewController.swift │ │ │ │ └── Model │ │ │ │ │ └── FlowMoreItem.swift │ │ │ ├── SensorsTab │ │ │ │ ├── Cell │ │ │ │ │ ├── FlowSensorItemCell.swift │ │ │ │ │ └── FlowSensorItemViewModel.swift │ │ │ │ ├── SensorTabDetail │ │ │ │ │ ├── SensorTabDetailDelegate.swift │ │ │ │ │ ├── SensorTabDetailPresenter.swift │ │ │ │ │ └── SensorTabDetailViewController.swift │ │ │ │ ├── SensorsTabDelegate.swift │ │ │ │ ├── SensorsTabPresenter.swift │ │ │ │ └── SensorsTabViewController.swift │ │ │ ├── Services │ │ │ │ ├── Communication │ │ │ │ │ ├── CommunicationService.swift │ │ │ │ │ ├── Transporter.swift │ │ │ │ │ └── Uploader.swift │ │ │ │ ├── Modal │ │ │ │ │ └── ModalService.swift │ │ │ │ └── Persistance │ │ │ │ │ └── PersistanceService.swift │ │ │ ├── Utils │ │ │ │ ├── Constants.swift │ │ │ │ └── DIL24Utilities.swift │ │ │ ├── Validator │ │ │ │ ├── IntRangeValueValidator.swift │ │ │ │ ├── MinValueValidator.swift │ │ │ │ └── Validator.swift │ │ │ └── Views │ │ │ │ ├── CheckBox │ │ │ │ ├── CheckBoxGroup.swift │ │ │ │ ├── CheckBoxGroup.xib │ │ │ │ ├── CheckBoxRow.swift │ │ │ │ └── CheckBoxRow.xib │ │ │ │ ├── Picker.swift │ │ │ │ ├── RegisterConfig │ │ │ │ ├── AlgoLabel │ │ │ │ │ ├── AlgoLabelView.swift │ │ │ │ │ ├── AlgoLabelView.xib │ │ │ │ │ └── Row │ │ │ │ │ │ ├── AlgoLabelRowView.swift │ │ │ │ │ │ └── AlgoLabelRowView.xib │ │ │ │ ├── CloseKeyboardOnReturn.swift │ │ │ │ ├── RegConfigView.swift │ │ │ │ └── RegConfigView.xib │ │ │ │ └── TextField.swift │ │ │ ├── GNSS │ │ │ ├── GNSSDelegate.swift │ │ │ ├── GNSSPresenter.swift │ │ │ ├── GNSSViewController.swift │ │ │ └── Views │ │ │ │ ├── GNSSCoordinatesView.swift │ │ │ │ └── GNSSSatellitesView.swift │ │ │ ├── GestureNavigation │ │ │ ├── GestureNavigation+ImageRotate.swift │ │ │ ├── GestureNavigationDelegate.swift │ │ │ ├── GestureNavigationPresenter.swift │ │ │ └── GestureNavigationViewController.swift │ │ │ ├── HeartRate │ │ │ ├── HeartRateDelegate.swift │ │ │ ├── HeartRatePresenter.swift │ │ │ └── HeartRateViewController.swift │ │ │ ├── HighSpeedDataLog │ │ │ ├── HSDPnpLPresenter.swift │ │ │ ├── HSDPnpLTagPresenter.swift │ │ │ ├── HSDPresenter.swift │ │ │ └── HSDWaitingView.swift │ │ │ ├── JsonNfc │ │ │ ├── JsonNfcDelegate.swift │ │ │ ├── JsonNfcPresenter.swift │ │ │ ├── JsonNfcView.swift │ │ │ ├── JsonNfcView.xib │ │ │ └── JsonNfcViewController.swift │ │ │ ├── Legacy │ │ │ ├── LegacyDelegate.swift │ │ │ ├── LegacyPresenter.swift │ │ │ ├── LegacyViewController.swift │ │ │ ├── View │ │ │ │ └── LegacyView.swift │ │ │ ├── WorkInProgressDelegate.swift │ │ │ ├── WorkInProgressPresenter.swift │ │ │ └── WorkInProgressViewController.swift │ │ │ ├── Level │ │ │ ├── LevelDelegate.swift │ │ │ ├── LevelPresenter.swift │ │ │ ├── LevelViewController.swift │ │ │ └── View │ │ │ │ ├── LevelGraphView.swift │ │ │ │ ├── LevelSelectionView.swift │ │ │ │ ├── PitchRollView.swift │ │ │ │ └── ZerosButtonView.swift │ │ │ ├── LinkToApp │ │ │ ├── DedicatedAppDelegate.swift │ │ │ ├── DedicatedAppPresenter.swift │ │ │ ├── DedicatedAppViewController.swift │ │ │ ├── Model │ │ │ │ └── DedicatedAppInfo.swift │ │ │ └── View │ │ │ │ └── DedicatedAppView.swift │ │ │ ├── List │ │ │ ├── Cells │ │ │ │ ├── DemoCell.swift │ │ │ │ ├── DemoViewModel.swift │ │ │ │ ├── NodeHeaderCell.swift │ │ │ │ └── NodeHeaderViewModel.swift │ │ │ ├── DemoListDelegate.swift │ │ │ ├── DemoListPresenter.swift │ │ │ ├── DemoListViewController.swift │ │ │ └── DemoPermission.swift │ │ │ ├── MEMSSensorFusion │ │ │ ├── MEMSSensorFusionDelegate.swift │ │ │ ├── MEMSSensorFusionPresenter.swift │ │ │ ├── MEMSSensorFusionView.swift │ │ │ ├── MEMSSensorFusionView.xib │ │ │ └── MEMSSensorFusionViewController.swift │ │ │ ├── MachineLearningCore │ │ │ ├── Cell │ │ │ │ ├── RegisterAiCell.swift │ │ │ │ ├── RegisterAiData.swift │ │ │ │ └── RegisterAiViewModel.swift │ │ │ ├── MachineLearningCoreDelegate.swift │ │ │ ├── MachineLearningCoreFirstSampleDelegate.swift │ │ │ ├── MachineLearningCorePresenter.swift │ │ │ ├── MachineLearningCoreView.swift │ │ │ ├── MachineLearningCoreView.xib │ │ │ ├── MachineLearningCoreViewController.swift │ │ │ └── Utility │ │ │ │ ├── RegisterStatus.swift │ │ │ │ ├── ValueLabelConsole.swift │ │ │ │ └── ValueLabelMapper.swift │ │ │ ├── MedicalSignal │ │ │ ├── MedicalSignalDelegate.swift │ │ │ ├── MedicalSignalPresenter.swift │ │ │ ├── MedicalSignalViewController.swift │ │ │ └── View │ │ │ │ └── Medical16View.swift │ │ │ ├── MemsGesture │ │ │ ├── MemsGestureDelegate.swift │ │ │ ├── MemsGesturePresenter.swift │ │ │ └── MemsGestureViewController.swift │ │ │ ├── Models │ │ │ ├── Demo.swift │ │ │ └── LineConfig.swift │ │ │ ├── MotionAlgorithms │ │ │ ├── MotionAlgorithms+UIImage.swift │ │ │ ├── MotionAlgorithmsDelegate.swift │ │ │ ├── MotionAlgorithmsPresenter.swift │ │ │ └── MotionAlgorithmsViewController.swift │ │ │ ├── MotionIntensity │ │ │ ├── MotionIntensityDelegate.swift │ │ │ ├── MotionIntensityPresenter.swift │ │ │ ├── MotionIntensityView.swift │ │ │ ├── MotionIntensityView.xib │ │ │ └── MotionIntensityViewController.swift │ │ │ ├── MultiNeuralNetwork │ │ │ ├── MultiNeuralNetwork+UIImage.swift │ │ │ ├── MultiNeuralNetworkDelegate.swift │ │ │ ├── MultiNeuralNetworkPresenter.swift │ │ │ ├── MultiNeuralNetworkViewController.swift │ │ │ └── View │ │ │ │ ├── MultiNeuralNetworkCurrentAlgorithmView.swift │ │ │ │ └── MultiNeuralNetworkSingleView.swift │ │ │ ├── NEAIAnomalyDetection │ │ │ ├── GifLoader.swift │ │ │ ├── NEAIAnomalyDetectionDelegate.swift │ │ │ ├── NEAIAnomalyDetectionModelExtension.swift │ │ │ ├── NEAIAnomalyDetectionPresenter.swift │ │ │ └── NEAIAnomalyDetectionViewController.swift │ │ │ ├── NEAIClassification │ │ │ ├── NEAIClassificationDelegate.swift │ │ │ ├── NEAIClassificationPresenter.swift │ │ │ └── NEAIClassificationViewController.swift │ │ │ ├── NEAIExtrapolation │ │ │ ├── NEAIExtrapolationDelegate.swift │ │ │ ├── NEAIExtrapolationPresenter.swift │ │ │ └── NEAIExtrapolationViewController.swift │ │ │ ├── Pedometer │ │ │ ├── PedometerDelegate.swift │ │ │ ├── PedometerPresenter.swift │ │ │ └── PedometerViewController.swift │ │ │ ├── Piano │ │ │ ├── Model │ │ │ │ ├── PianoKey.swift │ │ │ │ └── PianoKeyboard.swift │ │ │ ├── PianoDelegate.swift │ │ │ ├── PianoPresenter.swift │ │ │ ├── PianoView.swift │ │ │ └── PianoViewController.swift │ │ │ ├── Plot │ │ │ ├── Extension │ │ │ │ ├── PlotExtension.swift │ │ │ │ └── PlotUtil.swift │ │ │ ├── PlotDelegate.swift │ │ │ ├── PlotPresenter.swift │ │ │ └── PlotViewController.swift │ │ │ ├── PnpL │ │ │ ├── Cells │ │ │ │ ├── PnpLComponentTableViewCell.swift │ │ │ │ └── PnpLComponentTableViewCell.xib │ │ │ ├── JSONValue+PnpL.swift │ │ │ ├── PnpLComponentContent+Helper.swift │ │ │ ├── PnpLContent+Helper.swift │ │ │ ├── PnpLContent+ViewModel.swift │ │ │ ├── PnpLDelegate.swift │ │ │ ├── PnpLPresenter.swift │ │ │ ├── PnpLView.swift │ │ │ ├── PnpLView.xib │ │ │ ├── PnpLViewController.swift │ │ │ ├── SpontaneousMessage │ │ │ │ ├── Model │ │ │ │ │ └── PnPLSpontaneousMessageType.swift │ │ │ │ ├── PnPLSpontaneousMessageAlertPresenter.swift │ │ │ │ ├── PnPLSpontaneousMessageViewController.swift │ │ │ │ └── View │ │ │ │ │ └── PnPLSpontaneousMessageAlertView.swift │ │ │ └── ViewModels │ │ │ │ ├── ObjectView.swift │ │ │ │ └── ObjectViewModel.swift │ │ │ ├── PredictiveMaintenance │ │ │ ├── PredictiveMaintenanceDelegate.swift │ │ │ ├── PredictiveMaintenancePresenter.swift │ │ │ ├── PredictiveMaintenanceViewController.swift │ │ │ └── View │ │ │ │ └── PredictiveMaintenanceBaseView.swift │ │ │ ├── ProximityGesture │ │ │ ├── ProximityGestureDelegate.swift │ │ │ ├── ProximityGesturePresenter.swift │ │ │ └── ProximityGestureViewController.swift │ │ │ ├── README.txt │ │ │ ├── RawPnPLControlled │ │ │ ├── RawPnPLControlledDelegate.swift │ │ │ ├── RawPnPLControlledPresenter.swift │ │ │ └── RawPnPLControlledViewController.swift │ │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccelerometerEvent │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── acc_event_double_tap.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── doubleTap.pdf │ │ │ │ │ ├── acc_event_free_fall.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── freeFall.pdf │ │ │ │ │ ├── acc_event_none.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── noEvent.pdf │ │ │ │ │ ├── acc_event_orientation_bottom_left.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── bottom_left.pdf │ │ │ │ │ ├── acc_event_orientation_bottom_right.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── bottom_right.pdf │ │ │ │ │ ├── acc_event_orientation_down.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── down.pdf │ │ │ │ │ ├── acc_event_orientation_top_left.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── top_left.pdf │ │ │ │ │ ├── acc_event_orientation_top_right.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── top_right.pdf │ │ │ │ │ ├── acc_event_orientation_up.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── top.pdf │ │ │ │ │ ├── acc_event_single_tap.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── singleTap.pdf │ │ │ │ │ ├── acc_event_tilt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── tilt.pdf │ │ │ │ │ └── acc_event_wake_up.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── wakeUp.pdf │ │ │ │ ├── ActivityRecognition │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── activity_adult_in_car.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_adult_in_car.pdf │ │ │ │ │ ├── activity_adult_not_in_car.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_adult_not_in_car.pdf │ │ │ │ │ ├── activity_biking.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_biking.pdf │ │ │ │ │ ├── activity_driving.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_driving.pdf │ │ │ │ │ ├── activity_fastWalking.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_fastWalking.pdf │ │ │ │ │ ├── activity_running.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_running.pdf │ │ │ │ │ ├── activity_stairs.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_stairs.pdf │ │ │ │ │ ├── activity_standing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_standing.pdf │ │ │ │ │ └── activity_walking.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── activity_walking.pdf │ │ │ │ ├── AssetTrackingEvent │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── asset_tracking_event_cube.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── asset_tracking_event_cube.png │ │ │ │ │ ├── asset_tracking_event_fall.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── asset_tracking_event_fall.png │ │ │ │ │ ├── asset_tracking_event_minus_x.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── asset_tracking_event_minus_x.png │ │ │ │ │ ├── asset_tracking_event_minus_y.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── asset_tracking_event_minus_y.png │ │ │ │ │ ├── asset_tracking_event_minus_z.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── asset_tracking_event_minus_z.png │ │ │ │ │ ├── asset_tracking_event_plus_x.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── asset_tracking_event_plus_x.png │ │ │ │ │ ├── asset_tracking_event_plus_y.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── asset_tracking_event_plus_y.png │ │ │ │ │ ├── asset_tracking_event_plus_z.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── passet_tracking_event_lus_z.png │ │ │ │ │ └── asset_tracking_event_shock.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── asset_tracking_event_shock.png │ │ │ │ ├── AudioClassification │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── audioScene_babyCrying.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── audioScene_babyNotCrying.pdf │ │ │ │ │ ├── audioScene_babyNotCrying.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── audoScene_babyCrying.pdf │ │ │ │ │ ├── audioScene_inDriving.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── audioScene_inDriving.pdf │ │ │ │ │ ├── audioScene_inside.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── audioScene_indoor.pdf │ │ │ │ │ └── audioScene_outside.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Outside.pdf │ │ │ │ ├── Beamforming │ │ │ │ │ ├── Beamforming_radioButton_off.imageset │ │ │ │ │ │ ├── Beamforming_radioButton_off.svg │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Beamforming_radioButton_on.imageset │ │ │ │ │ │ ├── Beamforming_radioButton_on.svg │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── BlueVoice │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_volume_off.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_volume_off.pdf │ │ │ │ │ └── img_volume_on.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_volume_on.pdf │ │ │ │ ├── CarryPosition │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── carry_arm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── carry_arm.pdf │ │ │ │ │ ├── carry_desk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── carry_desk.pdf │ │ │ │ │ ├── carry_hand.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── carry_hand.pdf │ │ │ │ │ ├── carry_head.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── carry_head.pdf │ │ │ │ │ ├── carry_shirt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── carry_shirt.pdf │ │ │ │ │ └── carry_trousers.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── carry_trousers.pdf │ │ │ │ ├── Compass │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_compass_background.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_compass_background.pdf │ │ │ │ │ ├── img_compass_calibrated.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_compass_calibrated.png │ │ │ │ │ ├── img_compass_needle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_compass_needle.pdf │ │ │ │ │ └── img_compass_uncalibrated.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_compass_uncalibrated.png │ │ │ │ ├── Contents.json │ │ │ │ ├── Environmental │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_enviromental_humidity.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_enviromental_humidity.pdf │ │ │ │ │ ├── img_enviromental_humidity_missing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_enviromental_humidity_missing.pdf │ │ │ │ │ ├── img_enviromental_led_off.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_enviromental_led_off.pdf │ │ │ │ │ ├── img_enviromental_led_on.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_enviromental_led_on.pdf │ │ │ │ │ ├── img_enviromental_pressure.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_enviromental_pressure.pdf │ │ │ │ │ ├── img_enviromental_pressure_missing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_enviromental_pressure_missing.pdf │ │ │ │ │ ├── img_enviromental_temperature.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_enviromental_temperature.pdf │ │ │ │ │ └── img_enviromental_temperature_missing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_enviromental_temperature_missing.pdf │ │ │ │ ├── Extended Configuration │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_ext_conf_control.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_ext_conf_control.pdf │ │ │ │ │ ├── ic_ext_conf_custom_commands.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_ext_conf_custom_commands.pdf │ │ │ │ │ ├── ic_ext_conf_report.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_ext_conf_report.pdf │ │ │ │ │ ├── ic_ext_conf_security.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_ext_conf_security.pdf │ │ │ │ │ └── ic_ext_conf_settings.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_ext_conf_settings.pdf │ │ │ │ ├── Flow │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── More │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── flow_more_board_web.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_more_board_web.png │ │ │ │ │ │ ├── flow_more_book.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_more_book.pdf │ │ │ │ │ │ ├── flow_more_icon.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_more_icon.pdf │ │ │ │ │ │ ├── flow_more_support.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_more_support.pdf │ │ │ │ │ │ └── flow_more_web.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_more_web.png │ │ │ │ │ ├── Outputs │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ic_bluetooth.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_bluetooth.pdf │ │ │ │ │ │ ├── ic_input.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_input.pdf │ │ │ │ │ │ ├── ic_multi_output.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_multi_output.pdf │ │ │ │ │ │ ├── ic_sdcard.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_sd_card.pdf │ │ │ │ │ │ └── ic_usb.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_usb.pdf │ │ │ │ │ ├── Sensors │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── flow_sensor_accelerometer.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_accelerometer.pdf │ │ │ │ │ │ ├── flow_sensor_generic.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_generic.png │ │ │ │ │ │ ├── flow_sensor_humidity.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_humidity.pdf │ │ │ │ │ │ ├── flow_sensor_inemo.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_inemo.png │ │ │ │ │ │ ├── flow_sensor_infrared.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_infrared.png │ │ │ │ │ │ ├── flow_sensor_magnetometer.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_magnetometer.pdf │ │ │ │ │ │ ├── flow_sensor_microphone.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_microphone.pdf │ │ │ │ │ │ ├── flow_sensor_nfc.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_nfc.svg │ │ │ │ │ │ ├── flow_sensor_pressure.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_pressure.pdf │ │ │ │ │ │ ├── flow_sensor_qvar.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_qvar.svg │ │ │ │ │ │ ├── flow_sensor_rtc.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_rtc.pdf │ │ │ │ │ │ └── flow_sensor_temperature.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── flow_sensor_temperature.png │ │ │ │ │ ├── flow_arrow_down.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_arrow_down.svg │ │ │ │ │ ├── flow_arrow_end.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_arrow_end.svg │ │ │ │ │ ├── flow_arrow_forward.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_arrow_forward.pdf │ │ │ │ │ ├── flow_bluetooth.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_bluetooth.png │ │ │ │ │ ├── flow_function.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_function.svg │ │ │ │ │ ├── flow_sensor_tab_icon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_sensor_tab_icon.png │ │ │ │ │ ├── flow_tab_icon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_tab_icon.png │ │ │ │ │ ├── flow_unfold_more.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_unfold_more.png │ │ │ │ │ └── flow_upload.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── flow_upload.png │ │ │ │ ├── FtinessActivity │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── fitness_bicep_curl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fitness_bicep_curl.pdf │ │ │ │ │ ├── fitness_push_up.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fitness_push_up.pdf │ │ │ │ │ ├── fitness_squat.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fitness_squat.pdf │ │ │ │ │ └── fitness_unknown.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fitness_unknown.pdf │ │ │ │ ├── GNSS │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── GNSS_gps.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── GNSS_gps.png │ │ │ │ │ └── GNSS_satellite.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── GNSS_satellite.png │ │ │ │ ├── GestureNavigation │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── gesture_nav_arrow.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── gesture_nav_arrow.svg │ │ │ │ ├── HeartRate │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── heart.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── heart.pdf │ │ │ │ │ └── heart_gray.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── heart_unselected.pdf │ │ │ │ ├── Legacy │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── appstorebadge.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── appstorebadge.svg │ │ │ │ │ └── stblesensorclassicicon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── stblesensorclassicicon.png │ │ │ │ ├── Level │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── level_circle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── circle.pdf │ │ │ │ │ └── level_half_circle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── level_half_circle.svg │ │ │ │ ├── LinkToApp │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── strobotics.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── strobotics.png │ │ │ │ ├── MEMSGesture │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── mems_gesture_glance.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mems_gesture_glance.pdf │ │ │ │ │ ├── mems_gesture_pickUp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mems_gesture_pickUp.pdf │ │ │ │ │ └── mems_gesture_wakeUp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mems_gesture_wakeUp.pdf │ │ │ │ ├── MLC │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── MLC_icon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── MLC_icon.svg │ │ │ │ │ ├── mlc_biceps_curls.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_biceps_curls.png │ │ │ │ │ ├── mlc_biking.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_biking.png │ │ │ │ │ ├── mlc_boat_pose.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_boat_pose.png │ │ │ │ │ ├── mlc_bow_pose.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_bow_pose.png │ │ │ │ │ ├── mlc_bridge.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_bridge.png │ │ │ │ │ ├── mlc_car_moving.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_car_moving.png │ │ │ │ │ ├── mlc_car_still.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_car_still.png │ │ │ │ │ ├── mlc_child.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_child.png │ │ │ │ │ ├── mlc_cobra.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_cobra.png │ │ │ │ │ ├── mlc_door_closing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_door_closing.png │ │ │ │ │ ├── mlc_door_opening.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_door_opening.png │ │ │ │ │ ├── mlc_door_still.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_door_still.png │ │ │ │ │ ├── mlc_downward_dog_pose.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_downward_dog_pose.png │ │ │ │ │ ├── mlc_driving.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_driving.png │ │ │ │ │ ├── mlc_high_vibration.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_high_vibration.png │ │ │ │ │ ├── mlc_lateral_raises.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_lateral_raises.png │ │ │ │ │ ├── mlc_low_vibration.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_low_vibration.png │ │ │ │ │ ├── mlc_meditation_pose.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_meditation_pose.png │ │ │ │ │ ├── mlc_motion.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_motion.png │ │ │ │ │ ├── mlc_new_icon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_new_icon.svg │ │ │ │ │ ├── mlc_no_vibration.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_no_vibration.png │ │ │ │ │ ├── mlc_nod.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_nod.png │ │ │ │ │ ├── mlc_plank.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_plank.png │ │ │ │ │ ├── mlc_plank_inverse.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_plank_inverse.png │ │ │ │ │ ├── mlc_running.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_running.png │ │ │ │ │ ├── mlc_seated_forward.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_seated_forward.png │ │ │ │ │ ├── mlc_shake.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_shake.png │ │ │ │ │ ├── mlc_shaking.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_shaking.png │ │ │ │ │ ├── mlc_side_angle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_side_angle.png │ │ │ │ │ ├── mlc_squat.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_squat.png │ │ │ │ │ ├── mlc_standing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_standing.png │ │ │ │ │ ├── mlc_stationary_no_upright.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_stationary_no_upright.png │ │ │ │ │ ├── mlc_stationary_upright.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_stationary_upright.png │ │ │ │ │ ├── mlc_steady_head.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_steady_head.png │ │ │ │ │ ├── mlc_swing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_swing.png │ │ │ │ │ ├── mlc_the_tree.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_the_tree.png │ │ │ │ │ └── mlc_walking.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mlc_walking.png │ │ │ │ ├── MotionAlgorithm │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── motion_algo_desktop_sitting.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_desktop_sitting.pdf │ │ │ │ │ ├── motion_algo_desktop_standing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_desktop_standing.pdf │ │ │ │ │ ├── motion_algo_pose_lying_down.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_pose_lying_down.pdf │ │ │ │ │ ├── motion_algo_pose_sitting.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_pose_sitting.pdf │ │ │ │ │ ├── motion_algo_pose_standing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_pose_standing.pdf │ │ │ │ │ ├── motion_algo_vertical_elevator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_vertical_elevator.pdf │ │ │ │ │ ├── motion_algo_vertical_escalator.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_vertical_escalator.pdf │ │ │ │ │ ├── motion_algo_vertical_floor.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_vertical_floor.pdf │ │ │ │ │ ├── motion_algo_vertical_stairs.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_vertical_stairs.pdf │ │ │ │ │ └── motion_algo_vertical_updown.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_algo_vertical_updown.pdf │ │ │ │ ├── MotionIntensity │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── motion_intensity_arrow.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_intensity_arrow.pdf │ │ │ │ │ └── motion_intensity_background.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motion_intensity_background.pdf │ │ │ │ ├── NEAI │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── NEAI_gear.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── NEAI_gear.svg │ │ │ │ │ ├── NEAI_good.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── NEAI_good.svg │ │ │ │ │ ├── NEAI_logo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── NEAI_logo.png │ │ │ │ │ └── NEAI_warning.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── NEAI_warning.svg │ │ │ │ ├── Pedometer │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pedometer.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── pedometer.pdf │ │ │ │ ├── PnPL │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pnpl_actuators.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── pnpl_actuators.svg │ │ │ │ │ └── pnpl_algorithms.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── pnpl_algorithm.svg │ │ │ │ ├── PredictiveMaintenance │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── predictive_bad.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── predictive_bad.pdf │ │ │ │ │ ├── predictive_good.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── predictive_good.pdf │ │ │ │ │ └── predictive_warning.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── predictive_warning.pdf │ │ │ │ ├── Proximity │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ProximityOff.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ProximityOff.png │ │ │ │ │ └── ProximityOn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ProximityOn.png │ │ │ │ ├── ProximityGesture │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── proximity_gesture_tap.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── proximity_gesture_tap.pdf │ │ │ │ ├── RawPnPL │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── demo_raw_pnpl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_raw_pnpl.png │ │ │ │ ├── STM32WBLedButtonControl │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── stm32wb_bell_ring.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── stm32wb_bell_ring.pdf │ │ │ │ │ └── stm32wb_signal_strength.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── signal_strenght.pdf │ │ │ │ ├── Sensors │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_accelerometer.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_accelerometer.pdf │ │ │ │ │ ├── ic_algorithm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_algorithm.png │ │ │ │ │ ├── ic_als.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_als.png │ │ │ │ │ ├── ic_gyroscope.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_gyroscope.png │ │ │ │ │ ├── ic_humidity.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_humidity.pdf │ │ │ │ │ ├── ic_ispu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_ispu.png │ │ │ │ │ ├── ic_magnetometer.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_magnetometer.pdf │ │ │ │ │ ├── ic_microphone.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_microphone.pdf │ │ │ │ │ ├── ic_mlc.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_mlc.png │ │ │ │ │ ├── ic_pow.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_pow.png │ │ │ │ │ ├── ic_pressure.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_pressure.pdf │ │ │ │ │ ├── ic_termometer.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_termometer.pdf │ │ │ │ │ ├── ic_tmos.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_tmos.png │ │ │ │ │ └── ic_tof.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_tof.png │ │ │ │ ├── SmartMotorControl │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── motor_info_running.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motor_info_running.png │ │ │ │ │ ├── motor_info_stopped.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motor_info_stopped.png │ │ │ │ │ ├── motor_info_warning.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── motor_info_warning.png │ │ │ │ │ ├── slow_telemetry_bus_voltage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── slow_telemetry_bus_voltage.png │ │ │ │ │ ├── slow_telemetry_speed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── slow_telemetry_speed.png │ │ │ │ │ ├── slow_telemetry_temperature.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── slow_telemetry_temperature.png │ │ │ │ │ ├── smart_motor_control_icon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── smart_motor_control_icon.png │ │ │ │ │ └── smart_motor_control_sensors.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── smart_motor_control_sensors.png │ │ │ │ ├── SourceLocalization │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── source_localization_needle.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── source_localization_needle.pdf │ │ │ │ ├── Switch │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── switch_led_off.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── switch_led_off.pdf │ │ │ │ │ └── switch_led_on.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── switch_led_on.pdf │ │ │ │ ├── ToFMultiObject │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── TOF_not_presence.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── TOF_not_presence.svg │ │ │ │ │ ├── TOF_objects.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── TOF_objects.svg │ │ │ │ │ ├── TOF_presence.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── TOF_presence.svg │ │ │ │ │ └── TOF_search.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── TOF_search.svg │ │ │ │ ├── ic_info.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_info.svg │ │ │ │ └── ic_unknown.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_unknown.svg │ │ │ └── Base.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── STDemos.swift │ │ │ ├── STM32WBLedButtonControl │ │ │ ├── STM32WBLedButtonControlDelegate.swift │ │ │ ├── STM32WBLedButtonControlPresenter.swift │ │ │ └── STM32WBLedButtonControlViewController.swift │ │ │ ├── STREDL │ │ │ ├── STREDLDelegate.swift │ │ │ ├── STREDLFirstSampleDelegate.swift │ │ │ ├── STREDLPresenter.swift │ │ │ ├── STREDLView.swift │ │ │ ├── STREDLView.xib │ │ │ └── STREDLViewController.swift │ │ │ ├── SmartMotorControl │ │ │ ├── HSDMotorControl │ │ │ │ └── HSDMotorControlPresenter.swift │ │ │ ├── MotorControl │ │ │ │ ├── Model │ │ │ │ │ ├── MotorControlFault.swift │ │ │ │ │ └── MotorControllerStatusResponse.swift │ │ │ │ ├── MotorControlDelegate.swift │ │ │ │ ├── MotorControlPresenter.swift │ │ │ │ ├── MotorControlViewController.swift │ │ │ │ └── View │ │ │ │ │ ├── MotorInformationView.swift │ │ │ │ │ └── SlowMotorTelemetriesView.swift │ │ │ ├── Protocols │ │ │ │ └── SmartMotorControlProtocols.swift │ │ │ └── SmartMotorControlPresenter.swift │ │ │ ├── Switch │ │ │ ├── SwitchDelegate.swift │ │ │ ├── SwitchFirstSampleDelegate.swift │ │ │ ├── SwitchPresenter.swift │ │ │ └── SwitchViewController.swift │ │ │ ├── TextualMonitor │ │ │ ├── TextualMonitorDelegate.swift │ │ │ ├── TextualMonitorPresenter.swift │ │ │ └── TextualMonitorViewController.swift │ │ │ ├── ToFMultiObject │ │ │ ├── ToFMultiObjectDelegate.swift │ │ │ ├── ToFMultiObjectPresenter.swift │ │ │ ├── ToFMultiObjectViewController.swift │ │ │ └── Views │ │ │ │ ├── ToFDistanceView.swift │ │ │ │ ├── ToFObjectView.swift │ │ │ │ └── ToFPresenceView.swift │ │ │ └── Views │ │ │ └── Chart │ │ │ ├── ChartData+Buffer.swift │ │ │ ├── ChartView.swift │ │ │ ├── PnpLContent+Chart.swift │ │ │ ├── RawPnPLStreamEntry+Chart.swift │ │ │ └── RawPnplStreamDataBuffer.swift │ └── Tests │ │ └── STDemosTests │ │ └── STDemosTests.swift ├── STUI_iOS │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── STUI │ │ │ ├── Alert.swift │ │ │ ├── Common │ │ │ ├── Localizer+Helper.swift │ │ │ ├── Localizer.swift │ │ │ └── StandardHUD.swift │ │ │ ├── Controllers │ │ │ ├── Alert │ │ │ │ ├── AlertDelegate.swift │ │ │ │ ├── AlertView.swift │ │ │ │ ├── AlertView.xib │ │ │ │ ├── AlertViewController.swift │ │ │ │ └── AlertViewModel.swift │ │ │ ├── BaseViewController.swift │ │ │ ├── CallbackAlert │ │ │ │ ├── CallBackAlertDelegate.swift │ │ │ │ ├── CallbackAlertView.swift │ │ │ │ ├── CallbackAlertView.xib │ │ │ │ ├── CallbackAlertViewController.swift │ │ │ │ └── CallbackAlertViewModel.swift │ │ │ ├── FilePicker.swift │ │ │ ├── TabBar │ │ │ │ ├── MainView.swift │ │ │ │ ├── MainView.xib │ │ │ │ ├── TabBarDelegate.swift │ │ │ │ ├── TabBarItem.swift │ │ │ │ ├── TabBarView.swift │ │ │ │ └── TabBarViewController.swift │ │ │ ├── TabBarController.swift │ │ │ └── TableViewController.swift │ │ │ ├── Extensions │ │ │ ├── UIAlertAction+Helper.swift │ │ │ ├── UIAlertController+Helper.swift │ │ │ ├── UICollectionView+Helper.swift │ │ │ ├── UICollectionViewCell+Helper.swift │ │ │ ├── UIColor+Helper.swift │ │ │ ├── UIControl+Helper.swift │ │ │ ├── UIDevice+Helper.swift │ │ │ ├── UIEdgeInsets+Helper.swift │ │ │ ├── UIImage+Helper.swift │ │ │ ├── UIImage+Render.swift │ │ │ ├── UINavigationController+Helper.swift │ │ │ ├── UIStackView+Helper.swift │ │ │ ├── UITableView+Helper.swift │ │ │ ├── UITableViewCell+Helper.swift │ │ │ ├── UIView+Animation.swift │ │ │ ├── UIView+Constraints.swift │ │ │ ├── UIView+Helper.swift │ │ │ ├── UIView+Shape.swift │ │ │ ├── UIViewController+App.swift │ │ │ └── UIViewController+Helper.swift │ │ │ ├── Layouts │ │ │ ├── ButtonLayout+ST.swift │ │ │ ├── ButtonLayout.swift │ │ │ ├── ColorLayout+ST.swift │ │ │ ├── ColorLayout.swift │ │ │ ├── FontLayout+ST.swift │ │ │ ├── FontLayout.swift │ │ │ ├── ImageLayout+Board.swift │ │ │ ├── ImageLayout.swift │ │ │ ├── NavigationLayout+ST.swift │ │ │ ├── NavigationLayout.swift │ │ │ ├── TabBarItemLayout.swift │ │ │ ├── TextInputLayout+ST.swift │ │ │ ├── TextInputLayout.swift │ │ │ ├── TextLayout+ST.swift │ │ │ └── TextLayout.swift │ │ │ ├── Navigator │ │ │ ├── Navigator.swift │ │ │ └── StandardNavigator.swift │ │ │ ├── Presenters │ │ │ ├── BasePresenter.swift │ │ │ └── VoidPresenter.swift │ │ │ ├── README.txt │ │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── battery │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── battery_0.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_00.pdf │ │ │ │ │ ├── battery_0c.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_00c.pdf │ │ │ │ │ ├── battery_100.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_100.pdf │ │ │ │ │ ├── battery_100c.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_100c.pdf │ │ │ │ │ ├── battery_20.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_20.pdf │ │ │ │ │ ├── battery_20c.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_20c.pdf │ │ │ │ │ ├── battery_40.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_40.pdf │ │ │ │ │ ├── battery_40c.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_40c.pdf │ │ │ │ │ ├── battery_60.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_60.pdf │ │ │ │ │ ├── battery_60c.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_60c.pdf │ │ │ │ │ ├── battery_80.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_80.pdf │ │ │ │ │ └── battery_80c.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── battery_80c.pdf │ │ │ │ ├── boards │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── board_BlueNRGTile.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── board_BlueNRGTile.pdf │ │ │ │ │ ├── board_blueCoin.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── board_blueCoin.pdf │ │ │ │ │ ├── board_nucleo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── board_nucleo.pdf │ │ │ │ │ ├── board_sensor_Tile.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── board_sensor_Tile.pdf │ │ │ │ │ ├── board_sensor_Tile_Box.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── board_sensor_Tile_Box.pdf │ │ │ │ │ └── generic_board.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── generic_board.pdf │ │ │ │ ├── common │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_add.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_add.svg │ │ │ │ │ ├── img_add_row.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_add_row.svg │ │ │ │ │ ├── img_arrow_down.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_arrow_down.pdf │ │ │ │ │ ├── img_arrow_fill_down.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_arrow_fill_down.pdf │ │ │ │ │ ├── img_arrow_up.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_arrow_up.svg │ │ │ │ │ ├── img_back.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_back.pdf │ │ │ │ │ ├── img_build_config.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_build_config.svg │ │ │ │ │ ├── img_catalog.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_catalog.pdf │ │ │ │ │ ├── img_checkmark_circle.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_checkmark_circle.svg │ │ │ │ │ ├── img_checkmark_circle_fill.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_checkmark_circle_fill.svg │ │ │ │ │ ├── img_chevron_down.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_chevron_down.svg │ │ │ │ │ ├── img_close.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_close.pdf │ │ │ │ │ ├── img_cloud_upload.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_cloud_upload.svg │ │ │ │ │ ├── img_cpu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_cpu.svg │ │ │ │ │ ├── img_delete.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_delete.svg │ │ │ │ │ ├── img_filter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_filter.pdf │ │ │ │ │ ├── img_folder.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_folder.svg │ │ │ │ │ ├── img_heart.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_heart.svg │ │ │ │ │ ├── img_info.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_info.svg │ │ │ │ │ ├── img_info_filled.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_info_filled.svg │ │ │ │ │ ├── img_lens.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_lens.svg │ │ │ │ │ ├── img_logs.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_logs.pdf │ │ │ │ │ ├── img_products.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_products.svg │ │ │ │ │ ├── img_question_mark.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_question_mark.svg │ │ │ │ │ ├── img_radio_checked.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_radio_checked.svg │ │ │ │ │ ├── img_radio_unchecked.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_radio_unchecked.svg │ │ │ │ │ ├── img_refresh.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_refresh.pdf │ │ │ │ │ ├── img_save.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_save.svg │ │ │ │ │ ├── img_sensors.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_sensors.svg │ │ │ │ │ ├── img_square_checked.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_square_checked.svg │ │ │ │ │ ├── img_square_unchecked.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_square_unchecked.svg │ │ │ │ │ ├── img_tag_filled.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_tag_filled.svg │ │ │ │ │ ├── img_tag_outline.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_tag_outline.svg │ │ │ │ │ ├── img_upload.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_upload.pdf │ │ │ │ │ └── img_warning_filled.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_warning_filled.svg │ │ │ │ ├── demoIcons │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── demo_acceleration_event.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_acceleration_event.svg │ │ │ │ │ ├── demo_activity.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_activity.svg │ │ │ │ │ ├── demo_ambient_light.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_ambient_light.svg │ │ │ │ │ ├── demo_asset_tracking_event.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_asset_tracking_event.png │ │ │ │ │ ├── demo_battery.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_battery.svg │ │ │ │ │ ├── demo_beamforming.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_beamforming.svg │ │ │ │ │ ├── demo_binary_content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_binary_content.svg │ │ │ │ │ ├── demo_bluevoice.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_bluevoice.svg │ │ │ │ │ ├── demo_carry.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_carry.svg │ │ │ │ │ ├── demo_charts.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_charts.svg │ │ │ │ │ ├── demo_cloud.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_cloud.svg │ │ │ │ │ ├── demo_cloud_azure_iot_central.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_cloud_azure_iot_central.png │ │ │ │ │ ├── demo_cloud_mqtt.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_cloud_mqtt.png │ │ │ │ │ ├── demo_co_sensor.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_co_sensor.svg │ │ │ │ │ ├── demo_compass.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_compass.svg │ │ │ │ │ ├── demo_environmental.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_environmental.svg │ │ │ │ │ ├── demo_event_counter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_event_counter.svg │ │ │ │ │ ├── demo_ext_config.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_ext_config.svg │ │ │ │ │ ├── demo_fitness.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_fitness.svg │ │ │ │ │ ├── demo_flow.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_flow.svg │ │ │ │ │ ├── demo_gesture_navigation.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_gesture_navigation.svg │ │ │ │ │ ├── demo_gnss.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_gnss.svg │ │ │ │ │ ├── demo_heart_rate.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_heart_rate.svg │ │ │ │ │ ├── demo_hsdatalog.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_hsdatalog.svg │ │ │ │ │ ├── demo_level.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_level.svg │ │ │ │ │ ├── demo_medical_signal.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_medical_signal.png │ │ │ │ │ ├── demo_multiple_log.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_multiple_log.svg │ │ │ │ │ ├── demo_neai.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_neai.svg │ │ │ │ │ ├── demo_nfc.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_nfc.svg │ │ │ │ │ ├── demo_nn.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_nn.svg │ │ │ │ │ ├── demo_pedometer.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_pedometer.svg │ │ │ │ │ ├── demo_piano.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_piano.svg │ │ │ │ │ ├── demo_pnpl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_pnpl.svg │ │ │ │ │ ├── demo_predictive.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_predictive.svg │ │ │ │ │ ├── demo_proximity.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_proximity.svg │ │ │ │ │ ├── demo_qvar.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_qvar.svg │ │ │ │ │ ├── demo_raw_pnpl.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_raw_pnpl.png │ │ │ │ │ ├── demo_robotics.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_robotics.svg │ │ │ │ │ ├── demo_sensor_fusion.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_sensors_fusion.svg │ │ │ │ │ ├── demo_smart_motor_control.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_smart_motor_control.svg │ │ │ │ │ ├── demo_source_localization.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_source_localization.svg │ │ │ │ │ ├── demo_switch.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_switch.svg │ │ │ │ │ ├── demo_textual.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_textual.svg │ │ │ │ │ ├── demo_tof.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_tof.svg │ │ │ │ │ ├── demo_wb_fuota.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_wb_fuota.svg │ │ │ │ │ └── ext_config.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ext_config.svg │ │ │ │ ├── filter_alt_off.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filter_alt_off.svg │ │ │ │ ├── filter_alt_on.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filter_alt_on.svg │ │ │ │ ├── img_account_gear.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_account_gear.svg │ │ │ │ ├── img_dataset.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_dataset.pdf │ │ │ │ ├── img_discover_no_result.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_discover_no_result.png │ │ │ │ ├── img_done.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_done.svg │ │ │ │ ├── img_edit.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_edit.svg │ │ │ │ ├── img_edit_stop.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_edit_stop.svg │ │ │ │ ├── img_gear.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_gear.svg │ │ │ │ ├── img_gear_filled.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_gear_filled.svg │ │ │ │ ├── img_heart_unchecked.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_heart_unchecked.svg │ │ │ │ ├── img_more_vertical.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_more_vertical.svg │ │ │ │ ├── img_pin.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_pin.svg │ │ │ │ ├── img_shopping.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_shopping.svg │ │ │ │ ├── img_signal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_signal.svg │ │ │ │ ├── img_signal_bars.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_signal_bars.pdf │ │ │ │ ├── img_star.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_star.svg │ │ │ │ ├── img_star_fill.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_star_fill.svg │ │ │ │ ├── img_wiki.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── img_wiki.svg │ │ │ │ ├── logo │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── logo_blueCoin.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logo_blueCoin.pdf │ │ │ │ │ ├── logo_nucleo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logo_nucleo.pdf │ │ │ │ │ ├── logo_sensorTile.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logo_sensorTile.pdf │ │ │ │ │ ├── logo_steval_bnc002V1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logo_steval_bnc002V1.pdf │ │ │ │ │ ├── logo_steval_idb008VX.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logo_steval_idb008VX.pdf │ │ │ │ │ └── logo_steval_wesu1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── logo_steval_wesu1.pdf │ │ │ │ ├── nodeRunningIcons │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_battery_charging_full_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_battery_charging_full_black_24pt_1x.png │ │ │ │ │ │ ├── outline_battery_charging_full_black_24pt_2x.png │ │ │ │ │ │ └── outline_battery_charging_full_black_24pt_3x.png │ │ │ │ │ ├── ic_battery_saver_24dp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_battery_saver_black_24pt_1x.png │ │ │ │ │ │ ├── outline_battery_saver_black_24pt_2x.png │ │ │ │ │ │ └── outline_battery_saver_black_24pt_3x.png │ │ │ │ │ ├── ic_bluetooth_connected_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_bluetooth_connected_black_24pt_1x.png │ │ │ │ │ │ ├── outline_bluetooth_connected_black_24pt_2x.png │ │ │ │ │ │ └── outline_bluetooth_connected_black_24pt_3x.png │ │ │ │ │ ├── ic_bluetooth_waiting_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_bluetooth_searching_black_24pt_1x.png │ │ │ │ │ │ ├── outline_bluetooth_searching_black_24pt_2x.png │ │ │ │ │ │ └── outline_bluetooth_searching_black_24pt_3x.png │ │ │ │ │ ├── ic_cloud_done_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_cloud_done_black_24pt_1x.png │ │ │ │ │ │ ├── outline_cloud_done_black_24pt_2x.png │ │ │ │ │ │ └── outline_cloud_done_black_24pt_3x.png │ │ │ │ │ ├── ic_cloud_off_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_cloud_off_black_24pt_1x.png │ │ │ │ │ │ ├── outline_cloud_off_black_24pt_2x.png │ │ │ │ │ │ └── outline_cloud_off_black_24pt_3x.png │ │ │ │ │ ├── ic_cloud_upload_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_cloud_upload_black_24pt_1x.png │ │ │ │ │ │ ├── outline_cloud_upload_black_24pt_2x.png │ │ │ │ │ │ └── outline_cloud_upload_black_24pt_3x.png │ │ │ │ │ ├── ic_disc_full_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_disc_full_black_24pt_1x.png │ │ │ │ │ │ ├── outline_disc_full_black_24pt_2x.png │ │ │ │ │ │ └── outline_disc_full_black_24pt_3x.png │ │ │ │ │ ├── ic_dissatisfied_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_sentiment_dissatisfied_black_24pt_1x.png │ │ │ │ │ │ ├── outline_sentiment_dissatisfied_black_24pt_2x.png │ │ │ │ │ │ └── outline_sentiment_dissatisfied_black_24pt_3x.png │ │ │ │ │ ├── ic_error_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_error_black_24pt_1x.png │ │ │ │ │ │ ├── outline_error_black_24pt_2x.png │ │ │ │ │ │ └── outline_error_black_24pt_3x.png │ │ │ │ │ ├── ic_filter_1.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_1.svg │ │ │ │ │ ├── ic_filter_2.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_2.svg │ │ │ │ │ ├── ic_filter_3.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_3.svg │ │ │ │ │ ├── ic_filter_4.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_4.svg │ │ │ │ │ ├── ic_filter_5.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_5.svg │ │ │ │ │ ├── ic_filter_6.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_6.svg │ │ │ │ │ ├── ic_filter_7.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_7.svg │ │ │ │ │ ├── ic_filter_8.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_8.svg │ │ │ │ │ ├── ic_filter_9.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_9.svg │ │ │ │ │ ├── ic_filter_9plus.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_filter_9plus.svg │ │ │ │ │ ├── ic_flash_off_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_flash_off_black_24pt_1x.png │ │ │ │ │ │ ├── outline_flash_off_black_24pt_2x.png │ │ │ │ │ │ └── outline_flash_off_black_24pt_3x.png │ │ │ │ │ ├── ic_flash_on_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_flash_on_black_24pt_1x.png │ │ │ │ │ │ ├── outline_flash_on_black_24pt_2x.png │ │ │ │ │ │ └── outline_flash_on_black_24pt_3x.png │ │ │ │ │ ├── ic_gps_fixed_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_gps_fixed_black_24pt_1x.png │ │ │ │ │ │ ├── outline_gps_fixed_black_24pt_2x.png │ │ │ │ │ │ └── outline_gps_fixed_black_24pt_3x.png │ │ │ │ │ ├── ic_gps_not_fixed_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_gps_not_fixed_black_24pt_1x.png │ │ │ │ │ │ ├── outline_gps_not_fixed_black_24pt_2x.png │ │ │ │ │ │ └── outline_gps_not_fixed_black_24pt_3x.png │ │ │ │ │ ├── ic_gps_off_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_gps_off_black_24pt_1x.png │ │ │ │ │ │ ├── outline_gps_off_black_24pt_2x.png │ │ │ │ │ │ └── outline_gps_off_black_24pt_3x.png │ │ │ │ │ ├── ic_help_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_help_outline_black_24pt_1x.png │ │ │ │ │ │ ├── outline_help_outline_black_24pt_2x.png │ │ │ │ │ │ └── outline_help_outline_black_24pt_3x.png │ │ │ │ │ ├── ic_link_off_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_link_off_black_24pt_1x.png │ │ │ │ │ │ ├── outline_link_off_black_24pt_2x.png │ │ │ │ │ │ └── outline_link_off_black_24pt_3x.png │ │ │ │ │ ├── ic_link_on_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_link_black_24pt_1x.png │ │ │ │ │ │ ├── outline_link_black_24pt_2x.png │ │ │ │ │ │ └── outline_link_black_24pt_3x.png │ │ │ │ │ ├── ic_lock_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_lock_black_24pt_1x.png │ │ │ │ │ │ ├── outline_lock_black_24pt_2x.png │ │ │ │ │ │ └── outline_lock_black_24pt_3x.png │ │ │ │ │ ├── ic_lock_open_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_lock_open_black_24pt_1x.png │ │ │ │ │ │ ├── outline_lock_open_black_24pt_2x.png │ │ │ │ │ │ └── outline_lock_open_black_24pt_3x.png │ │ │ │ │ ├── ic_log_on_going_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_save_black_24pt_1x.png │ │ │ │ │ │ ├── outline_save_black_24pt_2x.png │ │ │ │ │ │ └── outline_save_black_24pt_3x.png │ │ │ │ │ ├── ic_message_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_chat_black_24pt_1x.png │ │ │ │ │ │ ├── outline_chat_black_24pt_2x.png │ │ │ │ │ │ └── outline_chat_black_24pt_3x.png │ │ │ │ │ ├── ic_mic_off_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_mic_off_black_24pt_1x.png │ │ │ │ │ │ ├── outline_mic_off_black_24pt_2x.png │ │ │ │ │ │ └── outline_mic_off_black_24pt_3x.png │ │ │ │ │ ├── ic_mic_on_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_mic_black_24pt_1x.png │ │ │ │ │ │ ├── outline_mic_black_24pt_2x.png │ │ │ │ │ │ └── outline_mic_black_24pt_3x.png │ │ │ │ │ ├── ic_pause_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_pause_black_24pt_1x.png │ │ │ │ │ │ ├── outline_pause_black_24pt_2x.png │ │ │ │ │ │ └── outline_pause_black_24pt_3x.png │ │ │ │ │ ├── ic_play_arrow_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_play_arrow_black_24pt_1x.png │ │ │ │ │ │ ├── outline_play_arrow_black_24pt_2x.png │ │ │ │ │ │ └── outline_play_arrow_black_24pt_3x.png │ │ │ │ │ ├── ic_play_arrow_24_filled.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_play_arrow_24_filled.svg │ │ │ │ │ ├── ic_ready_outline_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_check_circle_black_24pt_1x.png │ │ │ │ │ │ ├── outline_check_circle_black_24pt_2x.png │ │ │ │ │ │ └── outline_check_circle_black_24pt_3x.png │ │ │ │ │ ├── ic_satisfied_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_sentiment_satisfied_black_24pt_1x.png │ │ │ │ │ │ ├── outline_sentiment_satisfied_black_24pt_2x.png │ │ │ │ │ │ └── outline_sentiment_satisfied_black_24pt_3x.png │ │ │ │ │ ├── ic_share_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_share_black_24pt_1x.png │ │ │ │ │ │ ├── outline_share_black_24pt_2x.png │ │ │ │ │ │ └── outline_share_black_24pt_3x.png │ │ │ │ │ ├── ic_sick_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_sick_black_24pt_1x.png │ │ │ │ │ │ ├── outline_sick_black_24pt_2x.png │ │ │ │ │ │ └── outline_sick_black_24pt_3x.png │ │ │ │ │ ├── ic_sleep_hotel_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_hotel_black_24pt_1x.png │ │ │ │ │ │ ├── outline_hotel_black_24pt_2x.png │ │ │ │ │ │ └── outline_hotel_black_24pt_3x.png │ │ │ │ │ ├── ic_star_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_star_black_24pt_1x.png │ │ │ │ │ │ ├── outline_star_black_24pt_2x.png │ │ │ │ │ │ └── outline_star_black_24pt_3x.png │ │ │ │ │ ├── ic_stop_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_stop_black_24pt_1x.png │ │ │ │ │ │ ├── outline_stop_black_24pt_2x.png │ │ │ │ │ │ └── outline_stop_black_24pt_3x.png │ │ │ │ │ ├── ic_stop_24_filled.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_stop_24_filled.svg │ │ │ │ │ ├── ic_sync_error_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_sync_problem_black_24pt_1x.png │ │ │ │ │ │ ├── outline_sync_problem_black_24pt_2x.png │ │ │ │ │ │ └── outline_sync_problem_black_24pt_3x.png │ │ │ │ │ ├── ic_sync_off_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_sync_disabled_black_24pt_1x.png │ │ │ │ │ │ ├── outline_sync_disabled_black_24pt_2x.png │ │ │ │ │ │ └── outline_sync_disabled_black_24pt_3x.png │ │ │ │ │ ├── ic_sync_on_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_sync_black_24pt_1x.png │ │ │ │ │ │ ├── outline_sync_black_24pt_2x.png │ │ │ │ │ │ └── outline_sync_black_24pt_3x.png │ │ │ │ │ ├── ic_very_dissatisfied_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_sentiment_very_dissatisfied_black_24pt_1x.png │ │ │ │ │ │ ├── outline_sentiment_very_dissatisfied_black_24pt_2x.png │ │ │ │ │ │ └── outline_sentiment_very_dissatisfied_black_24pt_3x.png │ │ │ │ │ ├── ic_very_satisfied_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_sentiment_very_satisfied_black_24pt_1x.png │ │ │ │ │ │ ├── outline_sentiment_very_satisfied_black_24pt_2x.png │ │ │ │ │ │ └── outline_sentiment_very_satisfied_black_24pt_3x.png │ │ │ │ │ ├── ic_warning_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_warning_black_24pt_1x.png │ │ │ │ │ │ ├── outline_warning_black_24pt_2x.png │ │ │ │ │ │ └── outline_warning_black_24pt_3x.png │ │ │ │ │ ├── ic_wifi_off_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_wifi_off_black_24pt_1x.png │ │ │ │ │ │ ├── outline_wifi_off_black_24pt_2x.png │ │ │ │ │ │ └── outline_wifi_off_black_24pt_3x.png │ │ │ │ │ ├── ic_wifi_on_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_wifi_black_24pt_1x.png │ │ │ │ │ │ ├── outline_wifi_black_24pt_2x.png │ │ │ │ │ │ └── outline_wifi_black_24pt_3x.png │ │ │ │ │ ├── ic_wifi_tethering_24.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── outline_wifi_tethering_black_24pt_1x.png │ │ │ │ │ │ ├── outline_wifi_tethering_black_24pt_2x.png │ │ │ │ │ │ └── outline_wifi_tethering_black_24pt_3x.png │ │ │ │ │ └── ic_zoom_out.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_zoom_out.png │ │ │ │ ├── realboards │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── board_loratracker.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── board_loratracker.png │ │ │ │ │ ├── real_board_astra.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_astra.png │ │ │ │ │ ├── real_board_b_l475e_iot01bx.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_b_l475e_iot01bx.jpg │ │ │ │ │ ├── real_board_b_l4s5i_iot01a.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_b_l4s5i_iot01a.png │ │ │ │ │ ├── real_board_bluecoin.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_bluecoin.png │ │ │ │ │ ├── real_board_discovery_kit_wb1m.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_discovery_kit_wb1m.png │ │ │ │ │ ├── real_board_discovery_kit_wb5m.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_discovery_kit_wb5m.png │ │ │ │ │ ├── real_board_discovery_kit_wba.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_discovery_kit_wba.png │ │ │ │ │ ├── real_board_nucleo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo.png │ │ │ │ │ ├── real_board_nucleo_67w61m1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo_67w61m1.png │ │ │ │ │ ├── real_board_nucleo_u5.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo_u5.png │ │ │ │ │ ├── real_board_nucleo_wb05kn1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo_wb05kn1.png │ │ │ │ │ ├── real_board_nucleo_wb0x.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo_wb0x.png │ │ │ │ │ ├── real_board_nucleo_wb15.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo_wb15.png │ │ │ │ │ ├── real_board_nucleo_wb55.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo_wb55.png │ │ │ │ │ ├── real_board_nucleo_wba5x.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo_wba5x.png │ │ │ │ │ ├── real_board_nucleo_wba6.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_nucleo_wba6.png │ │ │ │ │ ├── real_board_pnucleo_wb55.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_pnucleo_wb55.png │ │ │ │ │ ├── real_board_proteus.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_proteus.png │ │ │ │ │ ├── real_board_robkit1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_robkit1.png │ │ │ │ │ ├── real_board_sensortile.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_sensortile.png │ │ │ │ │ ├── real_board_sensortilebox.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_sensortilebox.png │ │ │ │ │ ├── real_board_sensortilebox_pro.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_sensortilebox_pro.png │ │ │ │ │ ├── real_board_smartag1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_smartag1.png │ │ │ │ │ ├── real_board_smartag2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_smartag2.png │ │ │ │ │ ├── real_board_steval_wesu1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_steval_wesu1.png │ │ │ │ │ ├── real_board_stwinbx1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_stwinbx1.png │ │ │ │ │ ├── real_board_stwinkt1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_stwinkt1.png │ │ │ │ │ ├── real_board_stwinkt1b.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_stwinkt1b.png │ │ │ │ │ ├── real_board_stysys_sbu06.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_stysys_sbu06.png │ │ │ │ │ ├── real_board_usb_dongle_wb55.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_usb_dongle_wb55.png │ │ │ │ │ ├── real_board_wba.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_wba.png │ │ │ │ │ ├── real_board_wba5m_wpan.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_wba5m_wpan.png │ │ │ │ │ ├── real_board_wba651_dk1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_wba651_dk1.png │ │ │ │ │ ├── real_board_wesu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_board_wesu.jpg │ │ │ │ │ └── real_image_wb55mm.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── real_image_wb55mm.png │ │ │ │ ├── schemaBoards │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── schema_BlueNRGTile.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── schema_BlueNRGTile.pdf │ │ │ │ │ ├── schema_blueCoin.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── schema_blueCoin.pdf │ │ │ │ │ ├── schema_nucleo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── schema_nucleo.pdf │ │ │ │ │ ├── schema_sensorTile.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── schema_sensorTile.pdf │ │ │ │ │ ├── schema_sensorTileBox.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── schema_sensorTileBox.pdf │ │ │ │ │ └── schema_sensorTileBoxPro.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── schema_sensorTileBoxPro.png │ │ │ │ ├── sdCardRealBoards │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_sd_sensortileboxpro.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_sd_sensortileboxpro.png │ │ │ │ │ ├── img_sd_stwinbx1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_sd_stwinbx1.png │ │ │ │ │ └── img_sd_stwinkt1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_sd_stwinkt1.png │ │ │ │ └── sleepIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── sleepIcon.pdf │ │ │ └── Base.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── STUI.swift │ │ │ ├── TableView │ │ │ ├── TableDirector+Helper.swift │ │ │ ├── TableDirector.swift │ │ │ └── ViewModels │ │ │ │ ├── Common │ │ │ │ ├── BaseCellViewModel.swift │ │ │ │ ├── BaseTableViewCell.swift │ │ │ │ ├── CellViewModel.swift │ │ │ │ ├── ViewModel.swift │ │ │ │ └── ViewViewModel.swift │ │ │ │ ├── Container │ │ │ │ ├── ContainerCell.swift │ │ │ │ └── ContainerCellViewModel.swift │ │ │ │ └── Group │ │ │ │ ├── GroupCellViewModel.swift │ │ │ │ └── GroupTableViewCell.swift │ │ │ ├── Utils │ │ │ ├── Margin.swift │ │ │ └── UITapGestureRecognizerWithClosure.swift │ │ │ └── ViewModels │ │ │ ├── Action │ │ │ ├── ActionView.swift │ │ │ └── ActionViewModel.swift │ │ │ ├── ActionEnum │ │ │ ├── ActionPickerView.swift │ │ │ └── ActionPickerViewModel.swift │ │ │ ├── ActionText │ │ │ ├── ActionTextView.swift │ │ │ └── ActionTextViewModel.swift │ │ │ ├── Button │ │ │ ├── ButtonView.swift │ │ │ └── ButtonViewModel.swift │ │ │ ├── Common │ │ │ └── BaseViewModel.swift │ │ │ ├── Divisor │ │ │ └── DivisorViewModel.swift │ │ │ ├── HeaderLabel │ │ │ └── HeaderLabelViewModel.swift │ │ │ ├── ImageDetailView │ │ │ ├── ImageDetailView.swift │ │ │ ├── ImageDetailViewModel.swift │ │ │ ├── SimpleImageDetailView.swift │ │ │ └── SimpleImageDetailViewModel.swift │ │ │ ├── Label │ │ │ ├── LabelView.swift │ │ │ └── LabelViewModel.swift │ │ │ ├── Picker │ │ │ ├── PickerView.swift │ │ │ └── PickerViewViewModel.swift │ │ │ ├── Switch │ │ │ ├── SwitchView.swift │ │ │ └── SwitchViewModel.swift │ │ │ └── TextInput │ │ │ ├── TextInputView.swift │ │ │ └── TextInputViewModel.swift │ └── Tests │ │ └── STUITests │ │ └── STUITests.swift ├── STUserProfiling_iOS │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── STUserProfiling │ │ │ ├── Controllers │ │ │ ├── BaseProfilingViewController.swift │ │ │ └── UserProfiling │ │ │ │ ├── UserProfilingDelegate.swift │ │ │ │ ├── UserProfilingPresenter.swift │ │ │ │ └── UserProfilingViewController.swift │ │ │ ├── Extensions │ │ │ └── Buttonlayout+Profiling.swift │ │ │ ├── Models │ │ │ ├── Option.swift │ │ │ ├── Profile.swift │ │ │ └── Step.swift │ │ │ ├── README.txt │ │ │ ├── Resources │ │ │ ├── OptionView.xib │ │ │ └── UserProfilingView.xib │ │ │ ├── STUserProfiling.swift │ │ │ └── Views │ │ │ ├── OptionView.swift │ │ │ └── UserProfilingView.swift │ └── Tests │ │ └── STUserProfilingTests │ │ └── STUserProfilingTests.swift └── STWelcome_iOS │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── STWelcome │ │ ├── Controllers │ │ ├── License │ │ │ ├── LicenseDelegate.swift │ │ │ ├── LicensePresenter.swift │ │ │ └── LicenseViewController.swift │ │ └── Welcome │ │ │ ├── Cells │ │ │ └── PageCollectionViewCell.swift │ │ │ ├── WelcomeBaseViewController.swift │ │ │ ├── WelcomeDelegate.swift │ │ │ ├── WelcomePresenter.swift │ │ │ ├── WelcomeView.swift │ │ │ └── WelcomeViewController.swift │ │ ├── Localization │ │ ├── Localizer+Helper.swift │ │ └── Localizer.swift │ │ ├── Models │ │ ├── Welcome.swift │ │ └── WelcomePage.swift │ │ ├── README.txt │ │ ├── Resources │ │ ├── Base.lproj │ │ │ └── Localizable.strings │ │ ├── PageCollectionViewCell.xib │ │ └── WelcomeView.xib │ │ └── STWelcome.swift │ └── Tests │ └── STWelcomeTests │ └── STWelcomeTests.swift ├── README.md └── SECURITY.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /App/Application/AppDelegate+Resolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Application/AppDelegate+Resolver.swift -------------------------------------------------------------------------------- /App/Application/AppDelegate+Welcome.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Application/AppDelegate+Welcome.swift -------------------------------------------------------------------------------- /App/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Application/AppDelegate.swift -------------------------------------------------------------------------------- /App/Application/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Application/Info.plist -------------------------------------------------------------------------------- /App/Controllers/AppInfo/AppInfoDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/AppInfo/AppInfoDelegate.swift -------------------------------------------------------------------------------- /App/Controllers/AppInfo/AppInfoPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/AppInfo/AppInfoPresenter.swift -------------------------------------------------------------------------------- /App/Controllers/AppInfo/AppInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/AppInfo/AppInfoViewController.swift -------------------------------------------------------------------------------- /App/Controllers/Common/BaseNodeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Common/BaseNodeViewController.swift -------------------------------------------------------------------------------- /App/Controllers/Empty/EmptyDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Empty/EmptyDelegate.swift -------------------------------------------------------------------------------- /App/Controllers/Empty/EmptyPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Empty/EmptyPresenter.swift -------------------------------------------------------------------------------- /App/Controllers/Empty/EmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Empty/EmptyView.swift -------------------------------------------------------------------------------- /App/Controllers/Empty/EmptyView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Empty/EmptyView.xib -------------------------------------------------------------------------------- /App/Controllers/Empty/EmptyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Empty/EmptyViewController.swift -------------------------------------------------------------------------------- /App/Controllers/Main/MainPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Main/MainPresenter.swift -------------------------------------------------------------------------------- /App/Controllers/Node/Filter/NodeFilterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/Filter/NodeFilterDelegate.swift -------------------------------------------------------------------------------- /App/Controllers/Node/Filter/NodeFilterPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/Filter/NodeFilterPresenter.swift -------------------------------------------------------------------------------- /App/Controllers/Node/Filter/NodeFilterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/Filter/NodeFilterViewController.swift -------------------------------------------------------------------------------- /App/Controllers/Node/List/Cells/NodeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/Cells/NodeCell.swift -------------------------------------------------------------------------------- /App/Controllers/Node/List/Cells/NodeCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/Cells/NodeCell.xib -------------------------------------------------------------------------------- /App/Controllers/Node/List/Cells/NodeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/Cells/NodeViewModel.swift -------------------------------------------------------------------------------- /App/Controllers/Node/List/NoResultView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/NoResultView.swift -------------------------------------------------------------------------------- /App/Controllers/Node/List/Node+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/Node+Image.swift -------------------------------------------------------------------------------- /App/Controllers/Node/List/NodeListDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/NodeListDelegate.swift -------------------------------------------------------------------------------- /App/Controllers/Node/List/NodeListPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/NodeListPresenter.swift -------------------------------------------------------------------------------- /App/Controllers/Node/List/NodeListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/NodeListView.swift -------------------------------------------------------------------------------- /App/Controllers/Node/List/NodeListView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/NodeListView.xib -------------------------------------------------------------------------------- /App/Controllers/Node/List/NodeListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Controllers/Node/List/NodeListViewController.swift -------------------------------------------------------------------------------- /App/Layouts/TabBarItemLayout+ST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Layouts/TabBarItemLayout+ST.swift -------------------------------------------------------------------------------- /App/Localization/Localizer+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Localization/Localizer+Helper.swift -------------------------------------------------------------------------------- /App/Localization/Localizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Localization/Localizer.swift -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/1024x1024.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/120x120.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/120x120_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/120x120_2.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/152x152.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/167x167.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/180x180.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/20x20.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/29x29.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/40x40.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/40x40_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/40x40_2.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/40x40_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/40x40_3.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/58x58.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/58x58_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/58x58_2.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/60x60.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/76x76.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/80x80.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/80x80_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/80x80_2.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/87x87.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_checkmark_circle.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_checkmark_circle.symbolset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_checkmark_circle_fill.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_checkmark_circle_fill.symbolset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_developer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_developer.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_developer.imageset/img_developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_developer.imageset/img_developer.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_enviromental_humidity.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_enviromental_humidity.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_enviromental_led_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_enviromental_led_off.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_enviromental_led_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_enviromental_led_on.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_enviromental_pressure.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_enviromental_pressure.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_fae.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_fae.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_fae.imageset/img_fae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_fae.imageset/img_fae.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_logo_launch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_logo_launch.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_logo_launch.imageset/img_logo_launch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_logo_launch.imageset/img_logo_launch.pdf -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_other.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_other.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_other.imageset/img_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_other.imageset/img_other.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_university.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_university.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_university.imageset/img_university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_university.imageset/img_university.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome1.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome1.imageset/img_welcome1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome1.imageset/img_welcome1.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome2.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome2.imageset/img_welcome2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome2.imageset/img_welcome2.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome3.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome3.imageset/img_welcome3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome3.imageset/img_welcome3.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome4.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome4.imageset/img_welcome4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome4.imageset/img_welcome4.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome5.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome5.imageset/img_welcome5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome5.imageset/img_welcome5.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome6.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome6.imageset/img_welcome6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome6.imageset/img_welcome6.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome7.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/img_welcome7.imageset/img_welcome7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/img_welcome7.imageset/img_welcome7.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Assets.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /App/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /App/Resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /App/Resources/Entitlements/prod.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Entitlements/prod.entitlements -------------------------------------------------------------------------------- /App/Resources/Entitlements/stage.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/Entitlements/stage.entitlements -------------------------------------------------------------------------------- /App/Resources/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/License.md -------------------------------------------------------------------------------- /App/Resources/NEAILogoWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/NEAILogoWhite.gif -------------------------------------------------------------------------------- /App/Resources/art.scnassets/cubeModel.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/art.scnassets/cubeModel.scn -------------------------------------------------------------------------------- /App/Resources/art.scnassets/texture_cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/App/Resources/art.scnassets/texture_cube.png -------------------------------------------------------------------------------- /BlueMS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/BlueMS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/License.md -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Package.resolved -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Package.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/AdvertiseFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/AdvertiseFilter.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/AdvertiseInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/AdvertiseInfo.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/AdvertiseParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/AdvertiseParser.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/BlueAdvertiseInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/BlueAdvertiseInfo.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/BlueNRGAdvertiseInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/BlueNRGAdvertiseInfo.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/LE/LeAdvertiseFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/LE/LeAdvertiseFilter.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/LE/LeAdvertiseInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/LE/LeAdvertiseInfo.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/LE/LeAdvertiseParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/LE/LeAdvertiseParser.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/LE/LeBlueAdvertiseInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/LE/LeBlueAdvertiseInfo.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/NodeTypeMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Advertise/NodeTypeMapper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/CatalogService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/CatalogService.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/BleCharacteristic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/BleCharacteristic.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/Catalog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/Catalog.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/Checksum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/Checksum.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/CloudApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/CloudApp.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/DemoDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/DemoDecorator.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/ExtraExampleFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/ExtraExampleFlow.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/Firmware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/Firmware.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/FotaDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/FotaDetails.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/IconValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/IconValue.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/Maturity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/Maturity.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/OptionByte.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/OptionByte.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/StringValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/Models/StringValue.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/URLSession+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Calatog/URLSession+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/ECCommand/ECCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/ECCommand/ECCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/ECCommand/ECResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/ECCommand/ECResponse.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/Feature/FeatureCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/Feature/FeatureCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/PnpLCommand/PnpLCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/PnpLCommand/PnpLCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/StandardJsonCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Commands/StandardJsonCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BleService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BleService.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueCharacteristic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueCharacteristic.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueDelegate.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+BinaryCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+BinaryCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Catalog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Catalog.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Command.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+DebugConsole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+DebugConsole.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Discovery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Discovery.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+ECCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+ECCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Feature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Feature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Firmware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Firmware.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+HSDCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+HSDCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+Notifications.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+PnpLCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager+PnpLCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueManager.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueUUID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/BlueUUID.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/DataTransporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/DataTransporter.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/DebugConsole+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/DebugConsole+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/DebugConsole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/DebugConsole.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/DebugConsoleCallback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/DebugConsoleCallback.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/FavoritesServiceCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/FavoritesServiceCore.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/STBlueSDK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/STBlueSDK.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/WiFiSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/WiFiSettings.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/WriteDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Core/WriteDataManager.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Array+FeatureType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Array+FeatureType.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/BytesUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/BytesUtils.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/CBService+Blue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/CBService+Blue.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/CBUUID+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/CBUUID+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Data+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Data+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Data+NumberConversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Data+NumberConversion.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/DateFormatter+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/DateFormatter+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Int+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Int+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Optional+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/Optional+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/String+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/String+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/String+Regex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/String+Regex.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/UInt32+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/UInt32+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/URL+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Extensions/URL+Helper.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/AILogging/AILoggingData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/AILogging/AILoggingData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Activity/ActivityData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Activity/ActivityData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Activity/ActivityType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Activity/ActivityType.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/ADPCM/ADPCMEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/ADPCM/ADPCMEngine.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioCodec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioCodec.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioDataFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioDataFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioPlayer.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/AudioRecorder.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/Opus/OpusConfData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/Opus/OpusConfData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/Opus/OpusEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Audio/Opus/OpusEngine.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Battery/BatteryData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Battery/BatteryData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Battery/BatteryFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Battery/BatteryFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/COSensor/COSensorData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/COSensor/COSensorData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/BaseFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/BaseFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/Feature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/Feature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/FeatureField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/FeatureField.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/FeatureSample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/FeatureSample.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/FeatureType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/FeatureType.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/TimestampFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Common/TimestampFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Compass/CompassData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Compass/CompassData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Compass/CompassFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Compass/CompassFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/FreeFall/FreeFallData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/FreeFall/FreeFallData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/GNSS/GNSSData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/GNSS/GNSSData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/GNSS/GNSSFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/GNSS/GNSSFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Gyroscope/GyroscopeData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Gyroscope/GyroscopeData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/HeartRate/HeartRateData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/HeartRate/HeartRateData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Humidity/HumidityData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Humidity/HumidityData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/JsonNFC/JsonNFCData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/JsonNFC/JsonNFCData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/JsonNFC/JsonNFCFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/JsonNFC/JsonNFCFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/JsonNFC/JsonNFCModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/JsonNFC/JsonNFCModel.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Led/ControlLedFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Led/ControlLedFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/MemsGesture/GestureType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/MemsGesture/GestureType.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/MemsNorm/MemsNormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/MemsNorm/MemsNormData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/MicLevel/MicLevelsData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/MicLevel/MicLevelsData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Pedometer/PedometerData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Pedometer/PedometerData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Piano/PianoCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Piano/PianoCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Piano/PianoFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Piano/PianoFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/ContentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/ContentType.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/JSONValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/JSONValue.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/PnPLData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/PnPLData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/PnPLFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/PnPLFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/PnPLResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/PnPLResponse.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/SchemaContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/PnPLike/SchemaContent.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Pressure/PressureData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Pressure/PressureData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Proximity/ProximityData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Proximity/ProximityData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/RawPnPL/Model/RawCustom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/RawPnPL/Model/RawCustom.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Remote/RemoteData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Remote/RemoteData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/SDLogging/SDLoggingData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/SDLogging/SDLoggingData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/STREDL/STREDLData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/STREDL/STREDLData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/STREDL/STREDLFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/STREDL/STREDLFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Switch/SwitchData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Switch/SwitchData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Switch/SwitchFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Switch/SwitchFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Switch/SwitchType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/Switch/SwitchType.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/UnkownFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Features/UnkownFeature.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/BaseFirmwareService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/BaseFirmwareService.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/FirmwareServiceFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/FirmwareServiceFactory.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/FirmwareVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/FirmwareVersion.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/STM32/MemoryLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/STM32/MemoryLayout.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/URLSession+Firmware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Firmware/URLSession+Firmware.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/FWErrorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/FWErrorInfo.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDCmd+GET.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDCmd+GET.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDCmd+SET.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDCmd+SET.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDCmd.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDCmd.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDConfigData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDConfigData.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDDevice.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDDeviceInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDDeviceInfo.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDDeviceParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDDeviceParser.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDDeviceStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDDeviceStatus.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDOptionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDOptionModel.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDResponse.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDSamplesPerTs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDSamplesPerTs.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDSensor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDSensor.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDSensorStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDSensorStatus.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDSubSensor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDSubSensor.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDTag.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDTagConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/HSD/HSDTagConfig.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/License.md -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Array+Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Array+Node.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Array+NodeService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Array+NodeService.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/LE/LeNode+Advertise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/LE/LeNode+Advertise.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/LE/LeNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/LE/LeNode.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node+Advertise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node+Advertise.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node+BLE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node+BLE.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node+Image.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node+String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node+String.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/Node.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeFamily.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeFamily.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService+Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService+Command.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService+ECCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService+ECCommand.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService+Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService+Notifications.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService+ReadWrite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService+ReadWrite.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeService.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeState.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Node/NodeType.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/BlueSTM32CRC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/BlueSTM32CRC.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/FeatureFileLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/FeatureFileLogger.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/FeatureLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/FeatureLogger.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/LoadingView.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/UnwrapTimeStamp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/UnwrapTimeStamp.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/WeakCallback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/WeakCallback.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/WeakObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Sources/STBlueSDK/Utils/WeakObject.swift -------------------------------------------------------------------------------- /Packages/STBlueSDK_iOS/Tests/STBlueSDKTests/STBlueSDKTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STBlueSDK_iOS/Tests/STBlueSDKTests/STBlueSDKTests.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Package.resolved -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Package.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/README.md: -------------------------------------------------------------------------------- 1 | # iOS_Module_STCatalog 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Detail/BoardDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Detail/BoardDelegate.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Detail/BoardPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Detail/BoardPresenter.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Detail/BoardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Detail/BoardViewController.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Detail/Cellls/BoardHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Detail/Cellls/BoardHeaderCell.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Detail/Cellls/YoutubeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Detail/Cellls/YoutubeCell.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Detail/Cellls/YoutubeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Detail/Cellls/YoutubeViewModel.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Filter/DemoGroupFilterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Filter/DemoGroupFilterDelegate.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Filter/DemoGroupFilterPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Filter/DemoGroupFilterPresenter.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Firmware/List/FirmwareCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Firmware/List/FirmwareCell.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Firmware/List/FirmwareViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Firmware/List/FirmwareViewModel.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/List/BoardListDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/List/BoardListDelegate.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/List/BoardListPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/List/BoardListPresenter.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/List/BoardListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/List/BoardListViewController.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/List/View/BoardCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/List/View/BoardCell.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/List/View/BoardViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/List/View/BoardViewModel.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Localization/Localizer+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Localization/Localizer+Helper.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/Localization/Localizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/Localization/Localizer.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Sources/STCatalog/STCatalog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Sources/STCatalog/STCatalog.swift -------------------------------------------------------------------------------- /Packages/STCatalog_iOS/Tests/STCatalogTests/STCatalogTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCatalog_iOS/Tests/STCatalogTests/STCatalogTests.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Package.resolved -------------------------------------------------------------------------------- /Packages/STCore_iOS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Package.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/README.md: -------------------------------------------------------------------------------- 1 | # STCore 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Analytics/AnalyticsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Analytics/AnalyticsService.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Extensions/Bool+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Extensions/Bool+Helper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Extensions/Data+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Extensions/Data+Helper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Extensions/DateFormatter+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Extensions/DateFormatter+Helper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Extensions/FileManager+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Extensions/FileManager+Helper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Extensions/JSONDecoder+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Extensions/JSONDecoder+Helper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Extensions/URL+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Extensions/URL+Helper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Localizer/Localizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Localizer/Localizable.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Logger/Logger.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Models/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Models/App.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Models/Auth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Models/Auth.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Models/BoxedValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Models/BoxedValue.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Models/CodableWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Models/CodableWrapper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Models/Permission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Models/Permission.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Models/STError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Models/STError.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Resolver/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Resolver/Container.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Resolver/Resolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Resolver/Resolver.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/STCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/STCore.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/AuthDataStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/AuthDataStorage.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/DataKeychainPropertyWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/DataKeychainPropertyWrapper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/JsonDefaultPropertyWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/JsonDefaultPropertyWrapper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/JsonKeychainPropertyWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/JsonKeychainPropertyWrapper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/LoginService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/LoginService.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/Network/DownloadTaskPublisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/Network/DownloadTaskPublisher.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/Network/MultipartFileBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/Network/MultipartFileBuilder.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/Network/MultipartRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/Network/MultipartRequest.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/Network/NetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/Network/NetworkService.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/Network/UploadTaskPublisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/Network/UploadTaskPublisher.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/SessionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/SessionService.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Sources/STCore/Services/UserDefaultPropertyWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Sources/STCore/Services/UserDefaultPropertyWrapper.swift -------------------------------------------------------------------------------- /Packages/STCore_iOS/Tests/STCoreTests/STCoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STCore_iOS/Tests/STCoreTests/STCoreTests.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Package.resolved -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Package.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/README.md: -------------------------------------------------------------------------------- 1 | # STDemos 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARBaseView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARGMPView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARGMPView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARGMPView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARGMPView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARIGNView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARIGNView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARIGNView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARIGNView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARMLCView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARMLCView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARMLCView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARMLCView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARMotionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ActivityRecognition/View/ARMotionView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Battery/BatteryDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Battery/BatteryDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Battery/BatteryPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Battery/BatteryPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Battery/BatteryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Battery/BatteryViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Battery/VIews/BatteryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Battery/VIews/BatteryView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Battery/VIews/RSSIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Battery/VIews/RSSIView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BeamForming/BeamFormingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BeamForming/BeamFormingDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BeamForming/BeamFormingPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BeamForming/BeamFormingPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BeamForming/BeamFormingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BeamForming/BeamFormingView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BeamForming/BeamFormingView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BeamForming/BeamFormingView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BinaryContent/BinaryContentDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BinaryContent/BinaryContentDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BinaryContent/BinaryContentPresent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BinaryContent/BinaryContentPresent.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoiceDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoiceDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoicePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoicePresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoiceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoiceView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoiceView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoiceView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoiceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/BlueVoice/BlueVoiceViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/CarryPosition/CarryPositionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/CarryPosition/CarryPositionDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/CarryPosition/CarryPositionPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/CarryPosition/CarryPositionPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/CloudMQTT/CloudMQTTDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/CloudMQTT/CloudMQTTDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/CloudMQTT/CloudMQTTMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/CloudMQTT/CloudMQTTMainView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/CloudMQTT/CloudMQTTPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/CloudMQTT/CloudMQTTPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/CloudMQTT/CloudMQTTViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/CloudMQTT/CloudMQTTViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Common/BaseNodeNoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Common/BaseNodeNoViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Common/DemoNodeTableNoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Common/DemoNodeTableNoViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Common/DemoNodeTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Common/DemoNodeTableViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Common/DemoNodeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Common/DemoNodeViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Common/DemoPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Common/DemoPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Common/Localizer+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Common/Localizer+Helper.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Common/Localizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Common/Localizer.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Common/TableNodeNoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Common/TableNodeNoViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Compass/CompassDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Compass/CompassDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Compass/CompassPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Compass/CompassPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Compass/CompassView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Compass/CompassView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Compass/CompassView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Compass/CompassView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Compass/CompassViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Compass/CompassViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/DebugConsole/DebugConsoleDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/DebugConsole/DebugConsoleDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/DebugConsole/DebugConsolePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/DebugConsole/DebugConsolePresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Environmental/EnviromentalDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Environmental/EnviromentalDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Environmental/EnviromentalPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Environmental/EnviromentalPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Environmental/EnviromentalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Environmental/EnviromentalView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Environmental/EnviromentalView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Environmental/EnviromentalView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Environmental/SensorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Environmental/SensorView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Environmental/SensorView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Environmental/SensorView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/EventCounter/EventCounterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/EventCounter/EventCounterDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/EventCounter/EventCounterPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/EventCounter/EventCounterPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/FFTDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/FFTDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/FFTPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/FFTPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/FFTViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/FFTViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/Model/FFTDetailModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/Model/FFTDetailModels.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/FFT/Stats/FFTStatsViewModel.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Firmware/Checker/FirmwareCheckerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Firmware/Checker/FirmwareCheckerView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Firmware/Checker/FirmwareCheckerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Firmware/Checker/FirmwareCheckerView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Firmware/Select/BoardInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Firmware/Select/BoardInfoView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Firmware/Select/STM32FirmwareTypeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Firmware/Select/STM32FirmwareTypeView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Extensions/Array+Flow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Extensions/Array+Flow.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Extensions/FileManager+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Extensions/FileManager+Helper.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Extensions/String+sanitazed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Extensions/String+sanitazed.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/FlowMainPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/FlowMainPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/FlowTab/FlowNew/NewFlowDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/FlowTab/FlowNew/NewFlowDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/FlowTab/FlowTabDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/FlowTab/FlowTabDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/FlowTab/FlowTabPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/FlowTab/FlowTabPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/FlowTab/FlowTabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/FlowTab/FlowTabViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Barometer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Barometer.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Barometer_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Barometer_pro.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Compass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Compass.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Compass_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Compass_pro.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Data recorder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Data recorder.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Data recorder_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Data recorder_pro.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Level.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Level_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Level_pro.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/NFC Writer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/NFC Writer.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/NFC WriterB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/NFC WriterB.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Pedometer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Pedometer.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Pedometer_pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Pedometer_pro.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Q-Touch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/Q-Touch.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/SensorFusionCube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/Examples/SensorFusionCube.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/counter_flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/counter_flows.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/exp_flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/exp_flows.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/filters.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/functions.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/output.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Json/sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Json/sensors.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Condition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Condition.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Configuration.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Filter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Flow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Flow.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/FlowItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/FlowItem.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Function.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Function.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/MandatoryInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/MandatoryInput.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/MoreItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/MoreItem.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Output.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Output.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/PowerMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/PowerMode.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Property.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/RadioValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/RadioValue.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Sensor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Models/Sensor.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/MoreTab/Cell/FlowMoreItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/MoreTab/Cell/FlowMoreItemCell.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/MoreTab/FlowMoreTabDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/MoreTab/FlowMoreTabDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/MoreTab/FlowMoreTabPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/MoreTab/FlowMoreTabPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/MoreTab/Model/FlowMoreItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/MoreTab/Model/FlowMoreItem.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/SensorsTab/SensorsTabDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/SensorsTab/SensorsTabDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/SensorsTab/SensorsTabPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/SensorsTab/SensorsTabPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Services/Communication/Uploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Services/Communication/Uploader.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Services/Modal/ModalService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Services/Modal/ModalService.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Utils/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Utils/Constants.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Utils/DIL24Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Utils/DIL24Utilities.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Validator/MinValueValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Validator/MinValueValidator.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Validator/Validator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Validator/Validator.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Views/CheckBox/CheckBoxGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Views/CheckBox/CheckBoxGroup.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Views/CheckBox/CheckBoxGroup.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Views/CheckBox/CheckBoxGroup.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Views/CheckBox/CheckBoxRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Views/CheckBox/CheckBoxRow.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Views/CheckBox/CheckBoxRow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Views/CheckBox/CheckBoxRow.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Views/Picker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Views/Picker.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Flow/Views/TextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Flow/Views/TextField.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/GNSS/GNSSDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/GNSS/GNSSDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/GNSS/GNSSPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/GNSS/GNSSPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/GNSS/GNSSViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/GNSS/GNSSViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/GNSS/Views/GNSSCoordinatesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/GNSS/Views/GNSSCoordinatesView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/GNSS/Views/GNSSSatellitesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/GNSS/Views/GNSSSatellitesView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/HeartRate/HeartRateDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/HeartRate/HeartRateDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/HeartRate/HeartRatePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/HeartRate/HeartRatePresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/HeartRate/HeartRateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/HeartRate/HeartRateViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/HighSpeedDataLog/HSDPnpLPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/HighSpeedDataLog/HSDPnpLPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/HighSpeedDataLog/HSDPnpLTagPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/HighSpeedDataLog/HSDPnpLTagPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/HighSpeedDataLog/HSDPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/HighSpeedDataLog/HSDPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/HighSpeedDataLog/HSDWaitingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/HighSpeedDataLog/HSDWaitingView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/JsonNfc/JsonNfcViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Legacy/LegacyDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Legacy/LegacyDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Legacy/LegacyPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Legacy/LegacyPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Legacy/LegacyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Legacy/LegacyViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Legacy/View/LegacyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Legacy/View/LegacyView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Legacy/WorkInProgressDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Legacy/WorkInProgressDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Legacy/WorkInProgressPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Legacy/WorkInProgressPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Legacy/WorkInProgressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Legacy/WorkInProgressViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Level/LevelDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Level/LevelDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Level/LevelPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Level/LevelPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Level/LevelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Level/LevelViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Level/View/LevelGraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Level/View/LevelGraphView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Level/View/LevelSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Level/View/LevelSelectionView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Level/View/PitchRollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Level/View/PitchRollView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Level/View/ZerosButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Level/View/ZerosButtonView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/LinkToApp/DedicatedAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/LinkToApp/DedicatedAppDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/LinkToApp/DedicatedAppPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/LinkToApp/DedicatedAppPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/LinkToApp/DedicatedAppViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/LinkToApp/DedicatedAppViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/LinkToApp/Model/DedicatedAppInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/LinkToApp/Model/DedicatedAppInfo.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/LinkToApp/View/DedicatedAppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/LinkToApp/View/DedicatedAppView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/List/Cells/DemoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/List/Cells/DemoCell.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/List/Cells/DemoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/List/Cells/DemoViewModel.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/List/Cells/NodeHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/List/Cells/NodeHeaderCell.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/List/Cells/NodeHeaderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/List/Cells/NodeHeaderViewModel.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/List/DemoListDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/List/DemoListDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/List/DemoListPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/List/DemoListPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/List/DemoListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/List/DemoListViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/List/DemoPermission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/List/DemoPermission.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/MEMSSensorFusion/MEMSSensorFusionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/MEMSSensorFusion/MEMSSensorFusionView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/MedicalSignal/MedicalSignalDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/MedicalSignal/MedicalSignalDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/MedicalSignal/MedicalSignalPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/MedicalSignal/MedicalSignalPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/MedicalSignal/View/Medical16View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/MedicalSignal/View/Medical16View.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/MemsGesture/MemsGestureDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/MemsGesture/MemsGestureDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/MemsGesture/MemsGesturePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/MemsGesture/MemsGesturePresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Models/Demo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Models/Demo.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Models/LineConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Models/LineConfig.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/MotionIntensity/MotionIntensityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/MotionIntensity/MotionIntensityView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/MotionIntensity/MotionIntensityView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/MotionIntensity/MotionIntensityView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/NEAIAnomalyDetection/GifLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/NEAIAnomalyDetection/GifLoader.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Pedometer/PedometerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Pedometer/PedometerDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Pedometer/PedometerPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Pedometer/PedometerPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Pedometer/PedometerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Pedometer/PedometerViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Piano/Model/PianoKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Piano/Model/PianoKey.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Piano/Model/PianoKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Piano/Model/PianoKeyboard.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Piano/PianoDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Piano/PianoDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Piano/PianoPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Piano/PianoPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Piano/PianoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Piano/PianoView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Piano/PianoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Piano/PianoViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Plot/Extension/PlotExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Plot/Extension/PlotExtension.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Plot/Extension/PlotUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Plot/Extension/PlotUtil.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Plot/PlotDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Plot/PlotDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Plot/PlotPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Plot/PlotPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Plot/PlotViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Plot/PlotViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/Cells/PnpLComponentTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/Cells/PnpLComponentTableViewCell.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/JSONValue+PnpL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/JSONValue+PnpL.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLComponentContent+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLComponentContent+Helper.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLContent+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLContent+Helper.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLContent+ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLContent+ViewModel.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/PnpLViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/ViewModels/ObjectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/ViewModels/ObjectView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/PnpL/ViewModels/ObjectViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/PnpL/ViewModels/ObjectViewModel.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/STDemos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/STDemos.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLFirstSampleDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLFirstSampleDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLView.xib -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/STREDL/STREDLViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Switch/SwitchDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Switch/SwitchDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Switch/SwitchFirstSampleDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Switch/SwitchFirstSampleDelegate.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Switch/SwitchPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Switch/SwitchPresenter.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Switch/SwitchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Switch/SwitchViewController.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ToFMultiObject/Views/ToFDistanceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ToFMultiObject/Views/ToFDistanceView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ToFMultiObject/Views/ToFObjectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ToFMultiObject/Views/ToFObjectView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/ToFMultiObject/Views/ToFPresenceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/ToFMultiObject/Views/ToFPresenceView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Views/Chart/ChartData+Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Views/Chart/ChartData+Buffer.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Views/Chart/ChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Views/Chart/ChartView.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Views/Chart/PnpLContent+Chart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Views/Chart/PnpLContent+Chart.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Views/Chart/RawPnPLStreamEntry+Chart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Views/Chart/RawPnPLStreamEntry+Chart.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Sources/STDemos/Views/Chart/RawPnplStreamDataBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Sources/STDemos/Views/Chart/RawPnplStreamDataBuffer.swift -------------------------------------------------------------------------------- /Packages/STDemos_iOS/Tests/STDemosTests/STDemosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STDemos_iOS/Tests/STDemosTests/STDemosTests.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Package.resolved -------------------------------------------------------------------------------- /Packages/STUI_iOS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Package.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/README.md: -------------------------------------------------------------------------------- 1 | # STUI 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Alert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Alert.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Common/Localizer+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Common/Localizer+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Common/Localizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Common/Localizer.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Common/StandardHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Common/StandardHUD.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertDelegate.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertView.xib -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertViewController.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/Alert/AlertViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/BaseViewController.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/CallbackAlert/CallbackAlertView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/CallbackAlert/CallbackAlertView.xib -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/FilePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/FilePicker.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/MainView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/MainView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/MainView.xib -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/TabBarDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/TabBarDelegate.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/TabBarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/TabBarItem.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/TabBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/TabBarView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/TabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/TabBar/TabBarViewController.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/TabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/TabBarController.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Controllers/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Controllers/TableViewController.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIAlertAction+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIAlertAction+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIAlertController+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIAlertController+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UICollectionView+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UICollectionView+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UICollectionViewCell+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UICollectionViewCell+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIColor+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIColor+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIControl+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIControl+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIDevice+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIDevice+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIEdgeInsets+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIEdgeInsets+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIImage+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIImage+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIImage+Render.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIImage+Render.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UINavigationController+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UINavigationController+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIStackView+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIStackView+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UITableView+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UITableView+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UITableViewCell+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UITableViewCell+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIView+Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIView+Animation.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIView+Constraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIView+Constraints.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIView+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIView+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIView+Shape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIView+Shape.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIViewController+App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIViewController+App.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Extensions/UIViewController+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Extensions/UIViewController+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/ButtonLayout+ST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/ButtonLayout+ST.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/ButtonLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/ButtonLayout.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/ColorLayout+ST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/ColorLayout+ST.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/ColorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/ColorLayout.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/FontLayout+ST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/FontLayout+ST.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/FontLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/FontLayout.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/ImageLayout+Board.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/ImageLayout+Board.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/ImageLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/ImageLayout.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/NavigationLayout+ST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/NavigationLayout+ST.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/NavigationLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/NavigationLayout.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/TabBarItemLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/TabBarItemLayout.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/TextInputLayout+ST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/TextInputLayout+ST.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/TextInputLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/TextInputLayout.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/TextLayout+ST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/TextLayout+ST.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Layouts/TextLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Layouts/TextLayout.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Navigator/Navigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Navigator/Navigator.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Navigator/StandardNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Navigator/StandardNavigator.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Presenters/BasePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Presenters/BasePresenter.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Presenters/VoidPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Presenters/VoidPresenter.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Resources/Assets.xcassets/logo/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Resources/Assets.xcassets/logo/Contents.json -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/STUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/STUI.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/TableView/TableDirector+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/TableView/TableDirector+Helper.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/TableView/TableDirector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/TableView/TableDirector.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/TableView/ViewModels/Common/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/TableView/ViewModels/Common/ViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Utils/Margin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Utils/Margin.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/Utils/UITapGestureRecognizerWithClosure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/Utils/UITapGestureRecognizerWithClosure.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Action/ActionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Action/ActionView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Action/ActionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Action/ActionViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/ActionEnum/ActionPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/ActionEnum/ActionPickerView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/ActionText/ActionTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/ActionText/ActionTextView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Button/ButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Button/ButtonView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Button/ButtonViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Button/ButtonViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Common/BaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Common/BaseViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Divisor/DivisorViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Divisor/DivisorViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Label/LabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Label/LabelView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Label/LabelViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Label/LabelViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Picker/PickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Picker/PickerView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Picker/PickerViewViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Picker/PickerViewViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Switch/SwitchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Switch/SwitchView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/Switch/SwitchViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/Switch/SwitchViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/TextInput/TextInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/TextInput/TextInputView.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Sources/STUI/ViewModels/TextInput/TextInputViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Sources/STUI/ViewModels/TextInput/TextInputViewModel.swift -------------------------------------------------------------------------------- /Packages/STUI_iOS/Tests/STUITests/STUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUI_iOS/Tests/STUITests/STUITests.swift -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUserProfiling_iOS/Package.resolved -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUserProfiling_iOS/Package.swift -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/README.md: -------------------------------------------------------------------------------- 1 | # STUserProfiling 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/Sources/STUserProfiling/Models/Option.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUserProfiling_iOS/Sources/STUserProfiling/Models/Option.swift -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/Sources/STUserProfiling/Models/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUserProfiling_iOS/Sources/STUserProfiling/Models/Profile.swift -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/Sources/STUserProfiling/Models/Step.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUserProfiling_iOS/Sources/STUserProfiling/Models/Step.swift -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/Sources/STUserProfiling/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/Sources/STUserProfiling/STUserProfiling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUserProfiling_iOS/Sources/STUserProfiling/STUserProfiling.swift -------------------------------------------------------------------------------- /Packages/STUserProfiling_iOS/Sources/STUserProfiling/Views/OptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STUserProfiling_iOS/Sources/STUserProfiling/Views/OptionView.swift -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Package.resolved -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Package.swift -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/README.md: -------------------------------------------------------------------------------- 1 | # STWelcome 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Sources/STWelcome/Localization/Localizer+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Sources/STWelcome/Localization/Localizer+Helper.swift -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Sources/STWelcome/Localization/Localizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Sources/STWelcome/Localization/Localizer.swift -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Sources/STWelcome/Models/Welcome.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Sources/STWelcome/Models/Welcome.swift -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Sources/STWelcome/Models/WelcomePage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Sources/STWelcome/Models/WelcomePage.swift -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Sources/STWelcome/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Sources/STWelcome/Resources/WelcomeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Sources/STWelcome/Resources/WelcomeView.xib -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Sources/STWelcome/STWelcome.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Sources/STWelcome/STWelcome.swift -------------------------------------------------------------------------------- /Packages/STWelcome_iOS/Tests/STWelcomeTests/STWelcomeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/Packages/STWelcome_iOS/Tests/STWelcomeTests/STWelcomeTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STMicroelectronics/STBLESensor_iOS/HEAD/SECURITY.md --------------------------------------------------------------------------------