Go to advanced search

by Laurens-wuyts
Sun Sep 13, 2015 3:41 pm
Forum: Beginners
Topic: Can Raspbery Pi be programmed to interface with Sphero Apps?
Replies: 12
Views: 2414

Re: Can Raspbery Pi be programmed to interface with Sphero A

Alex_RbPi_95 wrote:Really? Well, that sounds interesting! Could you let me know when this instructables will be available? I'm curious to check it. :!:
I'll let you know as soon as I made it! :D

Laurens
by Laurens-wuyts
Sun Sep 13, 2015 12:43 pm
Forum: Beginners
Topic: Can Raspbery Pi be programmed to interface with Sphero Apps?
Replies: 12
Views: 2414

Re: Can Raspbery Pi be programmed to interface with Sphero A

I think it's possible, but it's not going to be easy. I think you'll need the pi to act as a sphero. (I'm not sure :? ) Wouldn't it be easier to make your own app for controlling your robot? (I would like to help you :P ) I'm going to make an instructables soon on how to control a RC car using an ow...
by Laurens-wuyts
Fri Sep 11, 2015 9:00 pm
Forum: Nederlands
Topic: GPIO schema
Replies: 2
Views: 716

Re: GPIO schema

by Laurens-wuyts
Fri Sep 11, 2015 4:32 pm
Forum: Python
Topic: show image in Phython
Replies: 1
Views: 459

Re: show image in Phython

For displaying images you can use pygame. ;)
More specifically pygame.image :)

Laurens
by Laurens-wuyts
Fri Sep 11, 2015 4:30 pm
Forum: Beginners
Topic: command line text copy and paste
Replies: 6
Views: 6809

Re: command line text copy and paste

You can try putting the command into a file with an .sh extension.
Just put the command onto the first line of the file and execute it using:

Code: Select all

sh script.sh
Laurens
by Laurens-wuyts
Wed Sep 09, 2015 8:44 am
Forum: Networking and servers
Topic: Home Server
Replies: 15
Views: 2698

Re: Home Server

On windows I use WinSCP for transferring data to my pi.
You just need to go to to the directory where you mounted the hdd. ;)

Laurens
by Laurens-wuyts
Tue Sep 08, 2015 3:23 pm
Forum: Nederlands
Topic: static adress voor ethernet en Wlan
Replies: 7
Views: 1285

Re: static adress voor ethernet en Wlan

Volgens deze link zouden de foutmeldingen geen probleem zijn. ;)

Laurens
by Laurens-wuyts
Tue Sep 08, 2015 9:29 am
Forum: General discussion
Topic: WOT ? No official display thread ?
Replies: 18
Views: 4776

Re: WOT ? No official display thread ?

https://shop.pimoroni.com/products/raspberry-pi-7-touchscreen-display-with-frame?utm_source=Shopify&utm_campaign=75daf398b5-Raspberry_Pi_Official_7_Touchscreen_9_8_2015&utm_medium=email&utm_term=0_3772e11665-75daf398b5-87920401&mc_cid=75daf398b5&mc_eid=598736d11e If you would like to buy it. :P Laur...
by Laurens-wuyts
Mon Sep 07, 2015 9:42 pm
Forum: Nederlands
Topic: static adress voor ethernet en Wlan
Replies: 7
Views: 1285

Re: static adress voor ethernet en Wlan

Ik denk dat je SSID en paswoord anders ingegeven moeten worden. Probeer het eens op deze manier:

Code: Select all

network={
ssid="Thomson0A1713"
psk="############"
}
Laurens
by Laurens-wuyts
Sun Sep 06, 2015 10:03 pm
Forum: Nederlands
Topic: Eindwerk
Replies: 2
Views: 636

Re: Eindwerk

Sam_vw wrote:Mijn vraag is ofdat ik dit via de raspberry pi B+ en de camera module dit project zou kunnen uitbouwen?
Dit is zeker mogelijk met een Pi (als je nog geen Raspberry Pi hebt, kan je (denk ik) beter een Raspberry Pi 2B aanschaffen) ;)

Laurens
by Laurens-wuyts
Sat Sep 05, 2015 10:25 pm
Forum: General discussion
Topic: momentary off button advice
Replies: 2
Views: 601

Re: momentary off button advice

You can use any pin you like, GPIO 31 isn't connected to the header op the Pi 2B. In the code of the tutorial, just change: GPIO.setup(31, GPIO.IN, pull_up_down = GPIO.PUD_UP) GPIO.add_event_detect(31, GPIO.FALLING, callback = Shutdown, bouncetime = 2000) to: GPIO.setup(x, GPIO.IN, pull_up_down = GP...
by Laurens-wuyts
Sat Sep 05, 2015 8:17 pm
Forum: Networking and servers
Topic: Home Server
Replies: 15
Views: 2698

Re: Home Server

I'm also using Apache2 and I don't see a big speed difference. ;)

Laurens
by Laurens-wuyts
Sat Sep 05, 2015 7:30 pm
Forum: Python
Topic: GPIO, Python, LED Strip and Button Help
Replies: 16
Views: 3505

Re: GPIO, Python, LED Strip and Button Help

Try changing: while colour == 1: led.pulse(red=255, green=0, blue=0, repeats=1, duration=3000, steps=50) to: led.pulse(red=255, green=0, blue=0, repeats=1, duration=3000, steps=50) I don't think you need to loop the command. (I'm not sure :?)[/s] Edit: Forget what I said, I just checked the python ...
by Laurens-wuyts
Sat Sep 05, 2015 6:40 am
Forum: Networking and servers
Topic: Home Server
Replies: 15
Views: 2698

Re: Home Server

In your Nginx config file, try removing "Deny all" in "location /doc/".

Laurens
by Laurens-wuyts
Fri Sep 04, 2015 6:33 pm
Forum: Networking and servers
Topic: Home Server
Replies: 15
Views: 2698

Re: Home Server

Is your drive NTFS?
If so, I think it should be possible with the right permissions set. ;)

Laurens
by Laurens-wuyts
Fri Sep 04, 2015 5:06 pm
Forum: Networking and servers
Topic: Home Server
Replies: 15
Views: 2698

Re: Home Server

I think it would be safer (and easier) to use owncloud. It's a cloud service you install on your pi and you can login to it from your domain.

Laurens
by Laurens-wuyts
Fri Sep 04, 2015 1:29 pm
Forum: Troubleshooting
Topic: I think my Raspberry Pi B is dead, is there a way to be sure
Replies: 17
Views: 2306

Re: I think my Raspberry Pi B is dead, is there a way to be

Ah. I'm guessing the LED on the power supply has nothing to do with whether or not electricity is flowing through it? If I try charging my phone with the same ports and same cable, would that be an adequete test as to the status of the PSU? I think it will be a good test to see if the Power Supply ...
by Laurens-wuyts
Thu Sep 03, 2015 9:01 pm
Forum: Troubleshooting
Topic: I think my Raspberry Pi B is dead, is there a way to be sure
Replies: 17
Views: 2306

Re: I think my Raspberry Pi B is dead, is there a way to be

How are you powering the HDD?

Laurens
by Laurens-wuyts
Tue Sep 01, 2015 4:59 pm
Forum: General discussion
Topic: Raspberry Username
Replies: 10
Views: 1674

Re: Raspberry Username

Click on the name of the Moderator and then click "Send private message".
by Laurens-wuyts
Mon Aug 31, 2015 9:16 pm
Forum: General discussion
Topic: Raspberry Username
Replies: 10
Views: 1674

Re: Raspberry Username

Cause these are your first posts, I would say, Just make a new account with the username you want. I don't think you can change the username. ;)

Laurens
by Laurens-wuyts
Mon Aug 31, 2015 9:11 pm
Forum: Beginners
Topic: sharing the internet between laptop and RPI
Replies: 11
Views: 2801

Re: sharing the internet between laptop and RPI

You can try to scan your network using advanced IP scanner.
Look in the column "Manufacturer" for "Raspberry Pi Foundation". ;)

Laurens
by Laurens-wuyts
Mon Aug 31, 2015 9:08 pm
Forum: Nederlands
Topic: Geen internet op Raspberry pi 2 model B
Replies: 1
Views: 632

Re: Geen internet op Raspberry pi 2 model B

Heb je internet als je een computer/laptop met die poort van de modem verbindt?
Sommige modems schakelen namelijk bepaalde poorten uit.

Laurens
by Laurens-wuyts
Mon Aug 31, 2015 6:33 pm
Forum: Beginners
Topic: How to make a pi router.
Replies: 1
Views: 363

Re: How to make a pi router.

by Laurens-wuyts
Mon Aug 31, 2015 11:51 am
Forum: Beginners
Topic: electrical precision measure
Replies: 3
Views: 622

Re: electrical precision measure

For reading the voltages you'll need a Analog digital convertor, but for measuring millivolts you'll need a very precise one. You'll also in some way need to reduce the 8V to 3.3V or 5V for the Analog digital converter. You can do this by using a simple voltage divider . 10 times a second is for a R...
by Laurens-wuyts
Mon Aug 31, 2015 6:44 am
Forum: General discussion
Topic: Site Search
Replies: 4
Views: 731

Re: Site Search

You can try this option. I'm not sure how it picks the date. ;)
Image

Laurens

Go to advanced search