Hello, There is a Qt4 GUI development system available for the Pi. sudo apt-get install qtcreator. You might want to look here, to set it up. http://www.raspberrypi.org/forums/viewtopic.php?f=31&t=43545 I don't know if the 'Eclipse' plugin will run on the Pi. QtCreator can bet set up, in such a way ...
Hello jeanleflambeur , Many thanks. I assume this is whats called sub classing. Things have changed just a little since I began programming on 6809's, (way back when) using an editor/assembler. I've got a lot to learn to get up to date with these new fangled methods. Regards void myMainWindow::showM...
Hello, I have two controls in myMainWindow. mySpinBox and myChoice[2] radioButtons I know how to get their values, but I don't know how to:- 1, Pass the values, when calling myDialog. or 2, When in myDialog read the values from myMainWindow. 3, I could write a file and read it in the QDialog. I know...
I had the same problem, after searching google, a windows registry change seems to be the solution.
I can't remember what I changed, but google has the answer.
Hello, One example:: http://www.ebay.co.uk/itm/1-10-Micro-USB-5-Pin-T-Port-Male-Plug-Socket-Connector-Adapter-Plastic-Cover-DIY-/400650802822?pt=UK_BOI_Electrical_Components_Supplies_ET&var=&hash=item5d48a61686 Just solder wires to (+5V and 0V) lines to the correct pins. the internet is you friend t...
Hello, Have a look at these for voice control; http://stevenhickson.blogspot.co.uk/2013/06/voice-command-v30-for-raspberry-pi.html http://stevenhickson.blogspot.co.uk/2013/06/installing-and-updating-piauisuite-and.html This works quite well once you've set it up. I use a USB sound card with a microp...
Hello, I've set up a swap partition on a hard drive. The output from dmesg shows it is set. How do I stop the second swap file (/var/swap) from being used/set. /dev/sda2 is the rootfs. Would it be better to use a startup script with "swapon /dev/sda1" and no entry in fstab? Regards dmesg [ 24.240534...
In an LXTerminal :-
sudo apt-get install system-config-printer
You will get a menu entry in Preferences/Printing.
I'm not sure, you may need to install 'cups' and some of its related programs.
I don't know if there is a Pi driver for this printer.
Hello joan , I'll get a friend to try pinging me tonight after work. Hello malicious , The output from netstat, I have no idea what it means. pi@mypi ~ $ sudo netstat -tnlp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0...
Hello, I would like to get remote access to my pi working, for friends and family but so far I'm not having much luck. What I've got is a Virgin Super hub set in modem mode. Hardware verson 2.00 - Software verson V2.38.01 I know the Int. IP and Ext. IP addresses. This is connected to a Belkin router...
Hello, Its all working for me. Windows 7 Using Seamonkey or Firefox, both Ok. Raspbian Wheezy. Works on Pi model 'B' works on Pi model 'B+' Both Pi's fully updated, apt-get update && apt-get upgrade && apt-get dist-upgrade && apt-get install raspberrypi* && rpi-update I start and stop RPi_Cam_Interf...
Hello joan , gordon@drogon.net & stevejferry , I found this post from way back to which both joan and gordon added too, looks interesting:- http://www.raspberrypi.org/forums/viewtopic.php?f=33&t=17688 , Joan - Thanks for the links, gives me something to read tomorrow. Gordon - Thanks for all the inf...
Hello Gordon , Thanks for the quick response. I'm not using 'wiringPi' and its only for a one shot pulse. I 've been searching and just come across the nanosleep() function, which is probably of more use:- #include <time.h> int milisec = 100; // length of time to sleep, in miliseconds struct timespe...
Hello, A question on on usleep():- Is it independent of the system clock frequency? I would like to get an output pulse in the order of 10 micro-seconds. I understand there is an overhead with the call and return and linux has its own system interupts (? repeatability). Perhaps another method could ...