Posts

Showing posts from August, 2011

Thread: No Wireless | Ubuntu 9.04 | HP Pavil Dv5000

no wireless in ubuntu 9.04 on hp pavilion dv5000. got solutions? guys! some info card help code: sudo lshw -c network please Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] No Wireless | Ubuntu 9.04 | HP Pavil Dv5000 Ubuntu

MacBook Network Bridge - Raspberry Pi Forums

Image
hello, know if use crossover cable can share macbook's internet rpi, won't able hands on 1 sometime , impatient have normal cat 5 cables , 2 routers. router 1 virgin media "superfast hub" serves wifi network (192.168.1.0), macbook connects to. have plugged macbook router 2 (192.168.0.0). have plugged rpi router 2 also. rpi , macbook talk each other no issues (ssh, xwindows etc...). how rpi 192.168.1.0 network , internet? need tell rpi macbook it's default gateway internet. need tell macbook rpi asking internet. have switch internet sharing on, on macbook. have attached image of trying achive. thanks hello! quick answer you. if activate internet sharing on macbook, tell rpi ip-address (192.168.1.x/24) , gateway (192.168.1.4) reach internet. router 2 not have work router, switch/bridge in way. , secondly have tell router 1 how reach network 192.168.1.0/24. hope understand mean. raspberrypi

Thread: TwonkyMedia/CDs

hi, having trouble twonkymedia server (30 day trial). whenever stream media xbox 360, plays 30 seconds (some longer, shorter) before sound bugs out. i'm not sure if because trial version, when try either select next or stop go back, 360 freezes. i've been trying find replacement windows' automatic streaming (once select 360 in wmp's sharing area. if reason sound stops working twonkymedia because it's trial, there way stream via vlc media player? if so, please post link. if not, there program out there can create cds mp3/wma files can ripped onto 360? i'm not talking burning cd; that's simple. i'm talking studio-style cds can rip onto computer (or, in case, xbox 360). hate how windows media player doesn't this, due copyright issues or drm-related crap. if finds out what's wrong twonkymedia (server), locates studio-style cd burning program (preferably 1 that's not complicated), or knows how set streaming in vlc, p...

Pololu Wheel Encoder Help.

hi all, has every used pololu wheel encoder arduino. i'm finding instructions on website quite confusing. http://www.pololu.com/docs/0j20/6.n i wondering somone me make sense of instructions i'm newbie , struggling. their wheel encoder bas 2 digital outputs, need read , count every time value goes hi. hi! i've bought these encoder wheels , i'm waiting them. according documents have, consist on 2 inputs each wheel. pololu provides free function library (arduino compatible!) in http://www.pololu.com/docs/0j18/16 it's simple , based on pcint interrupt handler. weak point is limited 2 encoders.  :-/ if need more information, @ basic encoder information web page or write me. regards, /me Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Pololu Whee...

Help with the SD-card slot - Raspberry Pi Forums

Image
hello all, in couple of days raspberry pi arrive (i can't wait longer). i'm searching sd-card, in specs (i hope have looked right) isn't information sd socket. question know how fast these can run class 10 sd card or not?? rl600 bump. in exact same situation. almost, unit not ship few more weeks . want sd card, class 10 card ok? raspberrypi

content vs looks - Joomla! Forum - community, help and support

Image
okay, cms content.  of tutorials i've read says using joomla easy way manage content.  however, go through formus/templates , seems focus on look.  i'm torn.  know need both want opinion. what important you? (i i'm torn because i'm working on site women, has strong content.  nothing simple modules , content.  hubby web desginer profession , building me template because of other "paying" projects mine taking waaaaaaaaaaaaaaay tooooooooo long) i should able have both.. content , looks Board index Other Forums The Lounge

getting the least significant bit from a byte

hi everyone, this sure easy task c experts out here in forum, hard me. communication i2c device need determine if specific bit set or not in byte i'm receiving wire library (this contains status update on if or if not there's new value ready read). i.e. byte b = 110 // (or 0x6 in hex) need check if '0' '0' independently other bits i hope clear i'm trying do? in advance help. once i'm getting communication between arduino , ad7746 running i'll post code. (if know how head forward -> http://www.arduino.cc/cgi-bin/yabb2/yabb.pl?num=1239676788) best, stephan http://arduino.cc/en/reference/bitread the arduino way: code: [select] byte x = b001; boolean leastsignificant = bitread(x,0); Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > ...

Amiga "Boing Ball" for Raspberry PI - Raspberry Pi Forums

i don't know if interested in recreation of classic amiga "boing ball", thought might find interesting. https://github.com/bbond007/rasppiboing.git default mode full-screen opengl es audio on headphone jack params: x (320 x 240 x11) x (640 x 480 x11) hdmi (sound out hdmi port - best) none (no sound) xwindows rendering done via technique described here: http://www.raspberrypi.org/phpbb3/viewt ... =63&t=6488 original project which used parts of. http://www.jimbrooks.org/web/opengl/boing/ great, remember amiga's competitors brought out own "boing ball demo's" show too, notably atari st, others too. can view video of result? raspberrypi

loading events?

im trying make pages have kind of loading event. example, red line, that's consistent on every page, drop down on content , reveal new page new content. how make objects red line move when change pages? have use flash? have flash 8 , dreamweaver cs3, don't have experience either program. tips welcomed. thanks ie put in head section of every page except index <meta http-equiv="page-enter" content="revealtrans(duration=4,transition=5)"> "lexusam3" <webforumsuser@macromedia.com> wrote in message news:f2hs08$7ki$1@forums.macromedia.com... > im trying make pages have kind of loading event. example, > > red line, that's consistent on every page, drop down on > > content , reveal new page new content. how make > objects > red line move when change pages? have use > flash? > have flash 8 , dreamweaver cs3, don't have experience > either > program. tips welcomed. > More discussions in ...

Using slider to control movement

hi all, appreciate figuring problem out. i'm trying build scrubber control movement of movieclips. code uses , down keys in onenterframe increase or decrease "vz". working fine, , movieclips move using: dream.z += vz; line of code need make scrubber work. make sense? posted once, i've tried strip code down make easier read in forum. scrubber should zoom dream clips in when slide way right, , zoom dream clips out original position when slide left. ................//mover function function mover():void { if (zdepth < 55 && key.isdown(key.up)){ vz -= .5; zdepth += .5; } if(zdepth > 0 && key.isdown(key.down)) { vz += .5; zdepth -= .5; } vz *= friction; (var i:number=0;i<dreamarray.length;i++) { var dream:movieclip = home["dreamarray" +i]; //this next line need dream.z += vz; var scale:number = fl / (fl + dream.z); dream.swapdepths(-dream.z); } } } .......................//scrubber code................... var scrubber...

Arduino, Adobe Flash and Playstation 3 sixaxis

Image
hi everyone, i'm new here gentle   i purchased usb host shield circuits@home , have connected arduino , written small sketch prints accelerometer , gyroscope values serial port. want use information control movie clip eg if sixaxis has value 'n' along x axis , value 'n' along y axis, show particular movieclip. i know need use proxy, question concerning formatting of data arduino. sketch this;  serial.print ("accx = ");  serial.println(accx); which should when viewed in arduino ide mean can address "accx" in actionscript? how flash distinguish between values accelerometer x axis , y axis? maybe actionscript question pointers useful me. many thanks, dai     way have figure out how serial read in actionscript. have not been able yet, or know if possible.    another way use as3glue , read in analog input values directly actionscript. let actionscript computing. Arduino F...

Online TV/Radio Component? - Joomla! Forum - community, help and support

hello everyone, is there online tv component? there's regional television channel , i'd broadcast joomla site. ideas guys? also, can online radio station set thru. joomla? if not there other script available? also, is possible put news feed on front page. want table of contents on front page displaying headlines. links go new page. thanks did have luck in finding radio component? i want have radio station on site. shoudl allow manage streaming files. also display playing. let know , thanks. Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

Data Visualized error with Proccessing

hello massimo banzi , here! i had arduino board connected to intel mac os 10.4.10. test 3 softwares: blink, button , ap_digitalread. 3 of them runs on arduino board , have no problems @ all. when try use arduino 09 + procesing 125 strange happen. software in board still running ok data previsualization software running  there no changes in graphics. mean software processing software running doesnt work.   i download firmware  for version 08 , upload board , have no problems. i try other arduino board , samething happen do miss somehting? please me. ignacio to use processing serial port (usb connection) need run macosx_setup.command in libraries/serial (something that) folder of processing, restart computer. Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > Data Visualize...

Games? - Joomla! Forum - community, help and support

well. want have gaming system on joomla. using games run phpbb forum. there in can connect joomla database usernames register on site used on forum?.... help? phpbb component (phpbb) integration joomla user database. may configured wrapped or unwrapped. home-joomlastuff features joomlaforge download documentation faq support forum tutorial screenshots demos:  demo-joomlastuff   demo.joomlastuff.org-backend-demo   phpbb forum home ----- more cmms here: resources: joomla components, modules, , mambots http://forum.joomla.org/index.php/topic,16398.0.html Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Coldfusion error - security?!?

hello, i purchased hosting , trying website online. i'm using coldfusion on website, getting error. this code load header , footers .cfm file... <body> <table width="72%" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="2"><cfinclude template="/includes/inc_header.cfm"></td> </tr> <tr> <td width="78%">info goes here </td> <td width="22%">something goes here.... </td> </tr> <tr> <td height="38" colspan="2"><cfinclude template="/includes/inc_footer.cfm"></td> </tr> </table> </body> and here error getting.... web site accessing has experienced unexpected error. please contact website administrator. the following information meant website developer debugging purposes. error occurred while processing request security: requested ...

A code for light pulse to control servo

hello new here , browsing forum ages now, need basic code build from, because have been trying coding , have no idea start. need pulse counter in combination analog sensor. the idea light pulses send beamer , according frequency (which 1hz) servo reacts accordingly. sensor have ldr. so situation ldr has value. every second measured if value changes lot natural light + beamer light (value + threshold) if changes counter count +1 every 5 seconds measured count if 3 > servo go 90 degrees if 4 > servo go 180 degrees and counter reseted i saw many different ways count don't know start. great in advance! quote so situation ldr has value. you can read value using analogread. quote every second measured if value changes lot natural light + beamer light (value + threshold) if changes counter count +1 use millis() see time is. record when take reading. see if enough time has elapsed need take reading. if time take reading, so, , record time. if reading ha...

extCalendar2 RSS Feeds (help) - Joomla! Forum - community, help and support

Image
i using extcalender2 found here: http://developer.joomla.org/sf/projects ... s_calendar on joomla 1.4 i have been looking on net find out if has developed rss feeds show events... i found this: http://www.jewschool.com/calendar/extcalrss.txt but works regular extcalendar app (not joomla component... think). when use code... following error: direct access location not allowed. i guess means.. not connecting db? killing session? i know alot of people interested in implementing this... if can i'm sure benefit many people. thanks bump Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

Dreamweaver CS3 Upgrade

i have purchased copy of dreamweaver cs3 upgrade , on installation previous dreamweaver 8 version serial number not recognised i have reread upgrade paths , looks though have made error. hadn't appreciated adobes new upgrade route studio 8 using creative suite option. as result although own full version of studio 8 purchased copy of photoshop cs2 , upgraded cs3. i purchased upgrade of dreamweaver cs3 expecting able upgrade using dreamweaver 8 in studio 8. this has cost me more if had upgraded using creative suite. i not expecting nothing have genuinely made mistake , need working legal copy of dreamweaver cs3 work alongside photoshop cs3. i made mistake , have entered support web case on adobe web site no answer yet (two weeks far) could please advise me on best way put right without costing fortune. thanks tony prodger can post incident number can investigate delay? david alcala adobe product support More discussions in Dreamweaver support forum 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

[solved] Shuffle an array.

Image
hey everyone, i'm working on project complete. i'm adding little style it. so have array like: int list[] = {0,1,0,0,1,0,1,1,0}; so best way randomly shuffle positions - [8]? thanks time, dave. i won't claim know best way, sort of "bubble unsort" algorithm came mind: code: [select] int list[] = {0,1,0,0,1,0,1,1,0} for (int a=0; a<9; a++) {  r = random(a,8) // dont remember syntax now, random 8 included.  int temp = list[a];  list[a] = list[r];  list[r] = temp; } remember seed randomizer, maybe time or unused analog input. btw, if values using 1 , 0, little more memory efficient use int , bit manipulation instead (since 9 bits, not , works too. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > [solved] Shuffle an array. ...

Can I do that with Raspberry Pi? - Raspberry Pi Forums

Image
hi guys, i'm interested in raspberry pi use mediacenter. want watch dvds external dvd drive (it's powered). need licences (wich)? second thing: listening internet radio. last not least youtube/flash videos. can watch them properly? happy answers if find mistakes can take them (sorry english ) greets i assume mean you'll using external usb dvd drive? haven't done this, see no reason why couldn't this. you'll need mpeg2 license though. also, you'll need install libdvdread , review /usr/share/doc/libdvdread4/readme.css handle dvd's drm. youtube , internet radio streams, not problem either , many apps/ways this. raspberrypi

continuous servo limitations

hello , checking out post. i'm relatively new using arduino , have no experience using servo, wondering if might able explain limitations of using continuous servo.   the project i'm starting raising , lowering object attatched spool of thread attatched servo.  i'd user to a couple of high level limitations: speed: servos arn't fast... control: it's hard control servos. dont know servo is. it'll case of gestimating travel. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > continuous servo limitations arduino

How do I convert a 2 digit number into 2 numbers

Image
i want convert 2 digit fahrenheit reading 2 numbers eg 6,5 can send data 7 segment leds i using led-matrix library - not happy way getting values.... does know best way "chomp" data? int digit1 = number / 10; int digit2 = number % 10; mikal Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > How do I convert a 2 digit number into 2 numbers arduino

I Can NOT get DREAMWEAVER to connect!

i have been doing sites while , have no idea why keep getting message. i have tried adjusting every parameter possible no avail. ideas? using ftp transmit (mac ftp prog) fine. attaching image of error message.... thanks [url=http://img62.imageshack.us/my.php?image=noconnectionll6.gif][img]http://img62.imagesh ack.us/img62/8444/noconnectionll6.th.gif[/img][/url] and if can! [url=http://img62.imageshack.us/my.php?image=noconnectionll6.gif][img=http://img62.images hack.us/img62/8444/noconnectionll6.th.gif][/url] More discussions in Dreamweaver support forum adobe

Thread: Nexxtech Ultimate not recognized by Jaunty

i'm n00b trying figure out how connect wireless mouse. if there forum directed might assist me, i'd appreciative. stands, i've spent few hours searching forums , no avail. wireless mouse not recognized no matter port plug into. i don't use wireless mouse, i'm guessing 1 using has transmitter plugging usb slot? 1 thing might try plug transmitter in, run command code: dmesg in terminal. last few lines should give more information on problem, or maybe helpful error message. finding out model number of mouse (it somewhere on bottom) narrow searches down, leading better results. sorry don't know of specific forum out. luck! Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Hardware [ubuntu] Nexxtech Ultimate not recognized by Jaunty Ubuntu

Serial Printing Duplicate entries

i using serial send commands arduino, works fine except after every command sent duplicates previous input. example: send 1: s085       received: s085 send 2: e100       received: s085 send 3: e095       received: e095 send 4: q045       received: e095 send 5: q045       received: e045 etcetc this current code: code: [select] char buffer[5]; byte bufferindex = 0; long number = 0; void setup() {  serial.begin(115200); } void loop() {  while (serial.available()) {readserialdata(serial.read());}   } void readserialdata(char inchar) {    //if buffer full, reset  if (bufferindex == 5) {bufferindex = 0; number = 0;}  //if first character 's', continue, increment  if (bufferindex == 0 && ( inchar == 's' ||                              inchar == 'e' ||                              inchar == 'w' ||                              inchar == 'q' ||                              inchar ==...

Simple Arduino + Twitter help needed!

Image
hi all, [glow]i new arduino programming[/glow].  i understand how write basic code have prior experience ruby, having trouble combining python arduino. the code should not hard, need writing it. the code should connect twitter arduino if post twitter (from account username , password only!), servo attached arduino should act accordingly. for example: if tweet #arduino_servo +180 degrees the servo should turn 180 degrees clockwise . whereas, if tweet #adruino_servo -45 degrees the servo should turn 45 degrees counter clockwise . please assist me posting bits of example code below.  thanks much! quote post code below twitter connection sketch-code arduino! so when comming on here wash truck, mow lawn, , vacuum house?   Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > Simpl...

Sound and Light arduino

i wondering if me out questions ardunio's capabilities. working on project involving possible translation , relationships between sound , light. working several different electronic 'event's' involving sound vibrations , light movement. wondering how arduino in controlling different systems using simple lamps , sound systems. arduino control when electronics of high voltage turn on or off , how many? need? i wondering how find way use arduino pitch reader , translating different corresponding light colors. there way this? for controling high voltage devices there serveral ways arduino that, common way use arduino drive transistor turn drives relay can turn on / of high voltage loads. arduino has 14 digital outs can that, can expanded  to "many" instance 595 shift registers. pitch reading more complicated, people working analog synths used pitch voltage converters. arduino has 6 anlog inputs can read voltage in 0 - 5v range , turn...

Thread: Python (IDLE or bash) not finding my scripts.

hello. i've started learning program python 3 (i know, technically it's scripting), using swaroop's "a byte of python". 3rd time (iirc) i've started learn python, , have had same problem. far i've written basic hello worlds andf couple of incremental counters string. have same problem. use kate write stuff, , save stuff *.py extension (sometimes put spaces in filename, count?). if open scripts idle's editor , hit run, work fine. however, if use idle or bash on /usr/bin/python3 , try , invoke scripts, can't found. save ~/documentia/python/, , have thought of adding said directory $path, don't want fiddle system files, unless have to. ideas? tks; b if not in path, must either cd directory, or provide path script. code: cd ~/documentation/python/ python myscript python ~/documentation/python/myscript # if you've set hash-bang (first line reading #!/usr...

Monitoring processor usage on an arduino board

hello everyone. i have question have note been able find answer yet. i able monitor processor usage on board quantitively given sketch have loaded, sort of how pc report cpu usage in % format. modifications sketch fine solution. not able find profilers compatible arduino. is there can out there? thanks help about way know of kind of "profiling" of code using millis() or micros() - depending on granularity need; isn't how cpu monitoring done on pc (though i've never looked it), can allow figure out slow parts of code (though small amount of code see on atmega line, can figure out looking). Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Monitoring processor usage on an arduino board arduino

Giving an Image a Link

i'm newbie using flash (except stint using v. 4 years ago). forget how give image link. i'm making simple rotating banner , each time new picture comes up, want give new link for user click on. can me started this? -- brandon http://www.presentationsdirect.com convert desired clickable area button in library. this, select object, press f8, give name, , choose button. then, click on button on stage once, , open actions panel, and put action in: on(release){ geturl(" http://www.myurl.com") } and change url url need go to. "brandon" <bsmith@presentationsdirect.nospam.com> wrote in message news:f22a8t$97c$1@forums.macromedia.com... > i'm newbie using flash (except stint using v. 4 years ago). > forget how give image link. i'm making simple rotating > banner , each time new picture comes up, want give new link > user click on. can me started this? > > -- > brandon > http://www.presentationsdirect.com ...

Whats this part of the page called? - Joomla! Forum - community, help and support

ive got calendar (extcal) on joomla page, moves everytime clicks on news story i want calendar appear above links on left hand side of page, not know name of section set calendar in there image showing section mean when open index.php file in templates folder, you'll find table structure defined. in appropriate cells of table, "loadposition" instructions given, according how (or template maker) named them, e.g. "left", "footer", "somesillyname", whatever. there you'll find location calendar should come. ludo Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

advmame with GPIO joystick? - Raspberry Pi Forums

has gotten combo work? finallly gave , bought i-pac solve problem after tinkering of weekend. seemed getting gpio inputs work involved , results not stable. @ 1 point, games stuck in moving right mode until turned off of python based keystroke , joystick emitters. there whole issue of "pull resistors". still not sure if needed. , seemed frontend needed keyboard input, advmame needed joystick input. never did gpio act joystick. think i'll give method try when interrupt driven gpio developed. think of odd behavior due using polling. has gotten gpio work advmame? raspberrypi

Interpreting servo consistent jump

i connected 2 arduinos via serial, attached servo each , included fsr send pressure information servo on other board.  i kept noticing occasional drop in servo, attached oscillator servo's signal line , noticed interesting.   i modified servo.h file servos @ rest @ 544ms, low end of 544-2400 range.  then noticed every few seconds or signal pop 644ms, 100ms, when @ rest.  i noticed when used fsr send angle commands 644ms signal appear again, time drawing servo down level brief moment, short go way, noticeably moving servo down.  what cause of signal goes 644ms? icek this going become complicated fast. my best estimate sometime interrupt service routine of servo library delayed isr or code disables interrupts time time. if happens right when servo pin needs turned off, additional pulse length. going length of delay, don't think it's timer tick millis(), wouldn't surprised if delay due isr in communication library. to analyse , fix du...

Plaatje ipv user 1 en 2 - Joomla! Forum - community, help and support

ik gebruik de onemorething template ( http://www.mambofy.com/nov05/ ) maar wil iets aanpassen. ipv van user 1 en user 2 te gebruiken om popular en latest news te laten zien wil ik op die plek een foto als header hebben. opzich heb ik wel gevonden waar ik user 1 100% breedte kan geven en user2 0%. ik kan dan een site module aanmaken die dat plaatje bevat maar het resultaat dan niet zoals het hoort te zijn. er zit waarschijnlijk een left margin ofzo op dat user 1 blok maar ik kan niet vinden waar. dus... kan ik user 1 zo aanpassen dat het wel netjes wordt of moet ik het plaatje in zien te voegen ipv user 1 en 2? wat wijsheid? hier een voorbeeld van hoet het er uitziet nu het nog niet klopt. http://www.lynxcardesign.nl/site/ gevonden. Board index Joomla! International Language Support International Zone Dutch Forum Joomla! 1.0 Templates 1.0.x

False $mosConfig_live_site - Joomla! Forum - community, help and support

Image
hi everybody i made mistake during installation , defined $mosconfig_live_site follows: code: select all [i]$mosconfig_live_site = 'http://62.75.247.160/activeart/';[/i] now every link in website starts ip instead of domain name. change that, changed in configuration.php $mosconfig_live_site follows: code: select all [i]$mosconfig_live_site = 'http://activeart.ch/';[/i] but works not right because every link refers still ip , not domain name , page looks strange...what did wrong? directory still same, target domain name , not ip. doesn't right if copy link , change ip domain name...  (btw: domain name point prevous live_site). informationen in database? should reinstall joomla? thanks help! update it vserver configuration in combination free_dns redirecter...but seems, can't "cloak" domain name...i had live ip  maybe dirty workaround database , find replace of ip/domain , restore changed version. Board index ...

Le Père Noël - Joomla! Forum - community, help and support

Image
bonjour, j'ai envoyé une lettre au père noël pour qu'il m'envoie la version 1.1. si quelqu'un le connait, peut-il lui dire que j'ai déjà mis mon soulier dans la cheminée ?  merci d'avance. je l'ai vu tout à l'heure, il m'a confirmé qu'il y aura bien une version 1.1 avant noël, mais pas la version finale... Board index Joomla! International Language Support International Zone French Forum Le bistrot!

Nokia 3310 LCD Library with basic graphics functio

hi, i connect simple nokia lcd arduino , can use simple functions. i used schematic this: http://www.amontec.com/lcd_nokia_3310.shtml and http://www.techdesign.be/projects/datasheet/nokia_3310_lcd.jpg modifying this: int lcd_dc_pin         =        2; //  pb0  4  data command int lcd_ce_pin         =        3; //  pb2  5  /cs   active low chip select ?? int spi_mosi_pin       =        4; //  pb3  3  serial   line int lcd_rst_pin        =        5; //  pb4  8   /res reset int spi_clk_pin        =        6; //  pb5  2  clock with pin-out able run code: http://www.arduino.cc/cgi-bin/yabb2/yabb.pl?num=1200398529/16#16 but wanted use library http://blog.thiseldo.co.uk/?p=383 that library powerful since has ...

Newbie: Alternative Flash Developer Tool

hello, does know alternative flash-developer-tool? because adobe flash pro 3cs costs 700$ :-( perhaps there free tool? or there "privat" or "student" version for flash pro 3cs? maybe investigating on adobe site in order.. believe there 'student' version, or 'education' version, that. why not stick flash 8 till price drops... whats hurry cs3 , have learn syntax, , deal bugs havnt been patched yet? More discussions in Adobe Animate CC - General adobe

Advanced caching - Joomla! Forum - community, help and support

anyone have experience on adding caching mechanisms server increase speed?  i'm querying ms sql database in components besides mysql 1 , need speed things up. thanks, panhead490 i'm using eaccelerator derived mmcache php caching, compression , optimizing. if wish use on windows wiith iis, try make sure php sites in same application pool because eaccelerator doesn't when has work in seperate application pools. using eaccelerator , in past mmcache brought load , processing times down considerably. Board index Joomla! Older Version Support Joomla! 1.0 Performance - 1.0.x

Going loopy, looping the loop

Image
as part of larger project, i'm trying (and failing) sequentially input 3 variables via 12 button keypad.   each variable 4 digits long , displayed on lcd , used elsewhere in program.  (keypad , lcd hardware has been tested , working fine 'hello world' examples). i heading down path before getting stuck , doing search; code: [select] // borrowed various sources void loop() {   // loop 3 variable inputs:   (int variable = '1'; variable <= '3'; variable++) {     // loop 4 digit elements contain:       (int  = '1'; contentsa <= '4'; contentsa++) {     char key = keypad.getkey();     if (key != no_key){ //errrr, where???...       }     }   } looking snippets, tutorials or examples learn from, searched here posts containing;   if (key != no_key)   most posts seem relate entering  password , comparing stored password rather getting , holding variable keypad... widening search, have seen suggestions similar different queston...

EVE Alpha: In search of passionate linux / RasPi users /IoT - Raspberry Pi Forums

some of may have seen eve alpha mentioned on blog few days ago. in case missed eve alpha add-on board lots of different wireless support, aim of creating universal home automation hub. hope able talk around house. lights post box , in between. we've got hardware board designed , have been sent manufacture. eve open source project, , hope eve alpha start of great community. looking r-pi community crafting software run eve. front end items looking @ integrating include emoncms openenergymonitor.org , openremote.org project. can of following? radio interfaces, particularly z-wave , enocean web based front end mobile app front end julius voice recognition iftt scheduling we'd community defining down api eve's interactions. input not matter how small welcome, there's more info , pictures on our kickstarter project http://www.kickstarter.com/projects/cis ... ent-hardwa many thanks matt dear matt, how radios interact pi? there single spi interface ...

Questions/understanding for knowledge - Raspberry Pi Forums

so suggested post questions in different section of forum. have no real experience of attempting accomplish, knowledge of whether it's possible or proper way research. of questions asking clarification on whether i'm understand things correctly. please take easy on if can. trying feet wet in hopes can someday swim, not jump in , sink/drown. ultimate goal rpi use media server. able use movies , music. maybe down road if development progresses, i'd thrilled use internet browsing concede may not possible (to standards) in it's current state. right now, girlfriend , have bunch of dvd's tucked in corner of our apartment, behind stuff makes hard to. if want watch movie have gain access them first, spend time trying decide 1 want watch. times abandon idea of watching movie because of inability select movie given uncomfortableness find ourselves in while selecting. ideally these movies placed onto hard drive/s accessed on network (true?), whether our bedroom, living r...

attempting to talk to a analogue to digital conver

Image
i attempting talk analogue digital converter spi port looked @ examples , reading 0's registers. ads1256 24 bit adc , open source. quote #include "ads1256.h" #include "extera.h" //define pin names pin # #define cs 10 //chip select active low on pin 10 #define neg_reset 9 //reset pin active low on pin 9 on uc #define drdy 2 //data ready #define sync 8 //syncronisation power down active low #define dataout 12 //mosi #define datain  11 //miso #define spiclock  13 //sck // global variables int val=0; //a counter byte clr=0; //used clear registers bit trash bin. byte x=0; //*************************setup spi ad void spi_to_ad_setup(){  spcr=0; //clear control register  clr=spcr; //coppy spi control register clr print out or clear similar clearing status register  spsr=0;  clr=spsr;   /*spcr   | 7    | 6    | 5    | 4    | 3    | 2    | 1    | 0    |   | spie | spe  | dord | mstr ...