What is the firmware version for mirror

My current mirror version is M1.1 and 1.0.10. Is that the latest one?
I have having problems to have mirror display anything in the app. But the estimote official app works.
May I ask is there any settings I didn’t do?
Thank you so much for your great help!

Best Regards,
Ying

Latest firmware is 1.0.18. You need to configure WiFi and Mirror will automatically update its firmware.
Can you provide some more information about your problem (we don’t know even if you are developing under iOS or Android)?

  • Mobile operating system and its version (iOS/Android)
  • Phone used
  • Version of Estimote SDKs used
  • Error message/exception returned by SDK
  • System logs (like logcat from Android).
  • Errors displayed by Mirror on the screen (if any)
  • Code snippets
  • Scenario to replicate problem

Hi pober,
Thank you so much for your reply. We will go update the firmware and try again.
We are working on both android and iOS. Both have the same issues

  1. currently that the image in poster view is not showing. The text did show on the screen.
  2. proximity is not working. It is basically the same as the code in the example in SDK
    self.proximityObserver = ProximityObserver(credentials: credentials, onError: { error in
    print("(error)")
    })
    let mirrorZone = ProximityZone(tag: “icemirror”, range: ProximityRange.near)
    mirrorZone.onEnter = { zoneContext in
    print(“Enter mirror”)
    self.mirrorClient.display(sneakersBanner, onMirror: zoneContext.deviceIdentifier)
    }
    mirrorZone.onExit = { zoneContext in
    print(“Exit mirror”)
    }
    self.proximityObserver.startObserving([mirrorZone])
    Other information is
  • Phone used: iPhoneX, samsung galaxy s8
  • Version of Estimote SDKs used:
    ios:latest(no version info specified in podfile),
    android:
    implementation ‘com.estimote:display-sdk:0.2.0’
    implementation ‘com.estimote:proximity-sdk:1.0.1’
    implementation ‘com.estimote:mustard:0.2.1’
  • Error message/exception returned by SDK:
    ios: corebluetooth xpc connection invalid
    android: imageview null
  • Errors displayed by Mirror on the screen (if any)
    text is displayed, but image is not
  • Scenario to replicate problem
    example code in the SDK shows the same issue
    Best Regards,
    Ying