Markus Fisch

Results 444 comments of Markus Fisch

Interesting, will investigate. Shouldn't happen if ZXing's default client works properly.

Hm, may I ask what device you're on? And does this happen only directly after reducing the cropping limit? Or is it repeatable once you set a certain cropping limit?

Hi! Well, if you're opening the app with a return URL (the `ret` argument) like this: [binaryeye://scan/?ret=http%3A%2F%2Fmarkusfisch.de%2F%3Fresult%3D{RESULT}](binaryeye://scan/?ret=http%3A%2F%2Fmarkusfisch.de%2F%3Fresult%3D{RESULT}) The app will return immediately after scanning with the detected code in the...

Hi, and sorry for not answering back so long 🙈 Frankly, I was hoping the `ret` argument would be enough for your situation. If you are using the `ret` argument,...

Good idea. Put it on the list.

Well, Binary Eye already downsamples the camera frame to 75% (see [here](https://github.com/markusfisch/BinaryEye/blob/master/app/src/main/kotlin/de/markusfisch/android/binaryeye/rs/Preprocessor.kt#L9)) which is kind of equivalent to applying a slight blur (the downsampling also results in less data to...

Thanks for pointing this out! I'd like to improve detection for this scenario very much. The reason why it works from the camera is that the app (or rather ZXing)...

This should already work with the [com.google.zxing.client.android.SCAN](https://github.com/markusfisch/BinaryEye/blob/master/app/src/main/AndroidManifest.xml#L65) or [binaryeye://scan](https://github.com/markusfisch/BinaryEye/blob/master/app/src/main/AndroidManifest.xml#L77) Intents. You can use `adb` to test fire them like this: ``` $ adb shell am start -W -a android.intent.action.VIEW -d...

Well, unfortunately Tasker isn't free so I can't simply try it 😬 But your screenshot looks good so far! 🤔 The scanned code is a String in the `SCAN_RESULT` Extra,...

Thanks a lot for reporting this! 👍 The reason is that [WifiNetworkSuggestion.Builder.setWapiPassphrase()](https://developer.android.com/reference/android/net/wifi/WifiNetworkSuggestion.Builder#setWapiPassphrase(java.lang.String)) is throwing an `IllegalArgumentException` with the message "passphrase not ASCII encodable". I just added a try/catch block around...