Posts

Showing posts from July, 2015

Help with modulo. 25%10 always rounds off to 6.

Image
void processnumber(int number) {   int x;   unsigned int ones;   int tens;   ones=(number)%10;   x=(number)-ones;   tens=x/10;   updatedisplay(ones,tens); } here sample code tries display on 2 digit 7 segment timer. every time number has value of 5 @ end. example 25 rounds off 26 any suggestion amazing people? thanks in advance! how use forum - please read. quote 7. if posting code or error messages, use "code" tags quote 11. tips getting out of post post complete sketch (program code)! if don't waste time while people ask that. however, coding problems, if possible post "minimal" sketch demonstrates problem - not hundreds of lines of code. if problem goes away in minimal sketch, wasn't thought was. Arduino Forum > Using Arduino > Programming Questions > Help with modulo. 25%10 always rounds off to

Nested interrupts using NOBLOCK

hello forum, i running code interrupts every 1ms using timer2 overflow. programmed isr timer2 noblock hence nested interrupts enabled. isr checks bytes available read on serian receive buffer , processes them. what happen if somehow receive byte on serial hardware port during timer2 isr? rx isr interrupt current timer2 isr , insert byte onto serial receive bufer or set flag , wait until timer2 isr on , process incoming byte? i not clear if there interrupt priority when using nested interrupts or not. just on safe side, disable timer2 interrupts during timer2 isr. thank help. quote from: tero2011 on apr 12, 2014, 04:50 pm i programmed isr timer2 noblock... why? Arduino Forum > Using Arduino > Project Guidance > Nested interrupts using NOBLOCK arduino

Wiringpi2Python to custom a character on a 16X 2 LCD - Raspberry Pi Forums

i beginner of pyhton , rpi. tried customize character , display lcd wiringpi 2 python: # part of code code: select all charmap = { 0: ( 0b01000, 0b10100, 0b01000, 0b01111, 0b10000, 0b10000, 0b10000, 0b01111, ), } lcdchardef (lcd, 0, charmap) #end of code however, prompts error message: typeerror: in method ' lcdchardef ', argument 3 of type ' unsigned char [8] ' checked python did not have data type "unsigned char". wiringpi2python not work on ' lcdchardef ' ? thank help. hi, did few years ago, although not using wiringpi : viewtopic.php?f=32&t=8021&p=245630#p245630 hope helps, texy raspberrypi

bluez 5.30 on raspberry (another try) - Raspberry Pi Forums

hello, freinds. hope me solve problems. want create applications on rpi using bluetooth. know creating bluetoorh applications on linux systems everbody works d-bus service org.bluez. @ first downloaded bluez packages through synaptic manager. daemon bluetoothd there has 4.99 version. suppose it's latest working version of bluez raspberry. since bluez community recommends switch bluez version 5 removed packages installed synaptic , tried install bluez 5.30 of this manual . after newly installed daemon bluetoothd 5.30 started launch errors: code: select all bluetoothd[19968]: bluetooth daemon 5.30 bluetoothd[11985]: starting sdp server bluetoothd[11985]: bluetooth management interface 1.7 initialized bluetoothd[11985]: failed obtain handles "service changed" characteristic bluetoothd[11985]: not starting leadvertisingmanager, le not supported asked d-bus list available interfaces of org.bluez: code: select all dbus-send --system --print-reply --dest=org.bluez /org/blue

Relier plusieurs capteurs de pression à une seule Arduino avec I2C

bonjour à tous! je viens demander de l'aide car je suis un peu perdu dans mon stage la^^ alors voila mon sujet de stage est de pouvoir mesurer la pression à différents endroits d'une vmc. pour cela j'ai trouvé mon capteur, qui lui fonctionne en i2c pour la communication. ma question étant de savoir si c'est possible de connecter plusieurs capteurs sur la même arduino uno. merci d'avance de la réponse, n'hésitez pas à demander des références ou autres renseignements utiles à la compréhension! salut, l'i2c permet de connecter autant de capteur qu'on veut du moment qu'ils ont une adresse différente Arduino Forum > International > Français (Moderators: jfs, Snootlab) > Relier plusieurs capteurs de pression à une seule Arduino avec I2C arduino

Hoe moet ik alles netjes uitlijnen? - Joomla! Forum - community, help and support

ik ben bezig met een template maar heb nu een probleem. ik wil de main body netjes in het midden van mijn site hebben zodat deze recht naast mijn left en right menu staan maar met het component wat ik nu gebruik werkt dit niet. wie weet wat ik in mijn script moet aanpassen om dit toch te realiseren. dit mijn site zodat je kunt zien wat ik hiermee bedoel: http://www.loket.nu/portal/index.php code: select all       <table width="100%" border="0" cellspacing="0" cellpadding="0">          <tr>             <?php if (moscountmodules('left') > 0) { ?>             <td width="241" valign="top" class="leftblock">                <div id="leftblock">                   <div id="left">                      <?php mosloadmodules ( 'left', -2 ); ?>                   </div>                </div>             </td>             <?php } ?

RGB 7-segment digit multiplexing 3x74HC595

hi ! m sorry m begining in electronics , multiplexing rgb 7-segment http://www.adafruit.com/products/1399 3x74hc595 me wiring please ? have chain 3 74hc595 control 24 pins 3 pin spi interface ? thank much with 3 hc595 not multiplexing, sending out 3 bytes of data. connect sck srclk of each device. connect ss rclk of each device. connect mosi ser in of first device,  q7 of 2nd ser in of 3rd. oe/ of 3 pwm pin brightness control, or gnd. mrclr of 3 +5. connect 0.1uf cap vcc pin of each gnd. don't forget current limit resistor each led, sized appropriately: (5v - vf)/.02 = lowest resistor value, higher ok. may have tweak value perceived brightness between colors same. Arduino Forum > Using Arduino > LEDs and Multiplexing > RGB 7-segment digit multiplexing 3x74HC595 arduino

Controllo accesso in casa

salve ragazzi, sono nuovo del mondo di arduino e sto cercando di creare qualcosa che mi aiuti capire quante persone entrano al giorno in una stanza. il mio intento è, usando un sensore ultrasonico, ricevere una mail da parte di arduino nel momento in cui qualcuno entra nella mia stanza. come realizzare la parte riguardante il sensore ultrasonico, ma non ho ben capito come inviare la mail. vorrei provare due strade tal proposito: fare in modo che arduino, connesso ad un computer mediante usb, faccia inviare quest'ultimo (che è connesso in rete mediante wifi) la mail. rendere autonomo arduino e mediante un modulo wifi farla inviare direttamente lui. nel primo caso, ho bisogno solo di scrivere un script in c che invii una mail o devo fare altro? nel secondo caso invece, di cosa avrei bisogno oltre che del modulo wifi? grazie mille :-) potresti farti un software sul computer(potresti utilizzare anche un raspberry per la parte di invio email, in questo mod

raspistill SIGUSR1 mode does timelapse instead? - Raspberry Pi Forums

when command, hoping trigger still capture @ specific time later 'kill -s sigusr1 $pid' : code: select all raspistill -s -t 0 -o cap%04d.jpg & continuing set of timelapse images taken 10 seconds apart, without ever sending signals. intended? if don't include timeout '-t 0' parameter , do: code: select all raspistill -s -o cap%04d.jpg & process remain running indefinitely if never send signal, quits after 2 captures. possible leave raspistill running, waiting additional capture signals? jbeale wrote: when command, hoping trigger still capture @ specific time later 'kill -s sigusr1 $pid' : code: select all raspistill -s -t 0 -o cap%04d.jpg & continuing set of timelapse images taken 10 seconds apart, without ever sending signals. intended? if don't include timeout '-t 0' parameter , do: code: select all raspistill -s -o cap%04d.jpg & process remain running indefinitely if never send signal, quits after 2 captures. possibl

Using UNO and 2 RFID Readers

hi, i trying make uno read 2 rfid readers @ same time. whilst possible using code have, have managed make read 1 @ time, due power (i think) when put pin 5v 1 works, , next works - when try run them same pin, doesn't!? i'm new arduino, great! i've attached setup i've created make work! said, arduino reading both fine, seems power not powering both @ same time. hope can help i don't trust diagram.  make wiring list. list each pin number, think pin name , have connected. are trying run code ? if , post using "#" button. Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) > Using UNO and 2 RFID Readers arduino

Arduino stepper code tutorial for time lapse control unit

hey gang! just thought i'd share in case useful anyone.  i've spent last 2 weeks putting tutorial guides through how code time lapse control engine on arduino.  start off real slow/basic if new arduino or not familiar it, great starting place.  it's divided 5 parts , in end show how code system makes use of joystick, lcd, button several libraries , menu system create nice sms style time lapse controller.  enjoy! find first part here: http://www.photocs.net/arduino-stepper-code-basic Arduino Forum > Community > Exhibition / Gallery > Arduino stepper code tutorial for time lapse control unit arduino

Thread: Ubuntu Moblin remix help needed?

hi, have acer 1 have installed dell mini 9 jaunty moblin remix on. works superb (i never thought would) except sd card reader on left side not mount card without rebooting in slot. got ideas? ooops meant card reader on right side Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu Ubuntu Moblin remix help needed? Ubuntu

Serial Not Working

i used cf studio 4.5 many years backup editor dw in case wanted hop in edit done. on site other day browsing looking @ homesite 5.5 when window chat rep opened went chat. adobe rep told me upgrade homesite 5.5 since owned dw 8 part of studio. tha ti have purchased upgrade homesite 5.5 not accept cf studio 4.5 serial nor studio mx serial nor studio mx 2004 serial , not cs3 creative suite serial upgrade serial number. doing wrong or misinformed adobe rep in chat room? if purchased upgrade should have received new serial number. you've discovered old ones won't work. check emails see if serial number sent. , check account @ adobe.com. it's possible can serial number there (although think works adobe branded software - hs still counted macromedia, think). alternatively open support ticket or phone tech support. More discussions in General Discussion adobe

Trial RH7 - Where's the Table of Contents gone?

1. ok adobe, have hidden table of contents pane? how h*** can work without it? 2. there simple videos can download run through how familiarise myself robohelp 7 after using rh6? (i use html version webhelp / chm output. ) 3. clicked "quick tour of robohelp" starter page in rh7, , takes me straight rh7 sales page on web site. not lot of help... 1. click on project pod , select table of contents folder. double click on toc wish open. accommodates multiple toc feature. i know mdi different , takes bit of getting used to; grow love it. check out reviewers guide found on page. http://www.adobe.com/products/robohelp/ or direct link http://www.adobe.com/products/robohelp/pdfs/robohelp_7_reviewers_guide.pdf kind regards craig More discussions in RoboHelp HTML adobe

Joomla! Forum - community, help and support - Login

the board requires registered , logged in view forum. username: password: i forgot password resend activation email remember me hide online status session   register in order login must registered. registering takes few moments gives increased capabilities. board administrator may grant additional permissions registered users. before register please ensure familiar our terms of use , related policies. please ensure read forum rules navigate around board. terms of use | privacy policy register Board index

which should i choose to learn: AS 2.0 or 3.0??

hi.. first of let me tell i'm glad here on forum... my dilema simple... started play around in flash meaning know basics in creating website , few 2.0 commands[made video pack tutorial: lynda.com macromedia flash professional 8 essential training] , before go further wondering: should continue learning 2.0 or don't waste precious time , start learning 3.0 right away??? hope can newbie me on one!!! thanks in advance!! no doubt... as3. "dpcdpc11" <webforumsuser@macromedia.com> escribió en el mensaje news:fnlmd1$6up$1@forums.macromedia.com... > hi.. first of let me tell i'm glad here on > forum... > dilema simple... started play around in flash meaning > know basics in creating website , few 2.0 commands[made > video > pack tutorial: lynda.com macromedia flash professional 8 essential > training] > , before go further wondering: > should continue learning 2.0 or don't waste precious time , > start > learning 3.0 ri

Developer toolbox, Editable drop down encoding problem

hi i'm using dw cs3 developer toolbox, php mysql. problem editable drop down show national characters wrongly. actually inserts data in database wrong encoding. i use encoding "charset=utf-8", other forms working fine. only editable drop down show [squares] instead Ä ö ü ... how can editable drop down inserts data in utf-8 encoding? (like other forms , fields in page) thanks! i saw posted question in addt forums -- problem is: if no other user on there can provide solution, posting in these regular dreamweaver forums won´t much, because many folks here don´t know addt is. More discussions in Dreamweaver support forum adobe

Flash movies &quot;paused at start&quot;

i'm total newbie flash, go easy...:) i've flash movie created wmv have, want play on website. i've worked out dragging flv flash gives me options create skins player etc, fine. can publish , work - http://swanningabout.co.uk/flashmovie/movie.html however, in "publish settings" options i've ticked "paused @ start". however, can see in above link movie plays right away. looking @ source, "play" parameter flash can't see problem be? am missing something? many in advance, ed ludlow hi ed that function not used other things basic timeline control. therefore need following: select flvplayback component , move on properties panel, , set autostart parameter false. that's it. cheers More discussions in Adobe Animate CC - General adobe

Crash when incrementing integer

Image
hi all, i have been working on below program time, , have based off topic found here: http://arduino-cool.blogspot.com.au/2012/09/arduino-rgb-led-managed-by-remote.html here code: code: [select] #include <wire.h> #include <liquidcrystal_i2c.h> #include <irremote.h> // lcd driver // a4 (sda), a5 (scl) liquidcrystal_i2c lcd(0x27, 16, 2); // set lcd address 0x20(cooperate 3 short circuit caps) 16 chars , 2 line display // motion sensor // d3 (pwm) #define motionpin 3 #define ledpin 2 // rgb driver // d4, d9 (pwm), d10 (pwm), d11 (pwm) #define irpin 4 #define bluepin 9 #define redpin 10 #define greenpin 11 irrecv irrecv(irpin); // initialise irrecv library // digital button // d13 #define buttonpin 13 //remote signals #define on                0xff827d #define off               0xff02fd #define brightness_up     0xff3ac5 #define brightness_down   0xffba45 #define flash             0xffd02f #define fade7             0xffe01f #define fade3             0xff609f #de

Item needed ? - Raspberry Pi Forums

Image
so im going pi 2 , made list of thing use. , want advice on them choice or bad first of im getting canakit @ 85$ http://www.canakit.com/raspberry-pi-starter-kit.html , wireless 2.4 keyboard touchpad 25$ http://www.canakit.com/raspberry-pi-wir ... d-rii.html samsung evo 32gb sdhc class 10 neweeg sure real 1 30$ come usb reader http://www.newegg.ca/product/product.as ... 1427332903 arctic silver adhesive heatsink because have heatsink never bought glue anyways. , audio soundcard has great review , no driver needed title http://www.amazon.ca/gp/product/b00oj5a ... 0xspolued0 seem have need audio box run 24/7 on smsl sa 50 amp ? may add camera later fun , or security purpose your cana kit comes micro sd card , if want large storage 32 gb ssd. looks comes heatsink (not helps) already. other that, yes, that's all. raspberrypi

Kaindl Windmaster 2 Daten auslesen, mit Arduino loggen

Image
hey leute, ich habe mir vor geraumer zeit einen kaindl windmaster 2 zugelegt und frage mich ob es möglich ist, die daten die dieser erzeugt (windgeschwindigkeit) auszulesen und diese mittels eines arduinos und eines ethernetshield mit sd-karte zu loggen. was sagt ihr? anbei ein link zum kaindl windmaster 2: http://www.windmaster2.de/index-d.htm vielen dank schonmal für eure antworten! gruß dein link zeigt mir nichts von irgendwelchen externen schnittstellen. 90 % des werts steckt in der robusten konstruktion. ist nicht für leute gedacht, die damit eine internetfähige wetterstation bauen wollen. sieht aus als müsstest du ihn zerlegen ob das gehäuse nur mit dem hammer aufgeht oder geschraubt ist, kannst du wohl selber besser beurteilen. aber sie haben eine kontakt-formular seite. frag einfach mal. vorschlag: nimm das ding als referenz, und bau dir ein nacktes windrad , bei dem du die impulse zählst. hier gefunden zum ausschlachten ist der sensor/magnet des

How can I get the mouse cursor to display the Link Cursor on a text field?

i set following properties in code: usehandcursor = true yet cursor changes beam cursor when hover on text <mx:text text="{_projectdetail.delegatedlead}" usehandcursor="true" click="showempprofile( _projectdetail.sfpdelegatedleadedit )"/> i tried using buttonmode = true stil no hand cursor. any ideas? i think want "selectable" property set false. prevents pointer changing i-beam. still need have pointer change link pointer. search online, "flex change cursor pointer" or that. hope helps. More discussions in Flex (Read Only) adobe

Muting Typing Sound Effects

Image
hi all, quick question here, feedback. i have recorded screen capture has input box user types in information. of capture, , set correctly, want remove typing sound effect. when right click on typing layer in timeline, dont option muting it. any suggestions? again! hi mw06 try clicking edit > preferences... > project node > settings node. once there should find option titled: play tap audio recorded typing when project generated . de-select that, publish , see if want. cheers... rick More discussions in Editing adobe

Dreamweaver CS3 trial down load

Image
hi i tried downloading adobe dreamweaver cs3 last night , issue getting actaully work? any ideas - forward hearing knows problem. > ideas - forward hearing knows problem. not without more info. which os? problem experiencing? -- regards john waller More discussions in Dreamweaver support forum adobe

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

Image
i see in finland going have joomla! day , wondering, live in sweden, if there going similar here or if has happened yet? i think idea , attend if going happen. please let me know. cheers hi damo! have seen following news article? http://www.joomla.org/content/view/2100/42/ ..and can read more in sticked topics in diverse (off topic) forum (in swedish) http://forum.joomla.org/index.php/board,213.0.html Board index Joomla! International Language Support International Zone Swedish Forum Äldre versioner Forum Joomla! 1.0 Allmänna frågor

Bluetooth to bluetooth mate loss of data

hello all,     able 2 bluetooth mates , 2 arduino pro minis communicating through serial windows using suggested code sparkfun on each arduino code: [select] #include <softwareserial.h>  int bluetoothtx = 2;  // tx-o pin of bluetooth mate, arduino d2 int bluetoothrx = 3;  // rx-i pin of bluetooth mate, arduino d3 softwareserial bluetooth(bluetoothtx, bluetoothrx); void setup() {   serial.begin(9600);  // begin serial monitor @ 9600bps   bluetooth.begin(115200);  // bluetooth mate defaults 115200bps   bluetooth.print("$");  // print 3 times individually   bluetooth.print("$");   bluetooth.print("$");  // enter command mode   delay(100);  // short delay, wait mate send cmd   bluetooth.println("u,9600,n");  // temporarily change baudrate 9600, no parity   // 115200 can fast @ times newsoftserial relay data reliably   bluetooth.begin(9600);  // start bluetooth serial @ 9600 } void loop() {   if(bluetooth.available())  // if bluetooth

Social Activist Site - Joomla! Forum - community, help and support

this first joomla! site, hope become online community academics , activists discussing social policy , social change.  i've installed community builder , jomcomment facilitate discussion. this site brand new , first serious attempt design site.  no 1 has commented on design / content , i'm wondering others think.  feedback appreciated.  thanks! http://www.solidarity-now.com what stands out right away readability of site.  on site long articles , in-depth discussions, should try , make font more readable.  it's difficult majority of people read small white text on black background. i change content background white, text black, , increase font size , line height. right now, gray wave @ top little bland on lcd monitor , on crappy old crt can't see it.  think eye-catching image or graphic in header might more suitable. Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information

Cannot record full motion (drag and drop)

Image
hi, i got problem recording full motion. if use shortkey f9 not starting. tried many other shortcuts records "press f9 key". auto starting full motion not working. thanks help. hi yoxo , welcome our community the thing comes mind possibly clicking options > recording options... > full motion recording tab , checking see how record @ higher full motion capture rate smoother movie option set. find (selected or de-selected) i'd try opposite setting , seeing if behavior changes. other that, changing working folder perhaps c:\. hopefully 1 of these suggestions helps directly or helps spawn thought does. or possibly others chime in other/better suggestions , insights. sincerely... rick More discussions in Recording adobe

HDMI to VGA Adapter Question - Raspberry Pi Forums

hi everyone, i'm looking display raspberry pi model b on flat-panel lcd screen via vga. wondering if there restrictions on using adapters. here looking at: http://www.amazon.com/ourspop%c2%ae-ur0 ... roduct_top . have read may not idea use converter not have separate power supply. know when 1 needed , when 1 not? if matters plan on creating bartop arcade emulates snes, genesis, , gba games. thanks, mog there risk using unpowered converter draw power through 1 of diodes near pi's hdmi port , destroy it, making pi's hdmi useless. has happened @ least 1 person. anecdotally, i've been using 1 similarish 1 posted original model while now, without problems. raspberrypi

Thread: Ubuntu Reporting Incorrect Disk Space

Image
hi, stumbled upon issue after deleting 30 gigs of data off of laptops 250gb hard drive. checked hard disk free space via system monitor after performing delete , surprised not see difference in free space reported. i've run 2 separate programs...disk usage analyzer , kdirstat, both of report 50gb of space being used total of 224gb of disk space. ubuntu reporting 94gb of free space. add confusion disk usage analyzer lists 50gb being used out of 224gb on hard disk, on same page shows used amount being 118gb 105gb free. pretty confusing stuff , i've tried searching similar issue, have found none. have explanation results seeing? btw, i've attached shot of disk usage analyzer screen , 1 of system monitor. in advace! -bryan attached images diskusageanalyzer.png (92.2 kb, 9 views) systemmonitor.png (14.4 kb, 8 views)

Site looks different in FireFox but ONLY on PC

i have site works in every browser except firefox on pc. it's fine on mac not pc. there can correct this? the problem text isn't in same place. in css position set absolute , in firefox on pc needs 100px pixels left. the css i'm using is: code div#text{ color: #666666; font-family:verdana; font-size:13px; position: absolute; left: 407px; top: 145px; width: 349px; line-height: 20px; } but css need use looking right on pc is: code div#text{ color: #666666; font-family:verdana; font-size:13px; position: absolute; left: 507px; top: 145px; width: 349px; line-height: 20px; } thanks you have give more information have provided. we need see page , of css. can put up somewhere on web , provide link? the css have provided work in both browsers obviously have issues in terms of <div> in code in relationship other elements. lucy4 wrote: > have site works in every browser except firefox on > pc. it's fine on mac not pc. there can correct >

Can't edit template in Administrator Backend - 403 error? - Joomla! Forum - community, help and support

hi guys, i've searched forums, google , soul, can't work 1 out... forgive me if i've overlooked basic! i've got freshly installed joomla site. wanted edit default template in administrator backend using site>template manager>site templates menu option. i checked template writable changes saved. made changes, clicked save , then... disaster! got message: forbidden you don't have permission access /administrator/index2.php on server. additionally, 404 not found error encountered while trying use errordocument handle request. apache/1.3.37 server @ http://www.nanumtawap.com.au port 80 what have done wrong? please help... thought had server configured correctly! (?) thanks in advance, tim what chmod settings template folder? also, have .htaccess file might blocking changes directory? Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

0 to 5 Volts working on multi-meter but not on auduino

fairly new arduino, getting required levels on output of ss3000 using multi-meter arduino board cannot read signal sensor (have many other types of sensors working , if unplug sensor , put 10v temp output shows correctly on arduino), looks floating earth or similar, please advise may doing wrong.  using pair of resistors divide 0-10v output of ss3000 arduino 0-5v range. sensor - deltasense motron smart sense 3000 humidity sensor (12v input, 0-10v output) using computer power supply has both 12v , 5v rails: [computer power supply] gnd -> ss3000, arduino, voltage dividers 5v -> arduino 12v -> ss3000 [ss3000] temp (0-10v) -> voltage dividers humidity (0-10v) -> voltage dividers [voltage dividers] divider 1 (pair of 10k resistors) -> a0 of arduino divider 2(pair of 10k resistors) -> a1 or arduino images attached. if can assist great. - william i can't see wrong diagram must different actual circuit have. any chance of posting photogr

Anoying Flash Security &quot;Features&quot;

i wonder @ how 'security' decisions made flash product. hope when flash brand moved under wings of adobe decision process might change , of annoyances in old product might removed, low behold seem making more ridicules ones. i thought i’d summarise annoying of these security mistakes in hope @ adobe might pick , see how ridicules of these are. i’ve added biggest grievances, others can work around, please feel free add own. 1. keyboard shortcuts in full screen mode full screen mode great; can start making media centre style interfaces presenting video on web. wait… keyboard shortcuts disabled! sure, disabling ability use makes more secure, @ risk of making less usable. i cannot understand adobe’s thinking on one. i’m sure right developer @ apple thinking, “how can make next mac os more secure? know let’s disable keyboard input.” 2. download of xml files. one of important features of flash ability download additional content dynamically. why there security restriction do

Need help for activating USB LCD at bootup - Raspberry Pi Forums

hi all, bought myself 16x2 lcd display usb / serial backpack adafruit , followed guide / tutorial t. ( https://learn.adafruit.com/character-lc ... itor/linux ) when entering lcdd in terminal lcd server activates, when follow lcdproc runs great. entered steps in tut involving start @ boot, , doesn't work. tips, ideas? can post readouts tonight when i'm behind pi. /etc/init.d still used on raspbian start lcdd daemon, or there more appropriate place? copy /etc/init.d/skeleton /etc/init.d/lcdproc , edit run lcd daemon. raspberrypi

[FIXED] - [function.chown]: Operation not permitted - Joomla! Forum - community, help and support

Image
warning: chown() [function.chown]: operation not permitted in /home/joomla/public_html/libraries/pear/file/archive/writer/files.php on line 251 warning: chown() [function.chown]: operation not permitted in /home/joomla/public_html/libraries/pear/file/archive/writer/files.php on line 251 i these warnings when installing small component 1 joomla wiki. simple hello world component. legacy mode enabled because told me so. both ftp user , user running apache har full access joomla files , directories. so looks component installed cleanly, chown'ing...? there place can define behaviour dont need chown anything, files have correct owner/group. this 27.10.06 nightly build com_hello.php         echo "hello world"; ?> com_hello.xml   hello_world   01/01/2006   john doe   released under gnu/gpl license   jdoe@domain.org   http://www.domain.org   1.0   example hello world component.     com_hello.php   please try again recent nightly build. louis rewrote complete installer ,

Loose RS in the Applications Bindings with Complex SQL

my rs disappearing bindings table. sql lookes this: mysql_select_db($database_qa, $qa); $query_rslisttestcase = sprintf(&quot;select testcase.*, author.*, module.*, productrelease.*, products.*, status.*, mfr.*, section.* testcase inner join author on author.author_id = testcase.author_id inner join module on module.module_id = testcase.module_id inner join productrelease on productrelease.release_id = release_id inner join products on products.product_id = testcase.product_id inner join status on status.status_id = testcase.status_id inner join mfr on mfr.mfr_id = testcase.mfr_id inner join section on section.section_id = testcase.section_id bug_number = %s&quot;, getsqlvaluestring($colname_rslisttestcase, &quot;int&quot;)); when try , save, rs removed bindings panel still in code. thoughts? i used lot mysql pre cs3. way rs quit dw , restart again. More discussions in Develop server-side applications in Dreamweaver adobe

Solved: Sony Ericsson T610 als GSM-Modem / Probleme mit TextMode

hallo zusammen, ich versuche gerade mit einem älteren sony ericsson t610 (über ein datenkabel mit meinem arduino mega 2560 serial1 angeschlossen) sms im textmode zu verschicken. das handy unterstützt textmode (at+cmgf=? -> (0, 1)) und wurde auch auf diesen eingestellt. ich versuche nun mit folgendem sketch eine sms zu versenden: code: [select] void setup (){    serial.begin(9600);  serial1.begin(9600);    delay(1000);  serial.println("arduino gebooted!");  serial1.println("at+cmgf=1");  delay(1000);      serial1.println("at+cmgs=\"+49151xxxxxxxx\"");  delay(600);  serial1.print("das ist ein test des textmodes");  delay(600);  serial1.print(char(26));  delay(2000);     } void loop (){        while(serial1.available() > 0){    serial.write(serial1.read());  }     } ich erhalte dabei leider immer  "+cms error: 500" als antwort, wiederum "unbekannter fehler" bedeutet (ausgabe des seria

Weight Scale Part 1 (High Resolution A/D Conversion and GUI)

hi all: this high resolution weight scale gui built arduino uno , processing 1.5.1. have been playing high resolution before in of previous projects; nothing this. using same 10 bits a/d converter arduino resolve 1024 different voltage values in 0-5v interval, system resolving 100000 different voltage values in interval (in grams scale), corresponds 5/100000= 5 microvolts voltage steps. result quite stable video shows. neither amplification nor hardware noise reduction techniques in use. pot directly connected arduino a0  input. in other scales (units) resolution greater (shown end of video). achieve resolution, of course, overall frequency response of system had drastically reduced , total response time slow. in general, has slow moving variable tolerate this. tried add dithering; there no noticeable effect, either because doing wrong or because there enough noise present in signal. don't have clear answer on yet. in previous projects data collected logged directly excel

Thread: Broadcom BCM4401 100Base-T wired

hello all. have been looking @ posts card. system -- dell 5150 laptop. wireless thru usb works fine wired inop. here returns form ifconfig: nj0e@nj0e-laptop:~$ ifconfig eth0 link encap:ethernet hwaddr 00:0b:db:99:0f:4f inet6 addr: fe80::20b:dbff:fe99:f4f/64 scope:link broadcast running multicast mtu:1500 metric:1 rx packets:0 errors:0 dropped:0 overruns:0 frame:0 tx packets:3 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 rx bytes:0 (0.0 b) tx bytes:250 (250.0 b) interrupt:7 lo link encap:local loopback inet addr:127.0.0.1 mask:255.0.0.0 inet6 addr: ::1/128 scope:host loopback running mtu:16436 metric:1 rx packets:19244 errors:0 dropped:0 overruns:0 frame:0 tx packets:19244 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0

RPi Timed UPS - No more corrupt cards from power failure! - Raspberry Pi Forums

Image
would feedback on - might change, add or remove. run raspberry pi nas, websever or whatever worry free power issues? how ups has settable timer safely shut down if power isn't returned in time. in design stage far. here's how works... 17 volt supply used power entire system , keep 9.6 volt 2200mah battery monitored via max712 smart charging ic power pass through. ptn78020wah 5 volt 6 amp regulator module powers board , 2 raspberry pi's. attiny26 avr microcontroller runs show. 20x2 lcd displays battery percentage , minutes set timer. when power goes out selectable timer starts (from 5 minutes hour). lcd displays battery life , shows count down of timer. if power returned before timer expires, lcd resets , pi happily runs along if nothing happened. otherwise avr triggers opto-coupled (isolated) switch between gpio 3 , ground (pins 5 & 6) initiate bit of code on pi shuts down pi safely. in 20 seconds, power cut pi , batteries preserving them until power restore

spry tabbed panels and mysql db

i'm new dw , using cs3. web page i'm creating has product page great spry tabbed panels. my database in mysql , made record set , inserted dynamic text table within spry tabbed panel (tab 1). when upload onto host, data not display table outlines , headers do. tab 2 (did same) nothing shows @ all. started wondering, possible use mysql databases within spry tabbed panels? i've found talks importing mysql xml. hoping not because have other tables on other pages working lovely (not in panels). , wanting use mysql insert record form owner of website update own data. i hope i'm making enough sense here! suggestions highly appreciated. p.s. did need tell i'm using php? i'm experimenting also. i believe, , open correction, spry panels cannot handle php or asp driven data directly. needs converted xml , can populate spry panels. i see many referenced same issue throughout web , never direct response of, "it cannot done...yet", except links documents on

2 axis cnc arduino software

hi new arduino programming , wanted ask questions. build 2 axis cnc machine. found easy circuit uses 2 easydriver , arduino uno. 1) http://www.instructables.com/files/orig/fiw/bvku/hq5k2lou/fiwbvkuhq5k2lou.pdf 2) http://www.instructables.com/files/orig/fal/otnz/hq5mhm8z/falotnzhq5mhm8z.pdf the problem have don't know how write program control stepper motors whit pc. is there piece of code out there use project? you haven't given indication of how background knowledge of cnc have. are familiar arduino cnc program called grbl (google find it). do know how produce g code defines movements tool tip should follow? and, way, neither of diagrams shows stepper motors need own power supply. arduino can't supply enough power drive electric motors. ...r Arduino Forum > Using Arduino > Project Guidance > 2 axis cnc arduino so

simple problem

i have set _global.category = navpaint in function block but how call in situation? the trace works... _root.navblank.blank_back.onpress = function() { trace(category); var contenttween2:tween = new tween (_root.navblank,"_x",back.easeout,14,-150,.5,true); var contenttween:tween = new tween ( category ,"_x",strong.easeout,-80,14,.5,true); }; thanks, anton any insight? i know quick fix. thanks. More discussions in ActionScript 1 and 2 adobe

Gallery2 sidebar not working - Joomla! Forum - community, help and support

i trying add navigation menu gallery in joomla site. gallery2 bridge has been installed , gallery2 sidebar module. i have added menu item gallery on menu menu pages ( http://www.visionaryredesign.com ). i have turned display g2 sidebar , display g2 login no in gallery2 component config menu. i have selected blocks displayed in sidebar in gallery2 themes site admin search box, item actions , links albums. i have published gallery2 sidebar module positioned right , menu item link gallery menu item. but not getting menu show in right position, blank see: http://www.visionaryredesign.com/gallery2/main.php . does have idea have set incorrectly? help. Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Integration & Bridges - 1.0.x

reference roue codeuse

bonjour j'ai le projet de mesurer la distance de roulement/deroulement d'un enrouleur de cable. pour cela il faudrait que je connaisse le sens, je comptais mettre une roue codeuse sur l'axe. le probleme c'est que je ne trouve pas de reference sur radiospare ou selectronic qui me convienne, je souhaiterais une roue codeuse avec un axe. pourriez vous me donner une reference d'un composant de ce type? en vous remerciant par avance. a bientot. quote from: solaris13 on apr 13, 2014, 03:03 pm bonjour j'ai le projet de mesurer la distance de roulement/deroulement d'un enrouleur de cable. pour cela il faudrait que je connaisse le sens, je comptais mettre une roue codeuse sur l'axe. le probleme c'est que je ne trouve pas de reference sur radiospare ou selectronic qui me convienne, je souhaiterais une roue codeuse avec un axe. pourriez vous me donner une reference d'un composant de ce type? en vous remerciant par avance. a bi

Help for GSM Remote Control

hello ! i'm trying make gsm remote control these arduino parts http://store.arduino.cc/index.php?main_page=product_info&cpath=11&products_id=195 http://store.arduino.cc/index.php?main_page=product_info&cpath=37_5&products_id=282 http://store.arduino.cc/index.php?main_page=product_info&cpath=16_20&products_id=113 does know code must upload make ? i have modified code project http://scuola.arduino.cc/lesson/lvevk1a/using_sms_messages_to_control_led_color    because want control pin13 in order connect relay ! i made code  :  #include <gsm.h> // includes gsm library, included in arduino ide #define pinnumber "" // declaration of constant pinnumber used push pin number of sim card #define pin 13 // declaration of constant pin, , setting output nr. 6 gsm gsmaccess; // opens gsm access on shield. gsm_sms sms; char remotenumber[20]; // variable store remote number modem. char c; //variable reading sms messages sim car