Go to advanced search

by Douglas6
Fri Mar 14, 2014 2:30 am
Forum: General discussion
Topic: Ben...?
Replies: 8
Views: 1524

Ben...?

I'm getting this more and more frequently when trying to access the forum...just to let someone know

General Error
SQL ERROR [ mysqli ]

Too many connections [1040]

An sql error occurred while fetching this page. Please contact an administrator if this problem persists.
by Douglas6
Wed Mar 12, 2014 9:34 pm
Forum: General discussion
Topic: rpi hangs
Replies: 4
Views: 748

Re: rpi hangs

Nope, voltage is different. You should never feed your Pi more than 5.25 volts.
by Douglas6
Mon Mar 10, 2014 10:41 pm
Forum: Automation, sensing and robotics
Topic: Raspberry PI Martini Bot
Replies: 17
Views: 10312

Re: Raspberry PI Martini Bot

Next challenge: voice control! Although this would undoubtedly become less reliable as the evening progresses.
by Douglas6
Mon Mar 10, 2014 4:07 pm
Forum: Off topic discussion
Topic: Question about power supplies (not for a Pi)
Replies: 17
Views: 3016

Re: Question about power supplies (not for a Pi)

As long as you're slicing, are the cable wires color-coded? Though even that I spose could be non-'standard'.
by Douglas6
Fri Mar 07, 2014 5:11 pm
Forum: General discussion
Topic: Control Neopixel ring with Pi
Replies: 3
Views: 2162

Re: Control Neopixel ring with Pi

Not easily no. From that product page:
"There is a single data line with a very timing-specific protocol. Since the protocol is very sensitive to timing, it requires a real-time microconroller such as an AVR, Arduino, PIC, mbed, etc. It cannot be used with a Linux-based microcomputer"
by Douglas6
Fri Mar 07, 2014 3:00 am
Forum: Automation, sensing and robotics
Topic: Raspberry pi party light show controller
Replies: 10
Views: 24902

Re: Raspberry pi party light show controller

My two cents. Converting mp3 (or any PCM) to MIDI is pretty much a non-starter, unless you're really determined. Better an FFT approach like danjperron pointed out.
by Douglas6
Fri Mar 07, 2014 2:04 am
Forum: Java
Topic: JavaFX and FBTFT
Replies: 7
Views: 3200

Re: JavaFX and FBTFT

Is there any more detail on this? I'm also looking to use an FBTFT FrameBuffer with JavaFX. I have Adafruit's pitft display and would like to put JavaFX on it. I'm C-challenged, and not sure if rebuilding OpenJFX is required or if that's even something I could do. At the moment, following Adafruit's...
by Douglas6
Fri Mar 07, 2014 12:16 am
Forum: Automation, sensing and robotics
Topic: Best way to control LED's, sound (and video) simultaneously
Replies: 40
Views: 8838

Re: Best way to control LED's, sound (and video) simultaneou

The resistors are much too small and could harm your Pi. You do not want to try and pull 20mA from the GPIO pins. Re-read ame's helpful posts, and use 220-330 ohm resistors at minimum. I'm not sure what your plans for the speaker are; you'd need a lot more electronics to connect it to a Pi. Your bes...
by Douglas6
Fri Mar 07, 2014 12:04 am
Forum: Troubleshooting
Topic: Model B doesnt Work, Model A Does?
Replies: 8
Views: 1603

Re: Model B doesnt Work, Model A Does?

Am i right in thinking the Model B is drawing too much power and somehow dropping the usb hub That would be my first thought as well. The camera is power hungry, and the model A is not, so that would jibe with your results. 1.5A is plenty of power, but not all supplies are equal. Try it again with ...
by Douglas6
Thu Mar 06, 2014 8:32 pm
Forum: Python
Topic: Adafruit Raspberry Pi Python Code TabError in v3.2
Replies: 2
Views: 758

Re: Adafruit Raspberry Pi Python Code TabError in v3.2

1. Python will search the directories that are listed in the sys.path variable for imported modules. I like to put common modules like the Adafruit ones in 'site-packages'. You can get a list for your environment by: >>> import sys >>> sys.path 2. If I recall, Python3 will not allow a mixture of tab...
by Douglas6
Wed Mar 05, 2014 8:23 pm
Forum: Off topic discussion
Topic: RadioShack to close 20% of its stores
Replies: 8
Views: 4346

Re: RadioShack to close 20% of its stores

CAn someone give me a brief description? RadioShack announced plans to close up to 1100 of its ~5000 stores due to poor sales and a $400M loss last year. You should be able to get details with a web search. I think it's sad (having spent a fair bit of my childhood trolling the aisles at RadioShack)...
by Douglas6
Wed Mar 05, 2014 7:28 pm
Forum: Beginners
Topic: Easy reset...
Replies: 8
Views: 1212

Re: Easy reset...

I believe that action 'resets' the Pi by causing an abrupt power surge or dip. I don't think it would be a recommended reset procedure; I've seen warnings in this forum NOT to do exactly that. Might as well just pull the power.
by Douglas6
Wed Mar 05, 2014 2:45 am
Forum: Off topic discussion
Topic: RadioShack to close 20% of its stores
Replies: 8
Views: 4346

Re: RadioShack to close 20% of its stores

I wasn't aware that RasPi was/is sold also at RadioShack... It is indeed. But more important to me is the odd resistor, transistor, op-amp, roll of wire, spool of solder etc. that I find myself in dire need of on a Saturday afternoon to continue my current Pi project, and that I have so far been ab...
by Douglas6
Mon Mar 03, 2014 11:42 pm
Forum: Camera board
Topic: Camera Board button
Replies: 10
Views: 2115

Re: Camera Board button

You could script it with a very simple bash script, or use Python. Just wait for a GPIO pin to go high, and run the command, either directly (in bash) or using subprocess() (in Python). Then a another line of code to make sure the button doesn't do anything until you're done recording. Sleeping for ...
by Douglas6
Mon Mar 03, 2014 6:45 pm
Forum: Camera board
Topic: Camera Board button
Replies: 10
Views: 2115

Re: Camera Board button

by Douglas6
Sun Mar 02, 2014 3:36 pm
Forum: Interfacing (DSI, CSI, I2C, etc.)
Topic: I2C problems
Replies: 11
Views: 4822

Re: I2C problems

I don't know much about the low-level details of I2C, but it sounds like you may be running up against the clock-stretching bug on the Pi?
by Douglas6
Sat Mar 01, 2014 10:12 pm
Forum: HATs and other add-ons
Topic: Adafruit 1.8 LCD pin assignments
Replies: 1
Views: 798

Re: Adafruit 1.8 LCD pin assignments

The wiring will depend on the driver you're using, I'd recommend notro's (the last one) The Adafruit board can use 5 or 3v3 power/logic. The product page says that the maximum current draw is ~50mA, which is right at the limit of the Pi's 3v3 rail, but I assume that notro, unlike me, knows what he's...
by Douglas6
Sat Mar 01, 2014 12:26 am
Forum: Media centres
Topic: BubbleUPnP Server
Replies: 15
Views: 14842

Re: BubbleUPnP Server

on all the sites/forums i've been on not one person has had to install additional codecs for the bubbleUPnP server ... running on a Raspberry Pi? There may be a good reason for that. I wouldn't expect acceptable performance using the Pi to transcode on-the-fly, even with the necessary MPEG-2 codec....
by Douglas6
Fri Feb 28, 2014 11:55 pm
Forum: Networking and servers
Topic: Get ip with no internet
Replies: 3
Views: 900

Re: Get ip with no internet

Yes. For a Wi-Fi solution, Google 'Raspberry Pi hostapd' and take your pick. For Bluetooth, this post might get you started.
by Douglas6
Fri Feb 28, 2014 6:39 pm
Forum: Media centres
Topic: BubbleUPnP Server
Replies: 15
Views: 14842

Re: BubbleUPnP Server

What types of formats are you trying to transcode from / to? Is it possible you need to install additional codecs on the Pi?
by Douglas6
Thu Feb 27, 2014 6:02 pm
Forum: Raspberry Pi OS
Topic: Remove Extra Stuff
Replies: 4
Views: 1666

Re: Remove Extra Stuff

Richard-TX wrote:This does it for me.

apt-get remove --purge oracle-java7-jdk
In preparation for installing Java 8, right? :)
by Douglas6
Thu Feb 27, 2014 12:00 am
Forum: Beginners
Topic: pi hostname not visible on network
Replies: 3
Views: 2877

Re: pi hostname not visible on network

Is avahi part of the standard distribution these days? I happened to notice it in the dmesgs, and sure enough it works. I don't remember installing it. Perhaps it came with Bluez...that, and the kitchen sink.
by Douglas6
Wed Feb 26, 2014 7:35 pm
Forum: General discussion
Topic: Raspberry Pi Bluetooth 4 USB Dongle
Replies: 4
Views: 1527

Re: Raspberry Pi Bluetooth 4 USB Dongle

Gotchya. The CSR 4.0 Looks like what I bought from Adafruit, and that's known to work on the Pi as a (P)iBeacon. I've heard tell of some CSR 4.0 clones that aren't really CSR. I guess for £1.58 you can't go too wrong.
by Douglas6
Wed Feb 26, 2014 6:27 pm
Forum: Beginners
Topic: Raspberry Pi as automated UPnP renderer
Replies: 7
Views: 1879

Re: Raspberry Pi as automated UPnP renderer

XBMC seems a bit overweight for audio only, and I'm not sure it's a UPnP renderer [EDIT: I stand corrected ], although it works great as a UPnP media server, so you would probably need to control it with JSON. MPD would be lighter and easier to handle, and I believe there's an UPnP plug in for it, i...

Go to advanced search