A while back, I have purchased two camera boards (picam). I was able to get them working, but lately I have issues with them. I try to run my python script, but it keeps telling me to enable camera support through raspi-config. I do this, but I see in the background terminal the following errors whe...
Thanks for the link! However, being a newbie, I am a bit confused...
The button should - I think - trigger some kind of function that tells the RPi to shutdown (something like sudo shutdown -h now). However, how does it do this if it's just connected to two GPIO inputs?
Hi, I am using a Raspberry Pi Model A+ to do some prototyping. To this end, I connect my RPi to my PC using an ethernet cable. The idea is that I login using SSH. However, sometimes, my RPi does not become visible through SSH and I have to reboot the RPi. Often however when I do this, the whole file...
Thanks for the suggestion! Sadly I only have an iPhone... Furthermore, I was looking if there was any information available to create an app that would be able to communicate with a Raspberry Pi module through bluetooth. I did manage to pair my Raspberry Pi to my iPhone. It was easier than I anticip...
Hi there! I wonder if it is possible for a Raspberry Pi to send files to an iPhone or Android Smartphone over Bluetooth. I would like to send pictures I took with the PiCamera to my phone, but am unsure where to start... Will this require interaction from the user, or would it in practice be feasibl...
Wow :-) I found the answer to my darkest dreams :D Apparently, the camera has to have a resolution set. Namely, the CircularIO buffer is sized not based on the amount of seconds I specify, but using the resolution! If I set the resolution to some high value (eg Full HD), than it only records a few s...
Thanks a lot! It seems that this was some weird issue that now has solved itself. The testing at least could assure me that the GPIO was still functioning properly.
I check the buffer simply by using a smartphone's timer. The video records the timer. As I set the circular video to 10 sec, I should at most have 10 seconds in the past of video. However, it was even worse that I thought. The circular video does not work at all, as it just flushes the entire video ...
Thanks! I have done the following checks: 1) Used multiple different buttons 2) Used multiple different breadboard 3) Exchanged the wires 4) Checked the wiring 5) Used different pins 6) Inserted a LED on pin 23 and ground and tried to light it (did not work) 7) Checked for physical damage (none foun...
Hey! I have connected a button to the GPIO board of the RPi (Model B). Up until yesterday, it seemed to work quite well. However, since today, the button is not reacting anymore. I simply connected the button to ground and pin 17, and used a tutorial to check if it's being pressed. As it worked befo...
Hi! I am having a strange problem with the Pi Camera. My little program does the following: The camera uses PiCameraCircularIO to continuously record 20 sec Once I click a button, the previous 20 seconds will be saved to a file on the flash drive After that, the circular IO continues. If I would cli...
Hi! I am trying to use pip for working with the Raspberry Pi Camera. This works fine, but now I try to run a Python code that depends on the Image library of Python. I get an error: ImportError: No module named Image To solve this, I try to install Pillow: easy_install Pillow However, this does not ...
When I posted this question, I remembered that I used the following as startup command for the VNC Server: vncserver :0 -geometry 1280x800 -depth 24 -pixelformat rgb565 -dpi 96 I now changed that to vncserver :0 -geometry 1280x800 -depth 16 -pixelformat rgb565 And now all works fine! Probably someth...
Hi! I wanted to install TightVNC on my Raspberry so I can connect through VNC to the device. I use a laptop with Windows 8.1 on to connect and have installed TightVNC on it. I can successfully connect to the Raspberry, but once I connect to it, it shows the desktop (without any icons) and the Raspbe...
Hi there! I am doing a feasibility study for a prototype we would like to create, which we hope that Raspberry Pi can help us with. As I have not yet much experience with Raspberry Pi, I hope that you can help me point in the right direction :-) The project would attach a camera to the Pi. It would ...