hlmstgo
Posts: 4
Joined: Tue Mar 15, 2016 1:15 am

WiFi connection: Raspberry Pi 3

Tue Mar 15, 2016 1:23 am

Hello,

I'm new on raspberry developing, but looking for a way to send data to a server I found the raspberry pi 3. I already bought it, but I have not found a way to control the Bluetooth and WiFi modules. Is there an API reference for this modules?

Regards,

Harry

User avatar
MarkHaysHarris777
Posts: 1820
Joined: Mon Mar 23, 2015 7:39 am
Location: Rochester, MN
Contact: Website

Re: WiFi connection: Raspberry Pi 3

Tue Mar 15, 2016 4:00 am

https://www.raspberrypi.org/documentati ... /wireless/

Note the command line links at the bottom of the page, too.
marcus
:ugeek:

seprim
Posts: 5
Joined: Tue Mar 15, 2016 8:06 am
Location: Merzig

Re: WiFi connection: Raspberry Pi 3

Tue Mar 15, 2016 8:10 am

Hey
I've gt an question about the built-in Bluetooth on RPi3
How could I activate this module?
Yours sincearly
Seprim
You can never solve problems with same reasoning, by which they were created. (Albert Einstein)
I do not agree with the mathematics. I mean, that the sum of zeroes is a dangerous number. (Stanislaw Jerzy Lec)

User avatar
MarkHaysHarris777
Posts: 1820
Joined: Mon Mar 23, 2015 7:39 am
Location: Rochester, MN
Contact: Website

Re: WiFi connection: Raspberry Pi 3

Tue Mar 15, 2016 9:25 pm

It is active out-of-box.
marcus
:ugeek:

seprim
Posts: 5
Joined: Tue Mar 15, 2016 8:06 am
Location: Merzig

Re: WiFi connection: Raspberry Pi 3

Wed Mar 16, 2016 8:48 am

OK, but how could i connect an, for example, bluetooth mouse to this module
is there any hidden gui or anything else?
You can never solve problems with same reasoning, by which they were created. (Albert Einstein)
I do not agree with the mathematics. I mean, that the sum of zeroes is a dangerous number. (Stanislaw Jerzy Lec)

User avatar
DougieLawson
Posts: 39303
Joined: Sun Jun 16, 2013 11:19 pm
Location: A small cave in deepest darkest Basingstoke, UK
Contact: Website Twitter

Re: WiFi connection: Raspberry Pi 3

Thu Mar 17, 2016 6:50 pm

sudo apt-get install blueman

That gives you the blueman-applet which sits on the GUI taskbar and does all the special stuff you need for bluetooth.
Note: Any requirement to use a crystal ball or mind reading will result in me ignoring your question.

Criticising any questions is banned on this forum.

Any DMs sent on Twitter will be answered next month.
All non-medical doctors are on my foes list.

seprim
Posts: 5
Joined: Tue Mar 15, 2016 8:06 am
Location: Merzig

Re: WiFi connection: Raspberry Pi 3

Fri Mar 18, 2016 9:33 am

thx for the reply

Unfortunately, I haven't got my raspberry with me that I can test out the GUI until next week.
You can never solve problems with same reasoning, by which they were created. (Albert Einstein)
I do not agree with the mathematics. I mean, that the sum of zeroes is a dangerous number. (Stanislaw Jerzy Lec)

Massi
Posts: 1691
Joined: Fri May 02, 2014 1:52 pm
Location: Italy

Re: WiFi connection: Raspberry Pi 3

Fri Mar 18, 2016 9:44 am

DougieLawson wrote:sudo apt-get install blueman

That gives you the blueman-applet which sits on the GUI taskbar and does all the special stuff you need for bluetooth.
does this manage also the rfcomm outgoing connection?

hlmstgo
Posts: 4
Joined: Tue Mar 15, 2016 1:15 am

Re: WiFi connection: Raspberry Pi 3

Sun Mar 20, 2016 8:21 pm

Thanks to all!

Now I have another problem. I was doing some nodejs code to connect to the wifi using the npm library called wireless-tools and on the moment when I try to scan using the method of the library, it don't showed nothing. I boot the pi to Desktop GUI and waited for it to scan and any AP was showed and mi cellphone was set as hotspot apart of my router wifi interface.

I tried using another SD with a non edited version of Raspbian Jessie and the problem continues. Also tried using both SDs the command iwlist wlan0 scan and nothing happend. What could be the problem?

Regards,

User avatar
DougieLawson
Posts: 39303
Joined: Sun Jun 16, 2013 11:19 pm
Location: A small cave in deepest darkest Basingstoke, UK
Contact: Website Twitter

Re: WiFi connection: Raspberry Pi 3

Sun Mar 20, 2016 8:28 pm

hlmstgo wrote:What could be the problem?
Most unexplained problems with most raspberries are down to a worse than useless power supply or a useless cable between your power supply and your RPi.
Note: Any requirement to use a crystal ball or mind reading will result in me ignoring your question.

Criticising any questions is banned on this forum.

Any DMs sent on Twitter will be answered next month.
All non-medical doctors are on my foes list.

hlmstgo
Posts: 4
Joined: Tue Mar 15, 2016 1:15 am

Re: WiFi connection: Raspberry Pi 3

Sun Mar 20, 2016 8:47 pm

DougieLawson wrote:
hlmstgo wrote:What could be the problem?
Most unexplained problems with most raspberries are down to a worse than useless power supply or a useless cable between your power supply and your RPi.
ok, i will try that. Thanks and sorry for by bad english :roll:

hlmstgo
Posts: 4
Joined: Tue Mar 15, 2016 1:15 am

Re: WiFi connection: Raspberry Pi 3

Sun Mar 20, 2016 9:50 pm

hlmstgo wrote:
DougieLawson wrote:
hlmstgo wrote:What could be the problem?
Most unexplained problems with most raspberries are down to a worse than useless power supply or a useless cable between your power supply and your RPi.
ok, i will try that. Thanks and sorry for by bad english :roll:

I changed the power supply to the one used to charge the iPads. The output is 5V1 and 2A1, but it did not worked. Looking on other post I found that the output that the command

Code: Select all

iwconfig wlan0
shows the following to other users

Code: Select all

wlan0     IEEE 802.11bgn  ESSID:off/any
          Mode:Managed  Access Point: Not-Associated   Tx-Power=1496 dBm
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
In my case is throws:

Code: Select all

wlan0     IEEE 802.11bgn  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=1496 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:on
the difference is that the power management on my output appears as ON.

I edited the

Code: Select all

/etc/network/interfaces
file and added

Code: Select all

wireless-power off
and it worked, but the problem persist. :?

User avatar
DougieLawson
Posts: 39303
Joined: Sun Jun 16, 2013 11:19 pm
Location: A small cave in deepest darkest Basingstoke, UK
Contact: Website Twitter

Re: WiFi connection: Raspberry Pi 3

Sun Mar 20, 2016 11:11 pm

Run sudo apt-get update && sudo apt-get -y upgrade that will get a new kernel and firmware that should iron out all of your Pi3B WiFi problems.
Note: Any requirement to use a crystal ball or mind reading will result in me ignoring your question.

Criticising any questions is banned on this forum.

Any DMs sent on Twitter will be answered next month.
All non-medical doctors are on my foes list.

idahonewpiguy
Posts: 1
Joined: Mon Mar 21, 2016 5:53 am

Re: WiFi connection: Raspberry Pi 3

Mon Mar 21, 2016 6:07 am

I have owned my Pi 3 for a week and a half and I am unable to get the WiFi to come on and I have not even looked at the bluetooth. I have a feeling it is something simple that I am not doing. this is the RPi i have owned, but i do have some computer experience. I have ran the apt-get update and upgrade right now. when I run my cursor over the network icon it list the wlan as not associated. Could I have turned it off? thanks for any help

DenAWilliams
Posts: 2
Joined: Tue Mar 22, 2016 8:35 pm

Re: WiFi connection: Raspberry Pi 3

Tue Mar 22, 2016 8:38 pm

I'm having the same problem. Help.

seprim
Posts: 5
Joined: Tue Mar 15, 2016 8:06 am
Location: Merzig

Re: WiFi connection: Raspberry Pi 3

Wed Mar 23, 2016 10:37 am

Hey
I've tested the software blueman and it works great
Thanks a lot
Seprim
You can never solve problems with same reasoning, by which they were created. (Albert Einstein)
I do not agree with the mathematics. I mean, that the sum of zeroes is a dangerous number. (Stanislaw Jerzy Lec)

Return to “Beginners”