Posts

Showing posts from June, 2013

BANNERS! - Joomla! Forum - community, help and support

my site http://www.agrocommunications.com .  on site, there's section on home page banners go.  i managed make  there 3 different banners making each individual banner spot same name (user3).  problem im having, is random, , want first box "print design" banners, middle "photography" banners, , right box "web services" banners. is there component allow specific banner placement?  can assign "user1" strictly "print" banners?  or there way make core banner com same? i ask question because not want 3 of same banner, or 2 of same banner.  want different banner in each box every refresh. Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

Dreamweaver forgets Remote Info Login and Password

hi, for reason, on last few days, dreamweaver 8 has started forget remote info login (ftp) login , password! it remembers else when close dreamweaver , start again login , password blank again. other sites fine - new ones i'm creating. any suggestions? simon this happens if install ie7 gareth http://www.phploginsuite.co.uk/ php login suite v2 - 34 server behaviors build complete login system. More discussions in Dreamweaver support forum adobe

Run a script automatically during shutdown or reboot? - Raspberry Pi Forums

i'm using raspberry couple pi's stream footage ip security cameras using omxplayer. in case streams lost, have cron job runs every minute restart stream if it's not running. unfortunately, open stream prevents rpi rebooting or shutting down, , if kill process, cron fires before can issue reboot/shutdown commands. so, i'm wondering if there way execute script runs when issue reboot or shutdown commands automatically kill omxplayer.bin process... know use bash aliases, i'm used reboot/shutdown syntax other rpi projects, confusing have remember different command. thoughts? what stop cron before shutting down, kill program , halt or reboot: code: select all /sbin/service crond stop raspberrypi

digitalRead being ignored?

i've been trying create shutdown raspberry pi. on pi, uart tx pin high, until software shutdown performed, @ point pin goes low. code has 2 parts: 1. wait ir signal switch relay on controlling pi. 2. wait uart tx pin on pi go low, , switch relay off. the first part works perfectly, every time. second part, doesn't seem doing @ all. code: [select] #include <irremote.h> #include <irremoteint.h> // initialize components , variables int recv_pin = 3; // ir receiver pin int gpiopin = 7; // pi uart pin irrecv irrecv(recv_pin); decode_results results;  unsigned long storedcode = 0x3ce8ad6; int relaypin =  5; // relay pin  int outputstate = 0; long lastgpiocheck = 0; long gpiocheckdelay = 1000; void setup() {   serial.begin(9600);   irrecv.enableirin();   digitalwrite(relaypin, high);   pinmode(relaypin, output);   pinmode(gpiopin, input);    } void loop() {   // start power on signal check   if ((...

Programme de commande de moteur pas à pas avec accélération

bonjour à tous, je dois commander un moteur pas à pas de taille nema 23 (200 pas) avec un driver ms542. le driver est configuré en 400 pas il s'agit d'une simple rotation avec une variation de vitesse. j'ai fait des essais avec accelstepper et avec le programme constantspeed.pde si j'ai bien compris, avec accelstepper et une vitesse constante, il n'est pas possible de gérer les accélérations --> commande "stepper.runspeed();" les accélérations sont gérées dans le cas ou la distance entre en jeux et non la vitesse --> commande "stepper.run();" finalement, j'ai fait un petit programme avec une boucle. j'ai une variable de vitesse de démarrage "vitessedemar1" qui est placée dans le loop. a chaque passage de la boucle, la variable augmente d'un pas "pasaccel1" jusqu'à atteindre la vitesse de marche du moteur "vitessemax1" ce programme simple fonctionne parfaitement, mon moteur se l...

add module positions in JJ Vector - Joomla! Forum - community, help and support

i have seen alot of people answer type of question simple " ' code solution, when tried adding in dreamweaver joomla extension menu board, still unable publish module position!  have reappropriated jj vector template joomla junkie ( http://demo.joomlajunkie.com/ ) -- if click on module position link can see what's preprogrammed available positions.  i'd add 1 underneath user1/user2/user3 positions continuing down in sidebar area.  i'm attaching index.php .txt file, , if can give me cut-and-paste it, boy great! i'm still learning template construction, , find seeing sure can believing. thanks. i have same problem donno how add user2, user3, user3 is there tutorial show how put them in design ? Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Modules

Raspberry Pi 2 Win10 IOT MessageDialog not working - Raspberry Pi Forums

hy! got first raspberry pi 2, , made works first microsoft windows 10 iot os. things fine, except couldn't show popup window. used official iotbrowser code ( https://github.com/ms-iot/samples/tree/ ... iotbrowser ) can't show messagedialog window. if run project @ local computer (my pc) showing messagedialog without problem, raspberry pi 2 not. raspberry pi 2 not stucked or anything, things after window should popped up. use hdmi monitor raspberry, (samsung s22d390hs), , cheap usb mouse , keyboard. can me solve problem? code talked about, isn't works: var messagedialog = new messagedialog("popup message"); await messagedialog.showasync(); that's because windows.ui.core.corewindowdialog windows.ui.popups.messagedialog on 'not implemented yet' list. https://ms-iot.github.io/content/en-us/ ... leapis.htm raspberrypi

JoomFish Load the Wrong Language - Joomla! Forum - community, help and support

hello all, i'm developing multilingual site (indonesian , english). because it's multilingual site, place static html page (index.html)  in frontpage prompt user choose language prefer. if choose indonesian they'll redirected index.php?lang=id , if choose english they'll redirected index.php?lang=en. in joomla back-end i've set main language indonesian. , in joomfish component, i've made 2 translations (indonesia , english). when tried test site, if choose indonesian in front page, index.php?lang=id page shows english page, when refresh page, it'll show indonesian page. i've search forum still didn't found clue, i'm sorry if thread exist. need help. thank much. switch off automatic language determination in system bot , try again. before clean browser cache. Board index Joomla! Older Version Support Joomla! 1.0 Language - 1.0.x Joom!Fish and Multilingual Sites ...

Draw bitmap on 5110 nokia lcd without library

draw bitmap on 5110 nokia lcd without library? does have code share or link? i use code display simple text. need bitmap. any hint . /* scrolling text example code modified from: http://www.arduino.cc/playground/code/pcd8544 */ #include <avr/pgmspace.h> // pins use on arduino #define pin_sce   8 #define pin_reset 3 #define pin_dc    5 #define pin_sdin  6 #define pin_sclk  7 // configuration lcd #define lcd_c     low #define lcd_d     high #define lcd_cmd   0 // size of lcd #define lcd_x     84 #define lcd_y     48 int scrollposition = -10; static const byte progmem ascii[][5] = { {0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x5f, 0x00, 0x00}, {0x00, 0x07, 0x00, 0x07, 0x00}, {0x14, 0x7f, 0x14, 0x7f, 0x14}, {0x24, 0x2a, 0x7f, 0x2a, 0x12}, {0x23, 0x13, 0x08, 0x64, 0x62}, {0x36, 0x49, 0x55, 0x22, 0x50}, {0x00, 0x05, 0x03, 0x00, 0x00}, {0x00, 0x1c, 0x22, 0x41, 0x00}, {...

problem with runtime sharing

hi i have problem flash runtime sharing. have 30 sharing components linked single fla file [named main.fla]. the problem lately time time flash ide had crashed when had tested main.fla. when regressed earlier version did not happen. as code grew larger , larger crashes became more frequent moment crash absolutely happen. i tried singling problematic linked swf file seems no single swf file blamed. i regressed version [which has same number of linked components] , nothing crashed. recompiled more , more of newer versions crashes started appear , more newer compiled components introduced more frequent crashes became. this affects both flash ide , flash active-x control yet not affect flash player. flash ide - flash 8 pro flash player - flash 8 flash activex - flash 9 if has idea how solve problem i'll more grateful made development of project come halt thanky in advance. More discussions in Adobe Animate CC - General adobe

No remote access to apache server - Raspberry Pi Forums

i have followed tutorials can find on setting apache web server on raspberry pi , in cases have failed access test page outside local network. have set port forwarding on port 80 , 8080 on d-link dsl-3680 router according instructions provided talktalk support forum. external ip address 'whats ip' , ping if add ':8080' e.g. 123.45.234.56:8080 error 'unable resolve host'. don't know how configure raspberry pi use port 8080. perhaps that's problem. grateful offer of help. leave rpi running @ home, take laptop starbucks or mcd's (or favourite coffee shop). try there. may want set dynamic dns service can give public ip address domain name or may want set-up script email or tweet ip address when changes. raspberrypi

green_portal - left-newsflash - Joomla! Forum - community, help and support

i've installed green_portal template http://www.joomla-downloads.de/templates/joomla-1-0-x/ it has space before banner (ads) section image called left_newsflas can placed. does know how place? i have template activated on webspace on standart joomla! installation (1.0.11) not use: http://darthd.da.funpic.de/joomla/index.php it depends on template's index.php file looks like.  can post file? Board index Joomla! Older Version Support Joomla! 1.0 Templates & CSS - 1.0.x

Req: Display two pages of data alternately using U8glib

hi i need use u8glib display output of routine controlled loop variable 'param'. 'param' cycles 0 7 , determines various picture elements (e.g. bitmaps) displayed. when param = 2, want display first page of data; pause 1 sec. when param = 7, want display second page of data, pause 1 sec. then continue loop endlessly. despite following tutorials , reading forums, i've been unable find construct based around u8glib's 'draw' loop enable me display data in way. as required u8glib, original routine in 'for' loop controlled loop variable 'param'; i've made 'for' loop function 'void draw(int param)', called 'draw' loop within main loop; , cycling value of 'param' within 'draw' loop. the code below display first page correctly if second 'for' loop commented out; otherwise displays both first , second pages simultaneously (i.e. superimposed/overlapping). however,...

AkoComment not showing up in the frontend - Joomla! Forum - community, help and support

hilo after moving 5 sites new server on last few days, , having similar issues sites, , plaguing techs @ webhost - they've said access issues i'm having known issues latest install of joomla (.12). latest on clean install of joomla , clean install of akocomment. seems install fine, configurable backend, doesn't show in front end. tried selecting "use individual bot command" , got noshow on frontend. if select "choose sections below" , select 1 section, again noshow. if select more 2 sections, frontend dies: warning: botakocomment(/home/anzagl/public_html/components/com_akocomment/packs//settings.php) [function.botakocomment]: failed open stream: no such file or directory in /home/anzagl/public_html/mambots/content/akocommentbot.php on line 73 warning: botakocomment(/home/anzagl/public_html/components/com_akocomment/packs//settings.php) [function.botakocomment]: failed open stream: no such file or directory in /home/anzagl/public_html/mambots/content/akoc...

Thread: network config question

Image
i have ubuntu server need connect internet, webserver etc. have ordered internet connection time warner static ip address. set server static ip address assigned time warner's modem, , away go. except ... have other devices need connect internet on cable modem. i'm thinking i'll have add second ethernet card server, , connect switch or router this. server have configured gateway switch. i've never done before , i'd appreciate few pointers to: 1. kind of router or switch need. @ moment have linksys cable/dsl router #befsr81, maybe bad choice (at first thought configure through router). 2. how configure server function gateway. much! matthew fleming posted mfleming i have ubuntu server need connect internet, webserver etc. have ordered internet connection time warner static ip address. set server static ip address assi...

Search Engine's come and go

hi, i've read bit here , there having site appear. have meta tags, title , have hidden name in invisible text on pages appears more (by making text same color bg color). i've read google sort of ignores sites seem trying hard, or have same words repeated often. but on dogpile & altavista comes far down on list. would mind taking @ code? i'd site @ least in top 3 when someon searches "sarah hudgins" big thanks! oops, site shudgins.com More discussions in Dreamweaver support forum adobe

MPU-9150 + L293D + Arduino Mega, Arduino Gets Stuck!

i have arduino mega 2560 connected to l293d motor driver ic connected 2 small size dc motors. mpu-9150 using i2c xbee v1.1 arduino shield seeed li-po battery, 7.4 volts, 2200 mah. all components tested separately, working fine, sensor readings showing data on serial monitor, l293 drives motors, xbee sends wireless serial data on pc, , li-po working fine. i have checked wiring alot of times. seems correct. the problem arises when connect of them together, since using single power source, power l293d li-po , arduino li-po. when l293d powered using li-po , starts drawing current battery, serial monitor/arduino gets stuck. doesnt show sensor readings anymore, while dc motors start spinning. , continue spin, until break connection battery. without l293d powered, sensor readings working fine, going normal, should, l293d connected, arduino stuck.. i have searched alot of forums this, found info, perhaps analog , digital ground? mpu-9150 digital ground. why stops arduino mega l293d s...

Thread: Rsync chgrp error from ext3 to ext3

Image
hello, i'm using rsync make backup of website, i'm getting chgrp errors i'm using line: rsync -a --delete root@mysite.com :/var/www /mnt/backups/mysite.com mnt/backups cifs mounted ext3 share nas running stripped down linux. file systems on 3 machines involved ext3. problem cifs? there work around? need maintain groups/permissions. thank in advance can offer. posted skelooth rsync -a --delete root@mysite.com :/var/www /mnt/backups/mysite.com i guess /mnt/backups should belong , local path exported /mnt/backups should belong account connecting in mount command. instance local path (within nas) /mnt/disk1/me/my_back_up/ , belonged root created nas software, let me copy files not change permissions, times etc. alternatively start rsyncd on nas , rsync without mounting, have permissions of rsync module on nas correct....

buy old or new pi? - Raspberry Pi Forums

Image
hi i'm new here , want raspberry pi thing , wondering worth me getting new raspberry pi or okay old version. want start basic programming. please give advice ;p either fine, ought buy recent model (pi 2b). raspberrypi

upgrading from 1.0.7 to 1.12 magic_quotes_gpc problem - Joomla! Forum - community, help and support

hi everybody, please excuse approximative english. i'm novice in joomla , in website (so kind not use complicated terms me) i tried upgrade (first local website on own pc) 1.0.7 1.0.12 , had 2 (red) warnings. resolved first not know how change magic_quotes_gpc off on. can hel me? thanks , happy new year of you. in php.ini add: magic_quotes_gpc = 1 or in .htaccess add: php_value magic_quotes_gpc on for more info, please read: http://forum.joomla.org/index.php/topic,81058.0.html Board index Joomla! Older Version Support Joomla! 1.0 Upgrading - 1.0.x

Kettenfahrzeug Motoren

Image
hallo ich möchte mit einem kollegen ein ferngesteuertes fahrzeug bauen und programmieren. ich hatte zuerst ein auto mit vier rädern gedacht. dann hätte ich ja einen motor für den antrieb und einen servo für die lenkung gebraucht. jetzt haben wir uns aber für ein kettenfahrzeug entschieden. dafür ich jetzt einfach zwei motoren benutzen.. einen für jede kette.(das soll mit eine punktwendung ermöglichen) ich habe einen arduino uno r... jetzt meine frage: ich brauche 2 relativ starke motoren, da ich das fahrzeug noch ausbauen (wird schwerer und muss auch steigungen mühelos packen) da die motoren mit sicherheit mehr als 5v brauchen würde ich dann noch ein motorshield nutzen... ich hatte das adafruit motor shield gedacht... was sagt ihr dazu und welche motoren sollte ich nehmen? dann die fernsteuerung... ich hatte erstmal eine steuerung vom laptop gedacht... welchen sender bzw empfänger könnt ihr mir empfehlen? die programmierung mache ich in java dann kann ich das später noch einf...

Arduino Ethernet shield connects to Router but not to PC

hi, i trying serve simple web page using >ethernet>"webserver.ino" i can working when ethernet cable connected directly modem/router form th shield, when connect pc can't web page on chrome or ie. have found tx led stops when connected pc, both rx , tx flash when conned through modem/router. i have used vacant ip address: 192.168.0.114, have entered mac adress shields sticker. i have tried using few programs diagnose error, e.g. "dhcpaddressprinter" , zoomkats code, not further information found. i tried surfertims "w5100 , spi bus check" program , hardware seems ok. i using : arduino uno, arduino ethernet shield, windows 7, simple linksys modem, ide 1.05 r2 i connecting cross on cable, have enabled internet sharing. there no sd card in slot. i have tried both usb power , independent power sources, 2 different pcs, 2 different modem/routers. i have searched forums nothing goes quite deep enough. can 1 point me in right direction or thin...

Significant difference between millis() and micros()

when run code below , change between millis() , micros() there quite variance with millis() time shown varies between 2 , 3 milliseconds. however if change micros(), time shown 8700 micro seconds or 8.7 milli seconds. can explain why big difference ? code: [select] void loop() { //start timer gettime_millis = millis();    //micros(); drawscreen1();     //draw on tft screen //calculate time taken loop newtimemillis = millis();    //micros(); timelapsemillis = newtimemillis-gettime_millis; //need bit of time see result delay(1000); }  with such short times, can imagine happen. the millis() not accurate few milliseconds (read: inaccurate). updated in interrupt. we don't have whole sketch, don't know if did use right variable types. perhaps can try drawscreen1() in loop , 20 or 100 times. millis() , micros() should measure same delay. Arduino Forum ...

Cold Fusion Version - What do I need?

hi guys/gals- quick easy question....i've worked cf around 3 years now, face first employment requiring me purchase/install on server...here's question. if i've got single windows server, hosts 2 5 websites, can standard edition of cfmx 7, or have buy enterprise version? differences between 2 in respect how many websites can support? thanks! t standard edition should fine. http://www.adobe.com/products/coldfusion/productinfo/product_editions/#s2 -- ken ford adobe community expert "sarasotatim" <webforumsuser@macromedia.com> wrote in message news:e819cl$btg$1@forums.macromedia.com... > hi guys/gals- > > quick easy question....i've worked cf around 3 years now, > face first employment requiring me purchase/install on > server...here's question. if i've got single windows server, > hosts 2 > 5 websites, can standard edition of cfmx 7, or > have > buy enterprise version? differences between 2 > in > re...

Development Enviroment Da Kine

question 1 - can format-reformat code view ? questions 2 - can somehow make code wide changes - changing textarea textinput. questions 3 - use dual monitors , want open flex exact preferences, on starting program windows return default position. question 4 - building workspace , launching agonizingly slow. normal? squirrel in computer gets tired. question 5 - can 1 point me list of keyword (i discoved '&' faux-pas in text?) question 6 - swf files seem big. there way save , compact. this 2nd day doing , in opinion lots of hub-bub in starting instructions, installation, etc. discovered code_examples application on adobe example page demo , seems far better , faster way speed bloated utility...where flex dummies book? question 7 - need speed using cold fusion this...any quick start references this...i hate read. thanks More discussions in Flex (Read Only) adobe

miaw flashing

i have project has small stage , many miaw's 3 displayed @ 1 time. 3 miaw's change every 10 seconds other miaws disk. these miaw's have different background colors. in director 8 when miaw's change there sudden color change from, example, green red, backgrounds of former , new miaw's respectively. when update movies mx , run project, a white flash when miaw's change. using previous example, see the old green background when movie changes, see white flash then red movie. can , tell me need rid of white flash? -- craig wollman word of mouth productions phone 212 928 9581 fax 212 928 9582 159-00 riverside drive west #5h-70 ny, ny 10032 www.wordofmouthpros.com More discussions in Director Lingo adobe

Error Message; Last Line:553...

i able select , view contents of html page (file). however, after editing single number , attempting save edit, receive following error message: last line: 553 can't open file:permission denied. any ideas on how resolve this? using home site version 5.5. recently, our web site transferred new ip address. our gurus , myself have double checked pointers, passwords, smtp, etc. , of details seem in order. or direction appreciated. thank you, in advance. More discussions in General Discussion adobe

Default Topic displays Context.txt

hi, yes, have valid default topic selected in microsoft html default topic properties drop-down list box. using robohtml 5x.0.2. my system works using toc, popups work, default topic shows ascii context.txt file popups when selected menu. any ideas? thanks this looks replying question has raised in thread while trying problem. need continue thread rather create new one. i suggest add post thread link original thread. More discussions in RoboHelp HTML adobe

Installing Apache,PHP,MySQL - Joomla! Forum - community, help and support

Image
can give me guide on how install apache, php, , mysql. want install latest version possible without use of compiled software contains 3.  you ought consider using wamp (all 3 l know) otherwise vistit each organizaitons sites info on installing. google sites if dont know are. seriously though if you've never done it. going easier prepackaged setup. good luck rob Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Thread: Windows not placed in front

i've been having problem when new windows opened placed behind other windows instead of being brought front, can't figure out problem is. google search yielded following result: https://bugs.launchpad.net/ubuntu/+s...m4/+bug/366683 have no idea these guys talking about. ideas? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Windows not placed in front Ubuntu

wie kan mij helpen - Raspberry Pi Forums

ik heb een raspberry pi nu wil ik het volgende aangezien in de startx `meerdere desktops geselecteerd kunnen worden ben ik aan het proberen om in de autostart chromium op het eerste scherm en mind comander op het tweede scherm te krijg /etc/xdg/lxsession/lxde autostart @lxpanel - - profile lxde @pcmanfm __ desktop -- profile lxde @xsreensaver -no splash @chromium hierdoor verschijnt chromium op de eerste desktop raspberrypi

hitTest using &quot;if&quot; statement

hello, i have textfield, box below (in y axis)... there hittest set up, when text box gets long, point overlaps box below, movieclip told gotoandplay(2); the problem: because text hittesting box, "if " statement true,true,true,true,true,true,true,true,true... movieclip in effect stays @ frame 2, instead of playing through way should. i tried "while", causes flash crash altogether.... could suggest solution conundrum? thanks! More discussions in ActionScript 1 and 2 adobe

Mixing Arrays and Structures

i may mistaken, can make arrays work when assigned discrete numbers (e.g. 1,2,3) , structures defined label (e.g. key1, key2, key3). if assessment correct make “array” of “structures” can’t seem right either. here point/objective – have list of items have descriptors. ergo, loop though list using discrete numbers on final “level” can use meaningful labels. example: list.1.title list.1.size list.1.other list.2.title list.2.size list.2.other maybe isn't possible, there viable alternative? quote: originally posted by: riluve i may mistaken, can make arrays work when assigned discrete numbers (e.g. 1,2,3) , structures defined label (e.g. key1, key2, key3). if assessment correct make “array” of “structures” can’t seem right either. here point/objective – have list of items have descriptors. ergo, loop though list using discrete numbers on final “level” can use meaningful labels. examp...

I created the page, how do I upload?

Image
greetings all, i'm new dw, , need assistance. created page color, links other web sites,fonts etc., , saved work. now, how upload page web server without breaking links , messing different colors , fonts used? i'm taking class in dw, , i'm sure we'll eventually, need right away personal use. thanks in advance. start dw, press f1 , read defining sites. More discussions in Dreamweaver support forum adobe

Thread: connected to internet but i can surf da web or download apps????

i've been working on installing ubuntu on laptop, backed , installed it....neway, says i'm connected internet can't surf web or download nething??? post ifconfig returns please. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [SOLVED] connected to internet but i can surf da web or download apps???? Ubuntu

Help with the Users manual - Joomla! Forum - community, help and support

i don't understand page 71 of joomla user manual talking about.  subsection "the menu manager" called "using home menu option control front page display".  can't find none of features section describes.  if give me guidance appreciate it. this visual tutorial might worth watching http://www.joomlatutorials.com/joomla_tutorials/joomla-layout-tutorials/change-frontpage-layout/details/ Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.x

Thread: USN-847-2: devscripts vulnerability

referenced cves: cve-2009-2946 description: ================================================== ========= ubuntu security notice usn-847-2 october 09, 2009 devscripts vulnerability cve-2009-2946 ================================================== ========= security issue affects following ubuntu releases: ubuntu 6.06 lts advisory applies corresponding versions of kubuntu, edubuntu, , xubuntu. problem can corrected upgrading system following package versions: ubuntu 6.06 lts: devscripts 2.9.10-0ubuntu0.1 in general, standard system upgrade sufficient effect necessary changes. details follow: usn-847-1 fixed vulnerabilities in devscripts. update provides corresponding updates ubuntu 6.06 lts. original advisory details: raphael geissert discovered uscan, part of devscripts, did not sanitize input when processing pathn...

Proyecto head tracker para simuladores

Image
hola todos, adquirido este sensor que incluye giróscopos y acelerometros http://www.ebay.es/itm/251132396500?sspagename=strk:mewnx:it&_trksid=p3984.m1497.l2649 y quería utilizar mi placa arduino uno para hacer un head tracker (seguimiento de cabeza) para todo tipo de simuladores. de arduino sé lo básico y me gustaría saber si alguien del foro había hecho ya algo parecido y me podía orientar en el proyecto, que priori no parece muy complicado. en principio la conexión la haría mediante usb al pc y utilizaría el programa freepie para poder utilizarlo en los diferentes juegos. os adjunto un video del sistema funcionando https://www.youtube.com/watch?v=qpo1wty3f3i muchas gracias de antemano. un saludo. me interesa el proyecto ves informando yo hice uno en su dia con una webcam y un par de leds en una gorra... xd Arduino Forum > International > Español ...

Thread: untar file to specified directory

Image
hell0 building file first requires dependencies reside in src directory. tarred , residing in desktop. tried this! php code: cd  ~/ desktop tar  - xzvf file . tar . gz  - c  / usr / src /  which threw error! correct command? php code: tar  - c  / usr / src / - xzvf file . tar . gz  cheers help. posted jon zendatta so correct command? php code: tar  - c  / usr / src / - xzvf file . tar . gz  cheers help. yep Forum The Ubuntu Forum Community Ubuntu Specialised Support Development & Programming Packaging and Compiling Programs untar file to specified directory Ubuntu

arduino ide port

hi every one, set arduino yun ap i can connect web panel on ide port i can't see 192.168.xxx.xxx arduino yun let me wireless upload program what problem , how can fix it? i'm using imac running os x 10.9.4 http://arduino.cc/en/guide/arduinoyun https://www.youtube.com/watch?v=9-hphwhwnvs check above 2 link . might helpful. share code also check below explained how upload code http://wiki.dragino.com/index.php?title=getting_start_with_arduino_yun Arduino Forum > Products > Arduino Yún (Moderator: fabioc84) > arduino ide port arduino

leer valor en una base de datos

buenas tardes tod@s, estoy realizando un proyecto con arduino uno r3 y arduino ethernet shield. lo que quiero es guardar en una base de datos alojada en internet un valor que recojo cada x segundos en una entrada del arduino. por otro, también quiero desde el arduino obtener el valor de un campo guardado en esa misma base de datos, y dependiendo de ese valor activar o desactivar una salida del arduino. la parte de guardar los valores que recojo en la entrada de arduino en la base de datos ya la tengo hecha. me queda leer el valor de un campo de la base de datos. ¿alguno tiene idea de como leer un valor desde el arduino en una base de datos alojada en un servidor en internet? saludos y gracias desde canarias http://www.instructables.com/id/interface-arduino-to-mysql-using-python/all/?lang=es no dices en que trabajas, tal vez esto sirva, tal vez estes en php y esto pueda ser de guia http://www.instructables.com/id/save-data-of-temperature-and-humidity-on-my...

reset button

i developed program arduino uno 3 years ago, , not having used 2 years tried out , discovered bootloader problem, purchased new arduino uno board bt when attempting upload old program new board messages binary sketch size: 5978 bytes (of 32256 byte maximum) binary sketch size: 5978 bytes (of 32256 byte maximum) avrdude: stk500_getsync(): not in sync: resp=0x18 avrdude: stk500_getsync(): not in sync: resp=0x86 avrdude: stk500_recv(): programmer not responding avrdude: stk500_recv(): programmer not responding which believe same messages received on old board. remembered had press reset button on old board after uploading. new board has no reset button. where go here? quote from: cpat on sep 02, 2014, 02:27 am i developed program arduino uno 3 years ago... purchased new arduino uno board ....... new board has no reset button. if it's uno r3 arduino have. Arduino Forum > Using Arduino ...

template question - Joomla! Forum - community, help and support

i creating module shows times in other parts of world. have pieces of module working except when draw table via pattemplate see same time time. if print array see correct times stored. can tell me doing wrong here? here sample of code: /** * @version 1.0 $ * @package timezones * @copyright (c) 2006 donovan makund * @license http://www.gnu.org/copyleft/gpl.html gnu/gpl */ /** ensure file being included parent file */ defined( '_valid_mos' ) or     die( 'direct access location not allowed.' );   // load pattemplate library require_once( $mosconfig_absolute_path     . '/includes/pattemplate/pattemplate.php' );       include('lib/tzphp-0.1.2/tz.php');   $countries = array(  "suva"          =>  'pacific/fiji',                         "sydney"        =>  'australia/sydney',               ...

Raspberry model B doesn't boot anymore - Raspberry Pi Forums

hello, haven't used 1 of raspberry pi several months , can't boot more. used to. red power led on, , greed act led low, not powered. if haven't plugged sd card, have. - sd card tested ok raspberry. - sd connectors seems ok, tried push on card no success. - power supply tested ok raspberry. - polyfuse not blowned power led on. not hot. - no device connected except sd , power mini usb. - arm chip becomes bit warm. read : viewtopic.php?f=28&t=58151 http://www.framboise314.fr/les-leds-du-raspberry-pi/ board isn't modded except 1 thing : glued cpu radiator arctic silver thermal adhesive (epoxy). board worked after that. have got idea or should consider board broken ? thank you raspberrypi

Thread: Griffith Won't Export

i'm using griffith 0.10 ubuntu karmic. after trying sign-up griffith forum , failing there, thought ask question here. i'm having problem export feature. griffith refuses export anything. read both title lines had populated - made sure had happened. still can't export anything. there problem solution? if so, kind , share me. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Multimedia Software [ubuntu] Griffith Won't Export Ubuntu

Super Cluster - Raspberry Pi Forums

hello all. first post , wasn't sure put it. have finished raspberrypi super cluster base on book available packt publishing. right has 4 raspberrypi model b+ (512) devices calling "slaves" , model 2 call master. once post approved, post jpg of network layout. has following software installed , tested: 1) latest raspian image 2) mpi (message passing interface) 3) hadoop (master only) 4) kismet (master far) intention build "cluster based" pentesting device, , use advice on mpi cluster bench marking , possibly re-coding of pentesting software take advantage of mpi. bill here's shoot (see second picture top, is, 1 below eben upton): https://www.raspberrypi.org/blog/seemor ... aire-2015/ raspberrypi

Programação para motor de passo

boa tarde, eu estou fazendo um projeto com motor de passo e o arduino e precisava de uma ajuda, eu preciso que meu motor de passo gire 90º e programação que estou usando é essa: digitalwrite(motorpin1, high); delay(delaytime); digitalwrite(motorpin1, low); digitalwrite(motorpin2, high); delay(delaytime);  digitalwrite(motorpin2, low); digitalwrite(motorpin3, high); delay(delaytime); digitalwrite(motorpin3, low); digitalwrite(motorpin4, high); delay(delaytime); digitalwrite(motorpin4, low);  só que meu motor de passo é de 1.8 graus/passo e pra que ele gire 90 graus eu precisaria de mais ou menos 12x essa programação q estas acima, mas ficaria mt extenso, teria um jeito de fazer com q essa programação se repita 12x sem ser copia-la 12x ? agradeço desde já É para isso que existem os ciclos em programação! então, para repetir isto 12 vezes, ficaria: code: [select] for (int = 0; < 12; i++) {   digitalwrite(motorpin1, high);   ...

Arduino Leonadro with w5100 power problem

i useing arduino leonadro w5100. works computer usb port. when use mini usb port via 5v 1a or 2a or dc 9v 600ma , arduino ethernet shield did not work! , leds on etherner shield seemed right,but when go router management page , can't see arduino has been connected router.  use arduino server.what's problem it? how solve it? thanks! can tell more ? i assume normal ethernet shield, uses 5v arduino leonardo , makes own 3.3v. connected usb computer working ? whap happens when use 9v power supply barrel jack of leonardo (or vin) ? it possible use 5v power supply, first have measure if 5v. did connect usb micro connector ? the ethernet shield requires amount of current. when have bad connector or cable thin wires or breadboard bad contacts, voltage drop. can measure 5v pin of leonardo. if 5.0v (or @ least 4.8v, perhaps 4.5v) okay. Arduino Forum > Using Arduino > ...

importing form data into Excel

i doing survey in dreamweaver client. wants data sent him in email, , wants data exported excel file him analyze. know how this, or should start? cold fusion? i'm not developer, know enough dangerous! appreciated. thanks i don't know anyway easy client doesn't involve bit of server side scripting. i've done in past have form output csv file. client can create link in excel read data url. once setup, client needs open excel , click data refresh , content updated. More discussions in Dreamweaver support forum adobe

Using added LEDs to mimic status lights - Raspberry Pi Forums

apologies if posted in wrong place , should posting directly under raspbian section rather python. have been learning basics of python programming, lighting leds breadboard etc. have project have built own case hide pi unable see onboard status leds. want connect own leds mimic on board ones. power, lan, accessing sd card etc. can point me in right direction of tutorial? or in direction of coding onboard leds can attempt work out. thank you i don't think there easy way that. led code written in c , built linux kernel. can use device tree entries in /boot/config.txt file move of functionality of act , pwr leds other gpio pins. here's example code: select all dtparam=act_led_gpio=23 dtparam=pwr_led_gpio=24 (i think second 1 works) make gpio 23 (pin 16) act led pin , gpio 24 (pin 18) pwr led. raspberrypi

Getting out of a Loop on a button press

hello, searched on cant find can tailor project. basically, have single button controls 8 leds. i want controls be> start leds off->push button leds flash-> push button leds steady on> push button off. i cant seem figure out how program button break flashing function , move on steadyon function. have tested functions independently , there code fine. code: [select] void loop() {   buttonstate = digitalread(switchpin);   // compare buttonstate previous state   if (buttonstate != lastbuttonstate) {     // if state has changed, increment counter     if (buttonstate == low) {       buttonpushcounter++;       serial.print("number of button pushes:  ");       serial.println(buttonpushcounter);       delay(20);     // delay button debouncing (works enough)             if (buttonpushcounter == 0){       ...