Posts

Showing posts from August, 2010

what am i doing wrong

int button1 = 2;  // set button pin int button2 = 3;  // set button pin int button3 = 4;  // set button pin void setup() {   pinmode(button1, input);  // set button input   digitalwrite(button1, high);  // pull button high   pinmode(button2, input);  // set button input   digitalwrite(button2, high);  // pull button high   pinmode(button3, input);  // set button input   digitalwrite(button3, high);  // pull button high   } void loop() {   if (digitalread(button1) == 0)  // if button goes low   {    keyboard.press(key_left_ctrl);    keyboard.write('k');    delay(1000);  // delay there aren't kajillion z's    keyboard.release(key_left_ctrl);    } {   if (digitalread(button2) == 0)  // if button goes low   {    keyboard.press(key_left_ctrl);    keyboard.write('o');    delay(1000);  // delay there aren't kajillion z's    keyboard.release(key_left_ctrl);   } {   if (digitalread(button3) == 0)  // if button goes low   {    keyboard.print('space&#

Mysterious Line Gap

so solved scrolling text box problem help. however, mysterious line gap appearing between bottom 2 table cells. why such random gaps appear? please view webpage @ kaycee.mutpup.com , click on bluejack site. can offer advice? kaycee hi kaycee, my first thought remove white space between table containing the page content , table containing page bottom. example, combine lines 81 & 82 (the lines see when using view source in internet explorer) like: </table><table> a lot of times white space interpreted differently various browsers. might take care of that. there number of other things working against here well. for starters, you're using tags deprecated (<font> primarily) , the code may not validate dtd you've selected (xhtml 1.0 transitional). affecting way browser rendering page. browsers can tempermental ("mental" being key) in regard, xhtml dtd. perhaps changing page's dtd html 4.01 transitional take care of of problems (

Thread: /var/lock/subsys

hi, i'm running quite stunning. have desktop running ubuntu 9.04 , have installed netvault's backup. fine, until started doing updates , rebooted. after each update , reboot directory /var/lock/subsys gone. have no clue this, prevents netvault starting. has had somehing similar? hints appreciated. robert my guess is specific netvault, because /var/lock/subsys isn't part of normal filesystem hierarchy . /var/lock/ though , there's defect in netvault that's not making file or directory when starts up. take @ startup script netvault , walk through steps manually. reason have chosen netvault on normal solution script rsync+ssh or normal package bacula, keep or amanda? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Desktop Environments [ubuntu] /var/lock/subsys Ubuntu

URLs ending in .swf try to download to machine

this emerging problem in our organization handful of people reporting after installing flash 9, have trouble captivate demos opened in new window. demos embedded in html run fine. run part of url (in other words, popup window tries open sample.swf on same site) message ie doesn't know .swf and/or ie tries download instead of play it. we've uninstalled, reinstalled many times, hasn't made difference. this happening ie 6, xp pro sp2. we've tried associating .swf in file types listing, reason on these machines won't play in browser if directly pointed at. on other machines does... any ideas? /mark More discussions in Using Flash Player adobe

Zip code retail store locator

hi guys, does know best, least-expensive way add zip-code based retail store locator wholesale site has 2000 retailers in database? btw: backend coding skills limited. thanks, fudo i have sent solution created store several years lot of people here .. if want see in action, go http://www.firepit.com and click on "where buy". it's done in asp/vb .. if solution , server model, write me offlist , i'll send files. -- nancy gill adobe community expert blog: http://www.dmxwishes.com/blog.asp author: dreamweaver 8 e-book dmx zone co-author: dreamweaver mx: instant troubleshooter (august, 2003) technical editor: dmx 2004: complete reference, dmx 2004: beginner's guide, mastering macromedia contribute technical reviewer: dynamic dreamweaver mx/dmx: advanced php web development "fudo" <el_fudo@comcast.net> wrote in message news:c0daee0b.934b%el_fudo@comcast.net... > hi guys, > > know best, least-expensive way add zip-code based

servo pwm

Image
salve ragazzi ,  ho un problemino nel mio progetto , mi servirebbe che il servo pwm che simula l 'apertura e la chiusura di un cancello, programmarlo in interrupt . ma come si fa ?  cioè mi servirebbe che il servo mediante un interruttore portato alto il servo compi una rotazione di 90 gradi , altrimenti  vada ad un angolazione di 0 gradi.mi sapreste dire come si fa il programma? grazie  mille :*** perchè con interrupt? non basta una cosa così? code: [select] #include <servo.h> servo myservo;  int butpin = 5; int butstate;    void setup() {   pinmode(butpin, input);   myservo.attach(9);  } void loop() {   butstate = analogread(butpin);   while(butstate=high){     myservo.write(90);     butstate = analogread(butpin);     delay(20);   }   myservo.write(0);   delay(20); } l'ho scritto/copiato al volo quindi non se va bene (si scrive "while(butstate=high)" o "while(butstate==high)"??) ciao

Does a Pi Server need a UPS in UK? - Raspberry Pi Forums

i want run pi server in northampton in uk. needs not corrupt sd card or usb hard drive far away , won't able fix things easily. i've had experience running pi in african country though don't notice power failure etc, pi crashes randomly every 5-10 days. hardware router crash every month or two. ...until got ups. pi , router rock solid. hear power in uk stable , reliable , i'm wondering if i'm on engineering adding ups build? i add.a ups, mains isn't 100% , pi can corrupted. raspberrypi

Starting threads with the word "So"

so i'm wondering why many threads start  with word "so"? is me or annoying? perhaps i'm showing age. (edit unless it's "so" in "therefore" correct imo: "so should connect grounds". annoys crap out of me when posts start "so i'm working on project to....") ++ so like rid of work like. pete Arduino Forum > General Category > General Discussion (Moderators: mbanzi, DojoDave, mellis) > Starting threads with the word "So" arduino

Schermo LCD

ciao tutti, sto cercando di usare lo schermo lcd che ho comprato con arduino... lo sketch che sto utilizzando è questo: quote /*   liquidcrystal library - hello world    demonstrates the use a 16x2 lcd display.  the liquidcrystal  library works with all lcd displays that are compatible with the   hitachi hd44780 driver. there are many of them out there, and you  can usually tell them by the 16-pin interface.    this sketch prints "hello world!" to the lcd  and shows the time.     the circuit:  * lcd rs pin to digital pin 12  * lcd enable pin to digital pin 11  * lcd d4 pin to digital pin 5  * lcd d5 pin to digital pin 4  * lcd d6 pin to digital pin 3  * lcd d7 pin to digital pin 2  * lcd r/w pin to ground  * 10k resistor:  * ends to +5v and ground  * wiper to lcd vo pin (pin 3)    library originally added 18 apr 2008  by david a. mellis  library modified 5 jul 2009  by limor fried (http://www.ladyada.net)  example added 9 jul 2009  by tom igoe  modified 22 nov 2010

uhttpd config, index file, php vs. html

hi, in yun installed php , work fine.. now have question: if put in /www dir index.php file , go http://my.yun.ip , webserver redirects me to: http://my.yun.ipcgi-bin/luci/webpanel/homepage because in /www dir there index.html file redirect .. how can set index.php priority instead of html files ? i tried set in /etc/config/uhttpd file "option index_page" or "option index_file" described here: http://wiki.openwrt.org/doc/uci/uhttpd . after saving changes, did utttpd restart no 1 solution worked... the output of code: [select] uci show uhttpd if missing: code: [select] uhttpd.main.index_page=index.php then need run: code: [select] uci set uhttpd.main.index_page=index.php uci commit /etc/init.d/uhttpd restart empty cache of browser, @ chrome clean history, restart browser , visit http://ip_address_yun/. Arduino Forum > Products > Arduino Yú

Streaming MJPEG lent - Raspberry Pi Forums

Image
bonjour à tous et à toute, je stream actuellement avec raspistill et mjpg-streamer. je suis limité en terme de fps ! je plafonne à maximum 3 images par secondes. pourtant il me semble bien avoir été au plus optimisé pour les options. voici ma façon de faire: code: select all raspistill -n -w 640 -h 480 -q 5 -o /tmp/pic.jpg -tl 0 -t 0 -vf -hf & ld_library_path=/usr/local/lib mjpg_streamer -i "input_file.so -f /tmp -n pic.jpg -d 0" -o "output_http.so -w /usr/local/www" & avec une réception grâce à vlc: code: select all cvlc http://192.168.1.27:8080/?action=stream & je tiens à passer par un fichier fifo (le fameux /tmp/pic.jpg ) afin de faciliter l'option photo, qui me nécésite actuelement juste un code: select all cp /tmp/pic.jpg snapshot.jpg pas étonnant que tu n'arrives pas plus vite, il faut le temps que la caméra se règle. moi en optimum c'est 2 secondes. si les conditions de prise de vues sont toujours les mêmes : avec raspivid

UPS rechargeable - Raspberry Pi Forums

Image
salut à tous, j'aimerai pouvoir brancher sur mon rpi une batterie de secours (en gros un genre d'onduleur) qui prendrait le relai en cas de coupure de courant. dans l'idéal, le rpi attendrait 5 minutes, et si le courant ne revient pas dans ce laps de temps, il effectue quelques actions (type push notif vers mon smartphone) et s'éteint proprement (avec un shutdown -h par exemple). ensuite, lorsque le courant revient, le rpi se redémarre (sans que je doive débrancher et rebrancher le câble d'alimentation). j'ai trouvé ça: http://www.piups.net/#features qui semble faire le job. mais j'aimerai en plus que la batterie de secours se recharge lorsque le rpi est connecté à une source électrique "classique" (je n'ai pas réussi à savoir sir le pi ups rempli cette fonction). comme ce que font certaines batteries reliées en usb (ce genre de produit par exemple: https://www.adafruit.com/products/1566 ). mais apparemment avec ces batteries là, si je f

Need a freelancer to help build an array of LED strobes

hi, i'm theatrical effects designer, , have job requires array of 24 led strobes flash in pattern.  know enough know need possible, not enough it, nor enough time learn.  there experienced in nyc area interested in subcontracting job? individual leds? group of tbd leds @ each of 24 locations? particular color? how far spread out?  how bright? Arduino Forum > Community > Gigs and Collaborations > Need a freelancer to help build an array of LED strobes arduino

Please answer me.

hello everybody. i'm new on forum , don't know arduino, excuse me if question "silly" i'm working on project monitoring road traffic , want use arduino. have 2 questions : 1- can use ir deterctor , ultrasonic detector simultaneously detecting car presence (for more accuracy).       if  (ir  & ultrasonic detect object)        |     number_of_objects += 1       otherwise        |     not counted 2- , second question is: can use timers arduino. detector must count car , set timer if still on field (count stop time of car). thank , sorry bad english.   > 1- can use ir deterctor , ultrasonic detector simultaneously detecting car presence (for more accuracy). yes > 2- , second question is: can use timers arduino. detector must count car , set timer if still on field (count stop time of car). yes Arduino Forum > General Category >

Thread: Complete DNS setup

Image
hi everyone, have total linux noob here - im used windows , although ubuntu seems quite easy figure out, i'm finding out dns being pain in butt (first time setting dns) . i'm trying setup dns. i using : ubuntu 9.04 server webmin (latest version 1.490) i can : can access sites created via http://localhost , http://localhost/ folder_name / since installed mod_security cannot access sites using http://127.0.0.1 , http://127.0.0.1/ folder_name / - message " bad request browser sent request server not understand. " i'm not sure if important. sites work fine in respects using http://localhost php/mysql/mod_rewrite etc... i have : in netgear router (wgt624v4) put port forwarding # | service name | start port | end port | server ip address 1-------webserver------------80--------------80-------------192.168.1.3 domain testing pointed static isp ip. created master zone in bi

Librairie avec double interruptions

bonjour à tous ! je suis sur un projet de stabilisation d'un drone sur deux axes et j'utilise un gyroscope et un récepteur rc mais le problème c'est que lors de leurs lecture il y à chacun d'eux un état bloquant j'ai donc utilisé la librairie mstimer2 mais j'ai besoin de deux interruptions . quelqu'un connait une libraire avec deux interruptions possible en simultané ?? bonjour, si tu paramètres 2 interruptions, même en attaquant directement les registre de l'atmel, avec des niveaux de priorités différentes, quand une va se lancer, à moins que la suivante soit prioritaire(à vérifier), l'interruption va forcément bloquer le programme jusqu'à ce qu'elle ait finie son traitement. peut etre que le contenu de ton interruption doit juste comporter la mise à 1 d'un flag, et ton 'loop' boucle en testant les flags. dès qu'un est à 1, alors il va lire le résultat. Arduino F

Simulatore circuitale

ciao raga, non ricordo più il nome di quel simulatore circuitale che faceva vedere la corrente che scorreva nei rami. come si chiama? grazie di simulatori c'e' ne sono una valanga. qualche elemento in più ? prova vedere questa discussione: http://forum.arduino.cc/index.php?topic=173523.0 Arduino Forum > International > Italiano > Software (Moderator: leo72) > Simulatore circuitale arduino

UV4L Port Changing Problem - Raspberry Pi Forums

hey guys, got pi's , camera modules set up. , developer of uv4l here: http://www.linux-projects.org/modules/s ... e&artid=14 problem have multiple cams on same network, , having port problems might guess. know how can temporarily change port on driver launch, here link manual explaining this: http://www.linux-projects.org/modules/s ... e&artid=17 can't figure out how change default port server launches on different 8080. know how restart server on different port, need way change default port else when launches. help! travis phaze3131 wrote: i can't figure out how change default port server launches on different 8080. know how restart server on different port, need way change default port else when launches. if got question right, want change default server port when (first) uv4l instance automatically starts @ system boot . make sure have installed uv4l-raspicam-extras first (since asking question, did already), add following line /etc/uv4l/uv4l-r

Thread: [Knoppix] - Trying to mount HP Photosmart M415 to retrieve pics

i not have card reader, have plug in usb adapter. camera hangs on "establishing connection. thought maybe have mount done right, "sudo mount /dev/sdb1 /mnt" (sda1 hard drive windows, doesn't want download pictures on right) should have mounted camera after turned on. i'm told "mount: special device /dev/sdb1 not exist." quick googling found me line "dmesg | grep usb" run getting drivers , getting work. (i have no idea does... i'm on live distro, hurt?) here's output relevant camera, think: code: [ 5.459975] usb 1-2.3.4: new usb device found, idvendor=06f2, idproduct=0011 [ 5.459979] usb 1-2.3.4: new usb device strings: mfr=1, product=2, serialnumber=3 [ 5.459982] usb 1-2.3.4: product: 2 [ 5.459985] usb 1-2.3.4: manufacturer: 1 [ 5.459987] usb 1-2.3.4: serialnumber: 3 [ 9.312959] usb-storage: device scan complete [ 203.553076] usb 4-1: new full speed usb device using uhci_hcd

Pi for Video Art Installation (or Digital Signage) - Raspberry Pi Forums

hi, didn't have luck response post 'pi in museum exhibits' thread. i'd grateful if has advice: tejb1, noticed post using pi alternative brightsign products video installations in museum/gallery exhibition settings. i've no experience pi have used eyezone players, simliar brightsigns , i've been looking inexpensive alternative keep costs down exhibitors showing own installation work. hoping give me little feedback on how perform. - i'm interested in using them 1080p video playback. - need play 12 hours @ time or longer without falling on , possibly play 24/7 weeks on end or occasional reboot. - can manage more 20mbps , ideally 40 - 45 mpbs? - what's ideal set these requirements... should aim play files through usb port (i think 2.0) or through sd card port. -what audio playback , might card need further enhancement? many tejb1 or can help. festusking wrote: pi alternative brightsign products video installations in museum/gallery exhibition

Pi4j CTS and RTS - Raspberry Pi Forums

hi, all. using pi4j library compute module cts , rts. have r pi model 2 b , update project board. additional processing power of newer r pi great app. compute module uses pi4j gpio 14 = tx, 15 = rx, 16 = cts, 17 = rts. well, life good. http://pi4j.com/pins/model-cm-rev1.html pi4j pinout diagram r pi 2 model b shows pi4j gpio 15 = tx , 16 = rx. cts , rts available? http://pi4j.com/pins/model-2b-rev1.html thanks! pete hi @boneoh! cts0 on pin 36 , rts0 on pin 11. can active them alt3. need too. know how activate alt3? regards. raspberrypi

reading from 4 SoftwareSerials one after another

hey everybody, i tried connect 4 sensors via softwareserial arduino micro. the sensors send data once every second. it's not critical me every data arrives correctly, maybe 50% great. read signals 2 sensors without problems, try implement 3rd 1 don't signal from (code below). sensors connected pins (rx) 8, 9, 10, 11. succesfully tested these single softwareserial. do have suggestions why happens? or how solve it? thanks in advance help code: [select] sensor01receive = true; //reading sensor01 if (sensor01receive) {    //    if (!sensor01.islistening()) {      sensor01.listen();    }    if (sensor01.available() > 0) {      capturedata(sensor01);      sensor01receive = false;      sensor02receive = true;      sensor03receive = false;    }  } //reading sensor02 if (sensor02receive) {    if (!sensor02.islistening()) {      sensor02.listen();    }    if (sensor02.available() > 0) {      capturedata(sensor02);      sensor01receive = false;      senso

Dreamweaver Residual Text

hi. okay, you're working on web page in design mode. delete ap div text in it. there nothing in space on page, when page previewed in browser: ie, firefox, doesn't matter which, portion of deleted text still remains? have checked html code. code reads fine. have deleted around location of residual text. there nothing around it. there no ap div involved. residual text invisible within design page of dreamweaver, shows when previewing in either browser. located in exact same place. text hell! any appreciated. what describing, if true, not possible. if don't see content in code, cannot see on page in the browser. further, when delete container within have other content, all of content deleted well, unless right click on container tag on tag selector bar @ bottom of document pane , select "remove tag" context menu. perhaps show page, , list explicit instructions you doing can try reproduce this? -- murray --- icq 71997575 adobe community expert (if *must

Error message, Can't see the site - Joomla! Forum - community, help and support

i'm getting white page error message: code: select all cache_lite : unable write cache file : /home/lonrot/public_html/ps3/administrator/components/com_smf/cache/db/cache_e/cache_c21f969b5f03d33d43e04f8f136e7682_12f59b1c893d7ae3e3b88c59332c5811 i can log-in in admin section, main site wont visible. http://www.ps3.cultureofgaming.com , is. edited: solved, needed set schmod 777 on "home/lonrot/public_html/ps3/administrator/components/com_smf/cache/db/cache_e/" path. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Thread: 32 or 64 bit ver for HPDL360 G3

Image
figured try learn server setup admin , enjoy server ubuntu. purchased hpdl360 g3,,,,,which ver server install 32 bit or 64 bit? in advance jsg if have 64bit cpu(s) 64bit else 32bit... know if dont know type of cpus have, check exact model p.o.s.t. or bios or ilo console (if available) , google cpu model. hp uses intel cpus intels own search might useful. - tero Forum The Ubuntu Forum Community Ubuntu Specialised Support Ubuntu Servers, Cloud and Juju Server Platforms [ubuntu] 32 or 64 bit ver for HPDL360 G3 Ubuntu

User Access to Premium Services and non-premium - Joomla! Forum - community, help and support

Image
this question possibly exist in several forums please excuse me if not appropriate. i have site (joomla 1.0.11) utilizes community builder create free community. offer premium package includes access form (facile forms) , e-book download. restrict premium form/ebook users have paid fee , specific time (ideally 1 time deal, expire when form submitted may asking much). sounds simple not since subscription/payment gateways replace community builder login , difficult set temporary permissions (sub account of sorts) within free account. have tried use following programs in varying combinations: - account expiration control - jcomonentsubscription - jacl (to create separate group of users restrict access form/ebook) does have solution? considering installing second joomla in subdirectory of site, copying template , using database premium-service site. lack of other navigation except "back button" take users root joomla install , login/register function purchase premium package. the

Arduino Pump Controller help

good morning, first of all, apologies if in wrong place, i'm unfamiliar arduino have been put in tight spot did work me. the original design utilised atmega1284p pu 1324, relay , pump (12v), number pad , lcd screen. sadly have none of software available (except software stored on our board) , of schematics, guy doing me disappeared , broke contact after first few boards done. i looking make more refined one, using official arduino mega , help. ideally able input number trigger pump pump number of times , shut off, allowing control on amount of liquid being dosed tank. can parts/code need purchase make reality? i have attached picture of our old board + schematic , spec sheet of pump. thank time , once again sorry if in wrong place. chris sounds simple make. there plenty of arduino starter kits on ebay etc have lcd display , keypad , mega or normal arduino. i'm not sure need mega. you need transistor driver or relay control pump but overall, yes, r

static files and opensef - Joomla! Forum - community, help and support

i have opensef installed on joomla 1.0.11 and when upload static php or html file, won't load, frontpage comes up.. i disabled opensef , still won't load.. that's why i'm asking here also,, posted on opensef also.. is there slight chance might joomla thing??? when try , access http://www.netorius.cjb.cc/mylinks.html or http://netorius.cjb.cc/babies_toddlers/index.php don't load.. my front page comes up.. i've checked , fixed www issue in site name , live site anyone have problem? thanks both links appeared load me. did fix issue? solution? regards dave Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.x

Will Arduino team ever do better than this?!

i've used arduino stuff long enough time know complaint not heard except few concerned forum members. i'm doing anyway in case arduino team see. arduino libraries , hardware full of **** when comes completeness , dependability. i've used wifi shield while , know problems. @ least have call check whether connected router. ethernet library, how check before send stuff out? begin should called once, beginning things. place can return of whether dhcp begun. what adding ethernet.dhcp_status(), arduino team? maintain command seems related it's completeness issue. doc doesn't happens when dhcp failed , call maintain. expected reply, not guessing replies or trying out. always, there no end begin. things hang there. these status check methods should available developer find them missing in arduino libraries. can spend part of sunday making internet-enabled fun thing don't want spend days making data logger needs have predefined status of has in control. arduino

List of available packages

until now, way of knowing packages available on yun issue code: [select] opkg update opkg list since today, going publish list on download site. list available here: http://downloads.arduino.cc/openwrtyun/1/packages/index.html (yes, used have list already, new storage not support file listing had generate on our own) Arduino Forum > Products > Arduino Yún (Moderator: fabioc84) > List of available packages arduino

Cant connect to HC-06 bluetooth with phone

have problem connect hc-06 bluetooth device. i hc-06 appear on phone , when connect , write password says connected but the led on bluetooth never stops blinking , "disconnects" phone. any solution this. quote from: mogren3000 on jun 10, 2014, 04:04 pm any solution this. not if it's iphone but, if isn't, might find following background notes useful http://homepages.ihug.com.au/~npyner/arduino/guide_2bt.pdf http://homepages.ihug.com.au/~npyner/arduino/bt_2_way.ino Arduino Forum > Using Arduino > Networking, Protocols, and Devices (Moderator: fabioc84) > Cant connect to HC-06 bluetooth with phone arduino

Customize skins?

hi i need in customizing own skin web playback...any tutorials out there? also, free skins out there? i know open fla file of skin in flash prof 8, when how in world in form , size want it? tons of buttons on stage, , long chrome bar - how make size want (500 x whatever small height) , few buttons, ie play/pause, mute/on, scrub bar? thanks kb maybe me - talking about? customizing own "skin"? mean editing template? mean skinning components? can explain differently? ****************************************** --> **adobe certified expert** --> www.mudbubble.com --> www.keyframer.com iwics2 wrote: > hi > > need in customizing own skin web playback...any > tutorials out there? also, free skins out there? > > know open fla file of skin in flash prof 8, when how in > world in form , size want it? tons of buttons on > stage, , long chrome bar - how make size want (500 x > whatever small height) , few buttons, ie play/pause, mute/o

Shell Script on Desktop - Raspberry Pi Forums

i believe possible create small program, can run icon on desktop, mount usb memory stick. can click run program umount usb. believe sort of thing referred shell script 1 can create through nano editor. if or direct me there idiots guide creating such scripts grateful. roger sure can that. can put same commands in shell script use on command line. if you've ever written batch files windows concept same. since running desktop can use leafpad create scripts. it's lot more user friendly nano creating , editing scripts if you're starting out. open leafpad , create script, save ".sh" file extension, such "mountusb.sh". have make script executable before run. google "shell script mount usb" , i'm sure you'll find lot of info started. if have problems come here, show you've done, , we'll past rough spots. raspberrypi

Thread: rhythmbox 9.10 mp3

hey yall i've posted here couple times before , got great support thought after 2 day quest work ask help. rhythmbox won't play music anymore after upgrading 9.10. great part 9.10 sound features work without work. keyboard shortcuts volume , down , mute work now! great news. problem rhythmbox won't play of music. let me tell have done far try fix problem. i've gone synaptic , reenabled repository called "main restricted universe multiverse". followed script medibuntu reinstall repository , followed directions update. i've sudo apt-get update , updated. i've installed gstreamer plugins including ones gave me troubles in past. i've done script download restricted extras. when try play song in rhythmbox says doesn't have necessary plugins play song , give me gstreamer element autoaudiosink requested plugin cannot find it. i'm not sure if flash video vlc player plays audio fine. i've spent quite lot of

What is a componant ?? plz tell me - Joomla! Forum - community, help and support

Image
hi , have quction ask i found componant @ http://www.remository.com/ , want know "what componant" see pic attach , thaks in advance  take here in faq forum . lot of answers questions can found there. Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

can't open PNG, can't reonstitute table

Image
i have set pngs won't open. when try open them, either desktop or through file menu, error saying "can't open file, internal error occurred." the start page occassionally says "unrecognized language requested (en)." when try reconstitute tables, fw crashes. how can fix this? nickymc wrote: > have set pngs won't open. when try open them, either > desktop or through file menu, error saying "can't open file, > internal error occurred." have deleted fonts system font folder? -- linda rathgeber [pvii] **adobe community expert-fireworks** -------------------------------------------------------------- http://www.projectseven.com fireworks newsgroup: news://forums.projectseven.com/fireworks/ css newsgroup: news://forums.projectseven.com/css/ design aid kits: http://www.webdevbiz.com/pwf/index.cfm -------------------------------------------------------------- More discussions in Fireworks adobe

Thread: Newbie help please re grub>

a few weeks ago upgraded ubuntu 9.04 out hitch. couple of days ago running update manager stopped error message telling me not files fetched. exited programme , continued use laptop. next time tried reboot blank screen following; grub> relative newbie linux , welcome on please. follow procedure fixing mbr after windows install. yeah, didn't install windows, grub doesn't work , procedure fixes it. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Newbie help please re grub> Ubuntu

Tastierino e arduino

buon giorno tutti ragazzi, è da tanto che seguo il forum e fino ad ora mi ha sempre risolto un sacco di impicci! questo che stò per mostrarvi però è un errore che non riesco davvero trovare. spiego lo scopo: inserendo il codice '1' da tastierino sul display dovrebbe uscire 'pin corretto', mentre in caso contrario dovrebbe uscire 'pin errato'. naturalmente questo non è il vero e proprio programma, però l'ho ridotto in minimi termini per capire dove stava l'errore, ma davvero non riesco trovarlo. in sostanza il fatto è che anche inserendo 1 da tastierino,  facendo l'uguaglianza il pin risulta comunque errato, non compilandomi l'if ma andando nell'else. allego il codice: code: [select] #include <keypad.h> #include <liquidcrystal.h> char vettore[1]; int i=0; const byte rows = 4; const byte cols = 4; char hexakeys[rows][cols] = {   {'d','#','0','*'},   {'c','9','8','

Serial terminators with arduino

hello all, i found out trying find answers simplest questions using google harder addressing complex issues. question simple: i start arduino ide , open serial monitor. write down , press enter. the message transferred through serial port string. can anyone, once , all, tell me kind of terminator, if any, added end of message? is cr? lf? none? i thank (seriously), and hope might bring others in future. tim. code: [select] i start arduino ide , open serial monitor.[b] write down , press enter.[/b] what trying do???usually terminator <cr> <lf> in case of arduino messge. if have doubt . use docklight software & open same serial port on it. read complete value Arduino Forum > Using Arduino > Interfacing w/ Software on the Computer > Serial terminators with arduino arduino

loading an extranel SWF into movie

hi i'm trying load external sfw empty placeholder moveiclip. can achive fine using buttons , onclick event, how can have happen @ start of movie clip no human interaction. code trying below getting blank swf? can help? you don't need onenterframe wrapper. put loadmovie code int first frame of movieclip. loads, run through code there , execute it. make sure target movie clip has been initialized first! good luck! More discussions in Adobe Animate CC - General adobe

Utente alle prime armi.

ciao intanto mi presento, sono angelo e sono una new entry del forum in tutti sensi. mi sono appena affaciato al mondo arduino ne sono completamente digiuno, ma dato che mi occupo di grafica 3d  e mi  diletto con il modellismo dinamico, campo in cui si fa molto uso di schede basate su sistema arduino , ho deciso di cominciare studiarlo per benino e dato che avrei anche un piccolo progettino da realizzare vorrei chiedervi con cosa mi conviene cominciare. ovvero  prendere lo starter kit conviene? quali sono moduli essenziali? ho letto di arduino 1 e 2 uale prendere? nello starter kit quale delle due e compresa? grazie in anticipo per le risposte. ciao angelo ti invitiamo presentarti qui: http://forum.arduino.cc/index.php?topic=113640.0 e leggere il regolamento: http://forum.arduino.cc/index.php?topic=149082.0 - qui una serie di schede xxxpighi per collegamenti elettronici vari: http://forum.arduino.cc/index.php?topic=146152.0 - qui le pinout delle varie sch

Thread: time to test drive gimp 2.8 single-window mode

Image
when news of introduction of single-window mode in gimp 2.8 hit net became clear incredible desire there was. reactions have been overwhelmingly positive, , helps motivate hack on it. news revealed interesting rather anonymous group of people: multi-window zealots despising idea of single-window mode in beloved multi-window application. suspect don't realize single-window mode going optional... happy tell implementation of single-window mode progressing well. have refactored code allow docks put inside image window , michael natterer have refactored code allow many images shown in single image window. code combined , pushed git master , can feeling how awesome single-window mode going trying out current code. above screenshot of live gimp built git master 'windows→single-window mode' enabled. can see toolbox , dockable dialogs docked image window , tabs images in image window @ top. still lot of things left do, should stop

Button to open other movie .EXE

hi, able create 2 exe movies each button open exe movie. when try accomplish same task when click on button open exe movie opens small title bar cannot expanded. the difference seams exe files successful launched button able select in “open other movie” drop down menu. not of movies listed in list. there way have movies listed in drop down menu? or there better way of accomplishing task? thanks you said . . . quote: the difference seams exe files successful launched button able select in “open other movie” drop down menu. not of movies listed in list . there way have movies listed in drop down menu? all movies have published in list - have have published them in output format attempting link - have you? you said . . . quote: now when try accomplish same task when click on button open exe movie opens small title bar cannot expanded. i can't explain "very small title bar", suggest might have version of flash player running. check available upgrades. you said

[Solved] Raspbian - apt-get update issues - Raspberry Pi Forums

hello! got brand new raspberry pi 2 , i'm enjoying it, seems working fine i'm concerned error when updating. wondering if because popped in sd card in raspberry pi model b (which has been updated recently) or coincidence , servers offline (but mean have been offline of day. anyways, here console says (i know of it's rude post console dump it's short promise). pi@raspberrypi ~ $ sudo apt-get update hit http://ppa.launchpad.net precise release.gpg ign http://mirror.ox.ac.uk ... release.gpg get:1 http://archive.raspbian.org wheezy release.gpg [490 b] hit http://ppa.launchpad.net precise release get:2 http://archive.raspbian.org wheezy release [14.4 kb] ign http://mirror.ox.ac.uk ... release hit http://ppa.launchpad.net precise/main sources get:3 http://archive.raspbian.org wheezy/main sources [6,081 kb] hit http://ppa.launchpad.net precise/main armhf packages hit http://ppa.launchpad.net precise/main translation-en hit http://raspberrypi.collabor

Coldfusion upgrade 5&gt;7 problems

installed coldfusion mx 7 on coldfusion 5 server - install went - n o errors. coldfusion search server service not start. first there event id 7022 "the coldfusion search server hung on start". event id 7031 "the cold fusion search server service terminated unexpectedly" - other service run nicely. unable run administration pages "file not found" whenever cfm file browsed. regular website fine , coldfusion 5 still happy. have been looking day solution. there no errors in coldfusion-err.log. application server runs fine. windows 2000 service pack 4 - latest patches - iis v i have removed antivirus, disabled coldfustion 5 services, - no other errors - ideas? the problem "im invalid license" error , resolved removing macromedia mx 7 search server installation - trying migrate sql databases. administration module asks if want migrate database - press "next" , hands same screen right me. there no errors in migration log , no errors in ev

Thread: <pthread.h> library?

i have question regarding programming. <pthread.h> library included in ubuntu? can open new file (name ".c") , begin programming , do code: #include <pthread.h> and begin using or there special command need do? thank help! you should able to.try programming talk . Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] <pthread.h> library? Ubuntu

Connect Camera with Arduino

dears, i'm new in arduino development , need help  xd  xd i want connect camera arduino, target of capture image when special action happen kind of camera can use requirement??? can use camera ov7670 direct arduno uno without camera shield?? many thanks. what mean 'capture' - i.e. captured image need go? unless need arduino process (something arduino not suited for) perhaps @ using camera independent of arduino , use arduino trigger it. Arduino Forum > Using Arduino > Project Guidance > Connect Camera with Arduino arduino

GiPio Wrong Input - Raspberry Pi Forums

hi all, new raspberry , python... have 2 wires coming out radio , put them inside gipio. code written used trigger on web when radio gets input. works wrong inputs on gpio (no radio signal process triggers itself). put "metal" on cable avoid interferences , 1mf capacitor parallel between wires. code : code: select all import time import httplib2 import rpi.gpio gpio channel = 17 #imposto pin per la ricezione gpio.setmode(gpio.bcm) gpio.setup(channel, gpio.in, pull_up_down=gpio.pud_up) #creo l'oggetto http h = httplib2.http(".cache") def event_selettiva(channel): resp, content = h.request("mywebsite", "get") gpio.add_event_detect(channel, gpio.falling, callback=event_selettiva, bouncetime=4000) while true: time.sleep(0.1) gpio.cleanup() don't know how solve... hope guys can me ! thank you is 'old' radio? have done vintage radio build ( http://www.stuffaboutcode.com/2015/05/r ... build.html ) , getting

Unexpected error generating output

i running word 2003 on windows xp , using robohelp word x5.0.1. project, however, created using earlier version of robohelp windows 97. tried compiling , had make number of changes in order have no compile errors: - aliases had go directly project file in [alias] section - #include file wasn't seen. - had change bmproot because running on different machine different root directory structure. - had automatically generate map ids (which wasn't @ first set so) - had fix images not found pasting them source word doc once again. - had add ignore=3096 options section of project file because compiling giving error font names (of fonts not used in source file) in word document long. i'm compiling winhelp 2000 layout. when compile, 8 suppressed messages, associated number 3096, font names being long. says 41 notes, 1 warning output. when attempt generate winhelp 2000 output, goes through steps, when complete, issues error "the winhelp wizard encountered unexpected error when

onscreen keyboard - Raspberry Pi Forums

dear raspbian brothers, looking onscreen keyboard control pi touchscreen. i've got working touchscreen (dell s2240t) tried matchbox-keyboard makes system run crap , keeps hanging time. i've tryed other keyboards like: onboard, gok, couro (i dont remember how spelled) these keyboards didn't work way need them work. need keyboard wil stay on top op qwerty layout including numblock , f keys. may homemade python or c script long perform's way has to. i'm sorry 'homemade' english... love hear anyone, idea appreciated. greetings, martijn i found this: http://xmodulo.com/onscreen-virtual-keyboard-linux.html raspberrypi

Dynamic trace display

hello all, searching web technology displaying dynamic traces (i.e. share prices, temperatures etc.) part of new project. my new project extracting live continuous data database @ set rate (i.e. every 5 seconds) the data returned in form of numeric data needs turned trace (effectively line graph) i have previous experience authorware , director, think flash answer this. should considering else? reasons selecting flash ready availability of plug in , os independance. i appreciate thoughts, possible/difficult? flash can draw axes, plot data series, receive continuous updates server, scroll make continuous line chart, , make pretty. seems reasonable, wouldn't mind getting paid job that! More discussions in Adobe Animate CC - General adobe

Ethernet Shield + XAMPP + PHP + MYSQL

hola, vengo pedir ayuda aquí ya que tras varios días de agobio e intentar encontrar una solución, me es imposible continuar y necesito una solución ya. quiero que mi arduino envie datos de los sensores la web y almacene los datos en una bbdd, y además en base la temperatura obtenida se accionen los relés. bien, tengo el mismo código que el gran proyecto que hizo @eljamz , solo que yo no uso su sensor de temperatura ds18b20, por lo que de su código quité la función que usa para obtener la temperatura, la función e los reles lo dejé igual. aquí os dejo el proyecto del que os hablo-> http://forum.arduino.cc/index.php?topic=138024.0 bien, yo uso xampp(integracion de apache php y msql, pues no consigo hacer que se conecte la web creada (en mi caso 127.0.0.1/arduino_sensor.php o localhost/arduino_sensor.php ) tengo una pregunta sobre el código que os dejo continuacion en byte server tengo que poner mi direccion ip local no? o tengo que poner la del servidor..osea 127.0.0.1? and