BetterAutomations

Results 11 comments of BetterAutomations

I tried the same and received this error in the console. Is that what you received? `2020-07-07 05:55:15.400 4026-4040/io.ionic.starter W/Binder: Binder call failed. java.lang.SecurityException: Need ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION permission to...

You mean a PIN? I don't see anything in the documentation about that. I do however see a setPin() function in the cordova-plugin-ble-central package, which may be what you need:...

In my experience, uPy is a memory hog. I've had to either compile frozen modules (include in custom firmware) or use the mpy-cross tool to make .mpy files. https://forum.micropython.org/viewtopic.php?t=4510

> import { User, auth } from 'firebase/app'; I am no expert here but I believe the code needs to be modified thusly: import { User, auth } from 'firebase';...

I was getting the same error. I went back from scratch and when Android Studio offered to upgrade Gradle I refused, I think? that solved my problem. (At the same...

Did you ever find a solution?

> Some fixes were landed as part of [ee7cb0d](https://github.com/don/cordova-plugin-ble-central/commit/ee7cb0dbeff237af37faeee97c50bfd2eb430497) > > Is this still an ongoing issue being experienced by anyone? I'm still seeing this on version 1.4.1. ``` 2021-12-31...

FLATT-Dev did that work for you? I'm having the same problem. Could it be because the Android code makes a call to bluetoothAdapter.startLeScan() in BLECentralPlugin.java which is now deprecated? https://developer.android.com/reference/android/bluetooth/BluetoothAdapter#startLeScan(java.util.UUID%5B%5D,%2520android.bluetooth.BluetoothAdapter.LeScanCallback)

I had to get it within my Ionic/Angular/Capacitor app and send to my web API. Here's the relevant code: ``` import { HttpClient, HttpParams } from '@angular/common/http'; import { ActionPerformed,...

No, I had it correctly. Observer() is latitude/longitude and the location is 30 latitude and -82 longitude.