Posts

Showing posts from June, 2011

Serial.print prints random 255

hey, i working on mac app control arduino , works if send values 0-63 arduino using following code on arduino: code: [select] void setup() {  serial.begin(2000000);  serial.print("\n\nhello, rebooted\n\n"); } void loop() {  uint8_t incomingbyte[2];  // send data when receive data:  if (serial.available() > 0) {    for (int = 0; < 2; i+=2){      // read incoming byte:      incomingbyte[i] = serial.read();      incomingbyte[i+1] = serial.read();    }    serial.println(incomingbyte[0], dec);    serial.println(incomingbyte[1], dec);    delaymicroseconds(5000);  } } the print out should read 0-63 reads is: 0 255 1 2 3 4 ... 62 63 255 the shorter delay put in more 255 appear. idea on happening? thanks -korki why have baud rate @ 2000000? try setting 9600 , see happens.... Arduino Forum > Forum 2005-2010 (read only) ...

Help Porting Wireless Bootloader to MEGA (1280)?

hey guys... anyone want me tackle project of porting bootloader mega 1280? http://www.sparkfun.com/commerce/tutorial_info.php?tutorials_id=122 i've got working what... it's accepting bytes streamer , completes... however... it's not starting program.  wonder if it's fuse setting or makefile changes (don't think so) or bootloader (highly likely). this should quick port... need set of eye on it...  we post results on sparkfun site. danny changes made work on mega 1280 (still not working 100% -- won't start program): code: [select] #include <avr/io.h> #include <avr/boot.h> #include <avr/interrupt.h> #include <avr/pgmspace.h> #include <util/delay.h> //define baud rate #define baud   19200 //works internal osc //#define baud   38400 //works internal osc //#define baud   57600 //does not work internal osc #define myubrr (((((cpu_speed * 10) / (16l * baud)) + 5) / 10) - 1) //here calculate wait period inside getch(). few cycles ,...

BerryBots - a programming game - Raspberry Pi Forums

i've released first version of berrybots, programming game i've been working on raspberry pi. it's along lines of robocode (which love), robot battle, or logo/turtle - player programs behavior of ship moves around stage , (optionally) shoots @ other ships. bots , stages in lua, app c/c++, , raspberry pi graphics openvg. it's available mac/linux (maybe windows), raspberry pi has been first , primary target platform during initial development. i've worked hard keep game rules , api simple , intuitive. has handful of features add pretty cool gameplay elements haven't seen in similar games. stage lua program each ship (or team of ships) is, can have pretty wide range of gameplay styles. sample stages include mazes, race track, jousting, several arcade inspired single player games, , battle stages (which akin robocode / robot battle style of gameplay). can have walls on stage have navigate around , can't see through, there's secondary weapon that's sl...

Eclipse and NewSoftSerial tunedDelay

Image
hi, i've been using arduino while now, have hit complete developement wall using eclipse , newsoftserial. there seems have been talk on subject while ago (madworm's posts, here: [edit - links in next post, forum wont let me post links in first post!] ) fix described there not work me :/ to elaborate, problem asm register constraints in following function (part of nss). code: [select] inline void newsoftserial::tuneddelay(uint16_t delay) {  uint8_t tmp=0;  asm volatile("sbiw    %0, 0x01 \n\t"    "ldi %1, 0xff \n\t"    "cpi %a0, 0xff \n\t"    "cpc %b0, %1 \n\t"    "brne .-10 \n\t"    : "+w" (delay), "+a" (tmp)    : "0" (delay)    ); } i've tried several combinations of constraints described here: [edit: link included in next post, see previous reason why] no avail, have passing familiarity avr asm anyway, i'm in dark here. it works fine in arduino ide, once included in eclip...

Thread: safety encrypted information internet

i use linux on pendrive @ school. wondering if when go facebook, enter passwd , email adress. information encrypted , them sent facebook servers, or information sent unencrypted. if url https it's encrypted. if http, plain text , can read it. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] safety encrypted information internet Ubuntu

programming 3 inputs to control 1 output

before u ask yes i'm freak'n newbee.  i've played around cut , paste , got of little projects work.  i need getting started writing arduino code.  my project gyro , x & y accelerometer control servos position , speed. :-/ ok. here go: code: [select] //some global variables go here void setup() { // initialization stuff goes here } void loop() { // read inputs // calculate output // send output } Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > programming 3 inputs to control 1 output arduino

Users: behörighet samt GRUPPER? - Joomla! Forum - community, help and support

Image
hej! Är det någon som provat med att lägga till en behörighet som egentligen är en grupp (tex "kunder") (administrationsdelen bifogad bild) eller fixar man till olika grupper på något annat smidigt sätt? mvh anders hej, dessa "grupper" avgör vilken behörighet man har när det gäller skriva och ändra på webbplatsen och börja göra nya eller ändra dessa är nog knappast att rekommendera då detta är en av grundkomponenterna cms-systemet. funktioner att kunna dela upp användare grupper med samma behörighet kommer att bli bättre framöver har jag förstått. skulle själv behöva det på min ena joomla-plats. jaclplus kan möjligtvis vara det som vi behöver tills det funktionen finns som standard joomla. har dock inte hunnit kollat denna komponent ännu - här kommer en länk också: http://www.byostech.com/component/optio ... /itemid,1/ mvh Board index Joomla! International Language Support International Zone Swedi...

Help with HM55B Compass

as of right hm55b compass printing constant data processing -180 0n 180.  how modify following code output 8 directions. n, ne, e, se, s, sw, w, nw? code: [select] #include <math.h> // (no semicolon) //// vars byte clk_pin = 8; byte en_pin = 9; byte dio_pin = 10; byte led = 13; int zerooffset = 0;        // calibrate compass, run in uncalibrated mode [section 1],                           // point sensor due north, , record value sensed.                             // enter value here , run in calibrated mode [section 2] int x_data = 0; int y_data = 0; int angle, status; float delta, xprime, yprime; //// functions void shiftout(int value, int bitscount) {  for(int = bitscount; >= 0; i--) {    digitalwrite(clk_pin, low);    if ((value & 1 << i) == ( 1 << i)...

Unusual Page not found error..Need Help

i trying enable old survey form developed long time ago via else on cf 4. however, simple html form calls action cfm page , displays results. that's it. however, @ end of processing page, cf comes error of "file not found: /survey/index.cfm" there no index.cfm, obviously, none of code looking it, why if cf trying load it? attach entire cfm page simple processing, @ loss here...any appreciated. thank you. do have application.cfm page looking it? More discussions in ColdFusion adobe

Yet more MPU6050 demo code - Raspberry Pi Forums

Image
the mpu6050 triple axis accelerometer & gyro i2c interface, see http://www.geeetech.com/wiki/index.php/ ... o_breakout , example. can found quite cheaply on ebay. working on pi took i2c , mpu6050 code https://github.com/jrowberg/i2cdevlib , modified i2c class use linux in-kernel i2c drivers rather arduino drivers. there drivers many sensors on site, imagine can used on pi via replacement i2c class. c++ code, btw. 'make' builds 3 demo programs; 1 displays raw data mpu6050, , displays more useful data (angle of rotation, rotation matrix, quaternion, euler angle, example) using on-chip dmp processing. third demo draws simple 3d wireframe model on screen , lets rotate on 3 axes manipulating mpu6050 hooked pi. if don't have mpu6050 can 'make test_3d' , manipulate model using keyboard see comments in makefile test_3d target. tarball of code attached: mpu6050-pi-demo.005.tgz (55.87 kib) downloaded 10641 times ...

frequency gen.

hej guys, i want program frequency gen. have generate abaout 6-7 different freq. 20hz ....and . how should go on, on work, ideas? what should use implement it.(interrupts......) (with timers, can generate 3 different freq. should software solution!?) thx i making assumption intend generate several different frequencies @ once on different outputs. pretty easy in bitlash, presuming resolution , jitter requirements not tight: can run several background macros , have each 1 watch time flip bit @ own frequency.  something this, @ bitlash prompt: code: [select] "toggle d2 @ 20hz" pinmode(2,1) f20 := "if millis > t: d2=!d2; t=millis + 1000/20/2" run f20 ps  // should show f20 running , d2 should toggling repeat needed substituting different frequency , counter variable, example using 30 hz , v instead of 20 hz , t: code: [select] "toggle d3 @ 30hz" pinmode(3,1) f30 := "if millis > v: d3=!d3; v=millis + 1000/30/2" ru...

program connection?

hey guys i have arcade machine control panel can rig arduino. it uses simple buttons tell digital pins high or low. how program on computer ( think processing best chance ) recive serial data , output key on keyboard eg if recives code "up1" press key on keyboard? i think gobetwino sort of thing... http://www.mikmo.dk/gobetwino.html Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > program connection? arduino

data stream pattern generator

hi i playing around idea send data stream ( large binary number ) video signal of monitor generate pattern. it need synchronised line pulse monitor. would serial.println(number in binary);  send output data stream chosen pin of chip ?  ( without needing handshaking? ) if so, how fast can data stream duemilanove? john quote would serial.println(number in binary);  send output data stream chosen pin of chip ? with newsoftserial , can use pin tx pin. quote if so, how fast can data stream duemilanove? newsoftserial supports 57600 baud. Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > data stream pattern generator arduino

Arduino LED Array + PCB design help.

Image
i want create led array daft punk helmet project similar 1 volpin. post link down below. but did not realize steep learning curve have , lack of time. ordered arduino, can imagine need big help. if interested in working code , pcb layout let me know. getting compensation work/help option.  for fun project , $ while @ it, let me know. drop me line. i know he's using arduino , used 4 shift registers 32 independent channels. have been project have tackled when single. wife , 2 kids, it's not possible. if continue on own, wife   , kids keep stealing resistors. here's i'm trying do. [media]http://www.youtube.com/watch?v=wsb2ljbo8p8[/media] Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > Arduino LED Array + PCB design help. arduino

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

Thread: How to use Convirt trought Web Browser

Image
i need use convirt 1.1 via web browser, x-server can installed not running (runlevel 3) , can't use vnc since not encripted (so no vnc4server) , ok use nx nomachine if necesary. the server ubuntu server+kvm+ssh. the pc control convirt via web browser ms windows xp. how it? step step, first? thanks... http://www.convirture.com/wiki/index...e=installation in how ? Forum The Ubuntu Forum Community Ubuntu Specialised Support Virtualisation [all variants] How to use Convirt trought Web Browser Ubuntu

zigbee vs xbee vs pro vs mesh ??

i'm confused. what real difference between xbee , zigbee?  is xbee zigbee implementation? what zigbee pro? which versions have mesh capabilities?  can clear air? also, alternatives there xbee?  does else make inexpensive models/chipsets interesting? zigbee , xbee same thing. the zigbee radios come in several styles. series 1 , series 2 radios. there regular , pro versions of each series. there 3 different antenna choices each of 4 styles. the series 1 radios used point-to-point networking. is, each radio configured talk 1 or more other radios (generally one), , listen 1 or more other radios (generally one). not form multi-path networks well. the series 2 radios mesh networking. may usable point-to-point radios, couldn't 3 talk each other. 1 listen bunch of others, , others talk one, not two-way communication work. might have better luck. zigbees not choice radios, ones know of allow direct connection of input , output devices (sensors, motor...

fill() returning empty ArrayCollection

hi, i new fds , don't know why fill() method returns nothing, though assembler returning list of 3 objects. know list returning nothing because when display length of arrayconnection, it's 0. i turned on debug logs , see 3 items returned. have tips on how can resolve this? is there somewhere in config have specify java class maps actionscript class b? deleted corresponding actionscript class , still got same logs. suspect fds not know how map java class actionscript class gives me empty list , throws away results. sound right? if there kind of automatic mapping, have expected see error in logs after deleted actionscript class. thanks, jamie [flex] 05/18/2007 12:19:31.443 [debug] [dataservice.transaction] committed trans action [flex] 05/18/2007 12:19:31.443 [debug] [message.data.fill] after invoke service: data-service reply: flex message (flex.data.messages.sequencedmessage) sequenceid = 0 sequencesize = 3 (no sequence proxies) clientid = null correlationid = null ...

Send sketch to arduino with python

first compliment arduino developers. love device - small amount of general programming knowledge , high-school electronics knowledge (20 years ago) built little interface in 2 hours last night - little www.ladyada.com... now question - there way use python send arduino sketch device without using arduino software? i saw arduino_serial.py module it's not clear me if can send entire file --send-data command, , if work. thanks in advance answers. ben i'm pretty sure can't. python script arduino_serial.py used talk sketch running on arduino, not burn compiled sketch on chip. Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > Send sketch to arduino with python arduino

Another multilingual idea... - Joomla! Forum - community, help and support

Image
hi, thinkin makeing joomla pages multilingual. fish 1 way go, translations , all, wouldn't should built core, lined regular options per item. so why not give every content item little language dropdown list select it's language. i'd create content item, select polish , publish polish content. modules should have assign  language option menu. and language options menus. i'd make mainmenu_polis, mainmenu_english , add links. , @ end there little module select language on page. maybe it's not reasonable @ all, seems userfriendly? one thing is, there lot of pages no need exact translations version in different language. pages oriented different markets etc. any ideas? impossible or pointless idea maybe @ all? peace Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

8 bit colour palette: more information - Raspberry Pi Forums

hi, found thread http://www.raspberrypi.org/phpbb3/viewt ... 72&t=11682 in bare metal forum - went on reply before realising more appropriate forum... hereby try branch discussion here: -rst- wrote: dom wrote: yes, , 16-bit format 5 bits red, 6 bits green, 5 bits blue. 8bpp default "web safe" palette, can set. see: https://github.com/raspberrypi/linux/bl ... m2708_fb.c hmm, seems driver code, not directly accessible user-mode applications? or have missed way access this... framebuffer ioctl method not seem work on rpi - code: code: select all #include <linux/fb.h> ... fbfd = open("/dev/fb0", o_rdwr); ... if (ioctl(fbfd, fbioget_vscreeninfo, &vinfo)) { printf("error reading variable information.\n"); close(fbfd); return(3); } printf("%dx%d, %dbpp\n", vinfo.xres, vinfo.yres, vinfo.bits_per_pixel ); // palette information unsigned short r[256]; unsigned short g[256]; unsigned short b[256]; ...

Timed LDR sensor readings

Image
hello folks, i have problem wich feedback on more experienced arduino users me. hope not inappropriate such large post 1st post. ( want explain issue clear possible) i trying make small book (only 4 pages now) wich has ldr's in  for triggering led (and later triggering audio sample in other ic). the objective make book works under different light conditions , want try few different methods of reading , comparing ldr's but since pretty noob arduino , programming in particular im having little trouble realizing idea have in code. i have written simple program book 4 pages works it's bit sensitive, when u turn pages activate led not supposed light up. the program following: it reads ldr's , maps value range of 0-4. then looks if there ldr's have higher value 2. if ldr1 > 2 turn on led1, if ldr1 , 2 > 2 turn on led2 , on. this seems work ok, when turn page 1 ldr1 get's lid , led1 turn on. turn page 2 , ldr1 , 2 lid , led2 turn on. mentioned before it...

AttachInterrupt() help..

Image
new arduino..not sure im doing wrong..maybe guys can me out? =) this first time trying use external interrupt.. as understand it.. these 'listeners' check state of 'pin', without having code dependent?  ie: not having code keep 'polling/checking' pin status. question 1: i know arduino due says has 2 external interrupt pins.. is there way more these two? (i thought read pin change?..but bit on head then..since didnt have arduino yet) what im trying (i thought) simple.. i have 'sensor'.. wich nothing more spring/nail type sensor any time sensor completes circuit/connects.. should trigger event. (whatver function noted in parameter of attachinterrupt() function.) however.. can not seem consistent results.. it should make noice (play tone) or light led when connection happens..then pause 500 ms.. turn off again..waiting interrupt fire again.. code: [select] int pin = 13; volatile int state = low; void setup() {  // initialize serial communications...

Thread: Samba & bridged mode

hi, question: @ work, able access linux computer @ home using sshfs. however, since @ work using windows, need ubuntu in virtualmachine (virtualbox). wanted share sshfs windows via samba, , mount there network drive. problem is: have ssh & nfs working i've encountered following problems: when switch bridged mode, cannot longer access iis on virtualbox windows host ubuntu guest. how can that? how can mount samba share ubuntu guest on windows host? windows doesn't seem find sama share on ubuntu, finds ubuntu smb server however. bump. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Samba & bridged mode Ubuntu

Help desk application written in coldfusion

hello i assigned re-create desk application using coldfusion. i far clueless business requirements know dept expanding more 1 geographic location. is there sample application written in coldfusion. maybe can idea on functionalities , have basis. books on business / logical flow? sample software written in cf? ?? thanks with modification following wonderful project raymond camden, http://lighthousepro.riaforge.org/ ,you can have idea on how start. designing 1 right , take me while before finish since not use 1 ray (it requires cf7 , have 6.1). appreciate if find 1 on web , share me. mamdoh More discussions in ColdFusion adobe

Paypal Integration Component: What is it? and Where is it? - Joomla! Forum - community, help and support

i on site (found in joomla! forum) http://mydemos.org/administrator/index.php.&nbsp; log in is: manager.  password manager.  under components column noticed paypal integration module.  1. difference between component , virtuemart?  2. benefit of usine if have virtuemart installed? 3. work joomla!?  4.  can download it?  thanks! closing Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

WORKING WITH HEXADECIMAL ADDRESSES

i working on data logger temperature measurement using 1 wire ic , 1 wire arduino library . working ok having difficulty programming hexadecimal address ic uses follows.: 1. wish declare following ic component address  hex constant 28 b0 fe e 2 0 0 47 2. 1 wire examples suggest should declare constant follows     uint_8 insidethermometer[8];        with assignment statment :   insidethermometer =   { 0x28, 0xb0, 0xfe, 0xe, 0x2, 0x0, 0x0, 0x47 }; i doing stupid keep getting warning , " error: expecting primary expression before '{' token", when compile program. could help john when declaration , assignment combined in 1 statement, {} syntax works: uint_8 insidethermometer[8] = { 0x28, 0xb0, 0xfe, 0xe, 0x2, 0x0, 0x0, 0x47 }; if declaration , assignment separate statements, individual elements of array need set. {} format can not used set multiple values. Arduino Fo...

Address Book? - Joomla! Forum - community, help and support

does have link address book joomla? i'm new have been searching extensively , thing have found url doesn't install: http://www.joomlaya.com/component/optio ... atid,1190/ also, if educate me if address book module or else (like component, etc). thank you! -jed have taken here, search 'address' on page: http://forum.joomla.org/index.php/topic,16398.0.html . difference between modules , components, please read following helpful faq: http://forum.joomla.org/index.php/topic,5503.0.html Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Modules

Overcoming Server Challenges

does have same challenge. when develop sites have put them in folder in root on dev server; on production site in root. creates challenge of having have 2 versions of site or converting site work on dev having convert work on prod. i know if use work-around this. main problem includes don't work because our production server allows link files relative root. if try link relative document includes work on root level files. add include relative document in sub directory security message , included file not loaded. when define dynamic sites, set "virtual host" site on the testing server machine. instead of using http://localhost/folder can use http://sitename.local , site root relative paths work. > when develop sites have put them > in folder in root on dev server; -- alan adobe community expert, dreamweaver http://www.adobe.com/communities/experts/ More discussions in Dreamweaver support forum adobe

Accessing GPIO pins from RISC OS BBC BASIC - Raspberry Pi Forums

Image
before go , splash out cash, know if can access gpio pins on raspberry pi via bbc basic via risc os? have fond memories of having various things hanging out of of a3000 user port podule , same thing again remember doing following cli turn on - similar thing bbc basic except loading registers via procedure called inline assembler function . *fx 150, &61, &ff have read of topic, shows 'how to'. http://www.raspberrypi.org/phpbb3/viewt ... 3&start=50 strictly speaking these sorts of things should go in 'programming->other' forum (at least bbcbasic thread gets bumped raspberrypi

Thread: Lidbtn ACPI event never triggered, backlight doesn't turn off

i'm having problem laptop lid in ubuntu 9.04. lidbtn event never triggered when lid closed. /proc/acpi/button/lid/lid0/state reports proper states (open or closed), lid.sh script never executed. laptop dell studio 1555. can confirm because backlight not turn off when close lid, if have running: code: while [ 1 ]; /etc/acpi/lid.sh; sleep 1; done the backlight turns off when lid closed, , on when open it. ideas? making me crazy :[ same problem here... dell studio 1555. can make laptop suspend? did install kernel 64-bit? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Hardware [ubuntu] Lidbtn ACPI event never triggered, backlight doesn't turn off Ubuntu

Como se sube la página a Internet - Joomla! Forum - community, help and support

a ver... una vez ya está configurado el sitio en local, qué hay que hacer para subirlo internet? es por ftp? qué pasos previos hay que seguir antes de subirlo? hay que modificar el configuration.php? antes o después de realizar la instalación en internet? si se realiza mediante el procedimiento que viene explicado en: http://www.joomlaos.net/preinstalacion-de-joomla-6.php , pues simplemente no entiendo nada... dónde se encuentra el archivo "joomla_1[1].0.1-stable.tar"? es este un procedimiento de versiones anteriores que ya no se usa, o que? lo que yo hecho ha sido subirlo por ftp la carpeta www, como indican los manuales, pero nada... página en blanco. bueno... como podeis comprobar tengo p.... hecha un lio... ayuda, plis!!! hola ogmius, veo que tienes varios baches .. recuerda: google y es.wiki son tus amigos .. hasle preguntas de tipo : que es un ftp, como realizar backup .. etc paso paso: primero debes configurar una cuenta de mysql en tu hosting ej: user: ogmius_joomla...

Power saving options

i need reduce arduino's power footprint as possible (in software preferably).  i wondering if has had experience avr/power.h?   link here: http://www.nongnu.org/avr-libc/user-manual/group__avr__power.html does arduino codebase optimization, or turned on?  if i'm not using adc pins, can disable whole unit?  which timers can turn off?  i think timer0 used loop(), other ones?   any massively appreciated.   best, chris (p.s. http://www.nongnu.org/avr-libc/user-manual/group__avr__sleep.html seems promising well, i'm hoping power.h has lower hanging fruit).   maybe can experiment , report ! :-) i don't think current core power optimization.  the peripheral used default timer0 (not ideal power saving point of view; 1 of other timers stays on during 1 of major power-down modes, not timer0.)   other timers used analogout() (pwm) Arduino Forum > Forum 200...

Thread: Alternative to VM in Emacs?

hi. heavy emacs user (i'd 90% of done emacs) , big fan of view mail (vm), have been using many years. however, on last months / year vm has had couple of glitches related message coding (it may receiving ill-formed messages) may or not difficult solve, prevent vm being used me. patched vm not break, know did not solve cause of symptons. unfortunately vm not seem under heavy development (for cannot blame maintainer, because has surely done way more possibly do), or maybe maintainer making big changes , prefers release of them in bundle. in case, know of suitable replacement view mail? switched vm rmail time ago because of treatment attachments; maybe rmail has improved on that, not know point compares vm. tried use mew years ago, unable understand wholly how worked before testing it, , did not dare make switch. there other candidate people can recommend me? thanks! well there gedit, nedi...

SEO breaks html anchor tags - Joomla! Forum - community, help and support

hi...i replied else having issue, can't find it, here again. i have content includes anchor tags (#thisanchor, #thatanchor), seo activated, anchors automatically have root of site appended front of link. instead of link bringing visitor anchor point in content, sends them sites home page. with seo turned off, anchors act way should. is there way modify .htaccess file allow anchors work way should? thanks, jody i'd know too? plz? Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

How can I browse the web using Arduino dumilanove?

Image
hi friends have been owning aa arduino duemilanove quite long time , quite versed it. using controller, wish make device usedby me surf internet. want able surf web, interfece touch screen or maybe keypad. want know how can arduino connected internet. using ethernet cable connect it. want know how connect, send url, download web pages etc. reccomend me other controller if think arduino not able same. books or links website tutorials/info appretiated. further if material targeted arduino. looking forward replies. the ethernet shield (and others) let make http requests , download content... but... a) you're going struggle hold more single graphic in memory (even html pages struggle) , b) you've no chance of being able view in decent resolution etc. etc. *maybe* of higher end pic boards it... any reason why want on dev board? opposed to, oh don't know, mobile/netbook/pc/mac/wii/certain-tv-boxes/ipad etc. etc. Ar...

Event Handlers and Callbacks: Best way to handle?

i'm writing actionscript class. i'm wondering how deal call backs , event handlers within class. in particular, i'm wondering how might structure class developers using can choose arguments passed callback function code. i've been googling , haven't found particularly useful information on this. as far can tell, appear parameters passed callback function determined @ time write class anonymous function example illustrates. var myobj:object = new myclass('foo', 'bar'); myobj.onload = function(arg) { // args passed anonymous function dictated actionscript defnining myclass }; i have seen approach using named functions , class method setting event handler allows developer pass object used scoping named function results in parameters callback being predetermined actionscript defines class function myload(arg) { // args passed function dictated actionscript defining myclass } var myobj:object = new myclass('foo', 'bar'); myobj.setonloa...

cache loader images prior to loading?

hi, is there way cache external jpg images prior them being called loader component? download them in background , not when parent movieclip loaded? trying keep user having wait either @ beginning load flash mc, or during well. would work if had parent html document preloadimages or flash looking somewhere else them? also, can use fade effect on externally loaded images? thanks help for caching question, here's approach (read comments not perfect) using flash loadvars. http://www.actionscript.com/article/tabid/54/articleid/preloading-files-into-the-browser-s -cache/default.aspx More discussions in ActionScript 1 and 2 adobe

Completing cfhttp-accessed forms

there webpage need access , parse every day. trying around having manually. to use cfhttp, access page requires login , completion of form page. have permission view page, i.e. have username , password, , input standard parameters. there way use cfhttp go through multi-step access process? you may able provided website not check refer. try recreate form locally , make sure action posts associated page. try load form locally , submit values completed. if have success, can create page automatically submit data via cfhttp. More discussions in ColdFusion adobe

SPI drivers relationship ? - Raspberry Pi Forums

hi, trying catch great work done martin , others. missing knowledge relationship between drivers : * https://github.com/raspberrypi/linux/bl ... /spi/spi.c * https://github.com/raspberrypi/linux/bl ... i/spidev.c * https://github.com/raspberrypi/linux/bl ... -bcm2708.c have several spi slave specific drivers. fit in? thanks. regards, arjan spi.c: generic spi abstraction layer of linux acts middleware between low level driver , device driver(=device connected system on spi bus) spi-bcm2708.c: low level driver talks rpi spi hardware sending-receiving bytes spi bus (you need 1 of per physical board spidev.c: 1 of many device drivers (other examples: mmc.c, mcp251x.c, enc28j60.c,...) specific driver allows userspace send arbitrary data device on spi exposing interface in /sys (similar gpio driver). allows custom user-space device driver maintained outside of kernel. not highest performance interface, can helpfull rapid prototyping. see: http://www.kernel.org/doc/documen...

apt-get dist-upgrade v. apt-get upgrade - Raspberry Pi Forums

in documentation , posts i've read raspi recommended way upgrade distribution , packages use sudo apt-get update followed sudo apt-get upgrade. elsewhere it's recommended use sudo apt-get dist-upgrade rather sudo apt-get upgrade. see, example, http://askubuntu.com/questions/194651/w ... st-upgrade :- "the upgrade option installs new version of packages installed on system (and yes, kernel updates belong them). however, updates change dependencies: example, new version of package no longer depend on library have installed, or require installation of additional libraries. upgrade option never remove installed packages no longer need. however, dist-upgrade option can "intelligently" handle changes in dependencies system. includes removing packages no longer necessary or resolve conflicts between packages arose because of changes in dependencies." because of i've started use apt-get update && apt-get dist-upgrade with pi (running raspbian) r...

Looking for something, or somebody... - Joomla! Forum - community, help and support

hi, looking goodrich web services ( http://www.goodrichweb.us ) because nice modification of "classifieds" component, adding posibility include more tah 1 image per adver. need because wanna add page too, bue dont know how. hope can me. have though of contatcing goodrich directly http://www.goodrichweb.us/index.php?opt ... t&itemid=3 Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

User1 margin - Joomla! Forum - community, help and support

when ik use user1 position in onemorething template show picturen has margin of 5 pixels @ left. for example see: http://www.lynxcardesign.nl/site/ so want orange picture fill space without margins. where find this? thanks. #user1 { margin: 0px; i checked out css file, didn't find image placed, put check margin or padding or etc there to. Board index Joomla! Older Version Support Joomla! 1.0 Templates & CSS - 1.0.x