Stephan Schultz

Results 73 comments of Stephan Schultz

Hey, thanks a lot for your contribution!

I can't think of a use-case for myself, but if you feel like it would be nice to have, go for it. Having the option can't hurt, as long as...

Hey Rafael, thanks for your input. This library tries to support most Markdown Flavors, but especially the commonly used GitHub Flavored Markdown. According to the [specs](https://github.github.com/gfm/#tables-extension-), merged columns or cells...

Hey, I don't have plans to work on this project anytime soon. However, it shouldn't be too hard to implement. You can add your export logic to [this method](https://github.com/Steppschuh/Sensor-Data-Logger/blob/ee9f1842cf5e018aef394563fa253572b999493f/Android%20Source/mobile/src/main/java/net/steppschuh/sensordatalogger/PhoneActivity.java#L330): `PhoneActivity.onDataChanged(DataBatch...

Hey Jonathan, thanks for your contribution! I'll look into this on the weekend and get back to you. Regarding the deprecated `wearable` dependency: Are there breaking changes when updating to...

You may want to update the dependencies in the `build.gradle` file, as they haven't been touched for quite a while. Chances are that a lot of things have been deprecated...

Please create a separate issue for that, @549033790. Also, try to include some more detailed information about what you did and what you expected to happen.

Probably caused by missing latitude or longitude in predicted locations. Rendering bug happens in `BeaconMap`: ```java protected PointF getPointFromLocation(Location location) { if (location == null || !location.hasLatitudeAndLongitude()) { return new...

I would assume that this is a calibration related issue. The `Beacon` class has two fields for calibration, `calibratedDistance` and `calibratedRssi`. `calibratedDistance` is 1 meter for `iBeacon` and 0 meters...

Thanks for the detailed explanation! May I ask what values you are setting for the `calibratedRssi`? It should be the RSSI you measured for your beacons at 0m distance. That...