GeleMaker

Results 4 comments of GeleMaker

It's only working on Android. Here is the small ionic project I created to test it. https://github.com/Shikoruma/blueserialtest I hope it will help you.

Ionic plugin are in fact cordova plugin. From your code snippet I don't see were the error is comming from. Are you sure you're giving two different addresses ? I...

Ok I found my mistake. isConnected take also a macAdress because you want to test a particular connection. I forgot to change de Readme for this function, I update it....

Same error using the tutorial https://jazzband.github.io/django-rest-knox/auth/ ``` class LoginView(KnoxLoginView): permission_classes = (permissions.AllowAny,) def post(self, request, format=None): serializer = AuthTokenSerializer(data=request.data) serializer.is_valid(raise_exception=True) user = serializer.validated_data['user'] login(request, user) return super(LoginView, self).post(request, format=None) ```...