Notifications
Clear all

qr code

4 Posts
4 Users
0 Reactions
1,309 Views
 foxy
(@foxy)
New Member
Joined: 5 years ago
Posts: 1
Topic starter  

I got my Q.bo One robot and am trying to get it to connect. It did ask to scan a qr code. I tried one showing on my cell phone. it doesnt work. alternatives on how to connect the robot to the internet? thanx

This topic was modified 5 years ago by foxy

   
Quote
chrisbuy
(@chrisbuy)
Member
Joined: 6 years ago
Posts: 71
 

Some of us access directly the Raspberry Pi inside. If you unscrew at the bottom the circular protection case above it (the part with the on/off button on it), you can easily connect a screen, a keyboard, a mouse and even an ethernet cable. You'll notice that Q.Bo runs on a standard Raspbian OS which is fairly easy to configure (many howto's can be found on the internet). I know it sounds scary but if you are cautious it will open a realm of things you can do with Q.Bo.

--
Christian Buysschaert
Leuven - Belgium
Email christian.buysschaert@gmail.com


   
ReplyQuote
 p2k
(@p2k)
New Member
Joined: 4 years ago
Posts: 3
 
Posted by: @foxy

I got my Q.bo One robot and am trying to get it to connect. It did ask to scan a qr code. I tried one showing on my cell phone. it doesnt work. alternatives on how to connect the robot to the internet? thanx

Hi,

 

I had the same issue with my Android 10 phone. The problem is, that Android 10 adds 'H:false' into the WLAN String, but the RTQR reader thinks this is part of the password.

 

I have created a patch, that solved this for me:

--- home/pi/Documents/deamonsScripts/RTQR.py_ORIG 2020-06-02 16:39:30.828035978 +0200
+++ home/pi/Documents/deamonsScripts/RTQR.py 2020-06-02 16:39:37.268019734 +0200
@@ -57,6 +57,10 @@
ssid = info[7:indexEndName]
type = info[indexEndName+3:indexEndType]
password = info[indexEndType+3:indexEndPass]
+
+ passwordHidden = password.find(";H:")
+ if passwordHidden != -1:
+ password = password[0:passwordHidden]

blip = "aplay /home/pi/Documents/blip2.wav"
result = subprocess.call(blip, shell = True)

 

Hope this helps.

cheers,
Philipp

This post was modified 4 years ago by p2k

   
ReplyQuote
Niko
 Niko
(@niko)
Eminent Member
Joined: 6 years ago
Posts: 39
 

I tried minutes ago with my iphone and i didn´t have any problem. As Philipp said is an Android problem.


   
ReplyQuote
Share: