Posts

Showing posts from June, 2010

[SOLVED]WiShield and DS1307+ (Wire.h conflict)

hello, i have problem use arduino uno r3 + wifi shield + rtc ds1307. i use asynclab library wifi , rtclib ds1307. problem after add #include "wire.h" - request dont return correct data: returned data included wire.h: code: [select] got connection cpd.as-to.eu connected cpd.as-to.eu tx 72 bytes 0 - 71 of 72 rx 0 bytes cpd.as-to.eu rx 324 bytes cpd.as-to.eu http/1.1 200 ok date: fri, 11 may 2012 16:31:48 gmt server: apache/2.2.16 (debian) x-powered-by: php/5.3.3-7+squeeze8 vary: accept-encoding content-length: 112 connection: close c got connection cpd.as-to.eu ended connection cpd.as-to.eu and returned date without included wire.h(this correct/complet): code: [select] got connection cpd.as-to.eu connected cpd.as-to.eu tx 72 bytes 0 - 71 of 72 rx 0 bytes cpd.as-to.eu rx 324 bytes cpd.as-to.eu http/1.1 200 ok date: fri, 11 may 2012 16:39:39 gmt server: apache/2.2.16 (debian) x-powered-by: php/5.3.3-7+squeeze8 vary: accept-encoding content-length: 112 connection: close ...

Newbie Question

i apologize elementary question world of flash new me , i'm perplexed. searched around , went through tutorials need assistance on resizing presentation template (tech slide presentation). i'm may silly want change presentation slides 1024 x 768. possible me resize presentation assets , sizes change proportionately? of text fields, images, positions , on need changed fit new 1024 x 768 parameters. possible or automatically or have manually? hope question makes sense i'll clarify if needed. reading , ideas have. :) mydoofy wrote: > apologize elementary question world of flash new me > , i'm perplexed. searched around , went through tutorials need > assistance on resizing presentation template (tech slide presentation). > i'm may silly want change > presentation slides 1024 x 768. possible me resize > presentation assets , sizes change proportionately? no, unfortunately can't that. changing size of document changes actual canvas, not c...

Speed Display

i got program record , calculate scale speed in mph of 2 model trains. problem displaying this. can through serial monitor yes can't seem changes 1 value. here now: train 2mph train b 0mph train b 11mph train b 1mph train b 22mph train b 27mph train b 31mph train b 30mph train b 118mph train b 22mph train b 26mph train b 29mph train 0mph train 23mph train 29mph train 22mph something of sort. want stay train xmph train b ymph and change x , y variables , not scroll down every time. wonder if there software or way this. there library allows send ansi escape sequences serial port. if device on other end recognizes, , reacts to, ansi escape sequences, can want (if send correct escape sequences). it's google time. Arduino Forum > Using Arduino > Project Guidance > Speed Display arduino

OT: DXF files to EPS?

hummm..... few hours new year , problems coming thick , fast. just thought i'd ask here there's lot of knowledgable , versatile people around. a boat building company has produced cad diagrams asked them save eps/illustrator files , send me. can't can provide dxf format files. they aren't me unless can convert them editable eps files. anyone had similar issues , knows solution? they dxf files can opened in photoshop i'm sceptical , even if open may difficult edit given cad , illustator vector software , photo shop bitmap. cheers os. might not particularly helpful, found - see 1 of them converts dxf pdf , eps http://www.freedownloadscenter.com/best/free-dxf-files.html -- jo "osgood" <notavailable@atthisaddress.com> wrote in message news:engj3c$mvr$1@forums.macromedia.com... > hummm..... few hours new year , > problems coming thick , fast. > > thought i'd ask here there's lot of knowledgable , versatile ...

Mapping robot

i want make robot drives around room or maze , maps out 2d floor plan. plan put high quality proximity sensor rotatable servo on small robot. proximity sensor (or maybe sensors, if need extra) sensor on robot. robot scan room, , attempt autonomously angle on points of wall. think best way have robot detect spots on "map" (which thinking sort of 2d matrix plot) jagged , discontinuous, drive around , try better angle on spots, should smooth out map. robot know comparing distances , angles proximity sensor , servo current map, , estimating distance traveled using travel time. robot job hoping this, when finished, able more advanced things. so, possible, , have advice or ideas? also, can suggest proximity sensor? suppose needs have decent range, accurate, , take measurements quickly. i'm open using instead of sensor on servo, don't know else use. thanks! i don't know how you'd represent map, if it's 2d grid of occupied/clear ...

MIDI Piano

i attempting create midi controller arduino uno take inputs push buttons beneath giant piano keys , play different notes each button. using usb-midi converter purchased on amazon send serial data computer, , using ableton live interpret data , play notes. running issues, , not sure whether due code, or live software. live has trouble recognizing signals, , play 2 notes @ once when press 1 button. problem run notes transfer both when button pushed , released. ideally transmit when button pushed. can suggest improvements code, or perhaps suggest alternative ableton live? below code, , attached screenshot of midi signals computer receives when each key pressed. code: [select] const int switchpin = 5;   const int switchpin1 = 9; const int switchpin2 = 10; const int ledpin = 13;     // variables: void setup() {     pinmode(switchpin, input);   pinmode(switchpin1, input);   pinmode(ledpin, output);     serial.begin(31250); } int k...

Logic AND, Less Than in mxml

i've been looking equivalent < , && in mxml have value bound bindable variable , checking in button visibility if value greater particular value. greater operator > works, or operator || works less , and not. ? thanks. ps : in mxml not in actionscript cdata block. since it's in xml, need escape them: < use &lt; , && use &amp;&amp; e.g. show button if x<0 , y<0: <mx:button visible="{x &lt; 0 &amp;&amp; y &lt; 0}" /> More discussions in Flex (Read Only) adobe

Selling Flash Files

hi all: if topic has been done, apologies, didn't know search find out. here's thing. i've created animated editorial cartoons here in canada. syndicating them, , sending weekly flash cartoon multiple newspapers. want make easy them possible. send them swf file is, or there better way make sure when post on sites, file doesn't screwed somehow? example, might house in popup window instead of embedding , when viewer expands window, see of extraneous stuff off stage don't want them to. i'm trying make installation of swf file sites dummy proof possible. imagine sort of thing necessary when sending flash ads well, right? thanks in advance help. cheers, patrick www.bigplans.ca send them swf. if you're concerned full-screen issues stuff outside borders showing up, best way prevent make mask stage size , make sure mask applies every layer (just put mask in top layer, drag every other layer beneath it). way, have nice clean borders, no matter how clients form...

Digital ports as output +3v on Lilypad Arduino sewed w/ accelerometers

hello! i know if possible produce scheme similar 1 bellow (images of fritzing). my primary doubt using digital pins of lilypad transfer +3v tension accelerometers (i know theoretically it's possible through pinmode(), want confirme scheme). if you'd know more project i'm developing, here developing blog i'm posting in: http://namainstrument.tumblr.com . hope here me basic electronic gap [= thanks! anyone? Arduino Forum > Using Arduino > Project Guidance > Digital ports as output +3v on Lilypad Arduino sewed w/ accelerometers arduino

Camera acting strange - Raspberry Pi Forums

Image
hi all have tried use camera timelapse movies scouts @ thís years summercamp. have got work, sort of. after 20 pictures, pictures start darker , darker. first 20 ok, , clear. pictures totally black. have turned processing off in raspistill script. no success. have tried resize pictures 1920x1080 darkening still present. 1 of start , ok pictures: 1 of later pictures. have set acording coding on http://www.stuffaboutcode.com/2013/05/t ... y-.pi.html weather has not changed during short timeframe. has experienced same, , can avoid this? best regards thomas rontved yes, other have seen same issue. command line using, , delay (-tl xxx) raspberrypi

connecting web pages

i new dreamweaver , first time building own websites. how make buttons connect pages, , how buttons put on pages. lost, please help!!!!! best bet, press f1 , start reading. alternatively pop down local library , grab book on dw. asking rather big ask for explain if a. don't know html, or b. don't know how use dreamweaver. little background reading of , built in tutorials, pop , can out bit more. if must jump in , start linking pages, consider using text links first until understand how these things work. brendon "shallowwaterboats" <webforumsuser@macromedia.com> wrote in message news:eo1jhr$66k$1@forums.macromedia.com... >i new dreamweaver , first time building own websites. how >make buttons connect pages, , how buttons put >on pages. lost, please help!!!!! More discussions in Dreamweaver support forum adobe

4X4 Matrix

i found tutorial online 4x4 matrix. built , leds wired properly. here link. http://minipenguin.com/?p=107 i think there may issue code. think have wired correctly arduino. anodes in rows , cathodes in columns. diagram staright forward. anyways when upload code works no errors 4 of leds lit , nothing past that. in code there  serial.begin(baudrate); serial.println("commands: on, off, auto, happy, sad, spin, wipe, bigchecker, smallchecker"); however when open serial monitor, nothing there. can please take @ project , code , see if wrong? first built led matrix , want going soon. thanks. p.s. have arduino uno r3 board.(if makes difference)   do need include sketch? Arduino Forum > Using Arduino > LEDs and Multiplexing > 4X4 Matrix arduino

bad word validation

hello, i have added content validation page client side. allow users enter content , if enter bad word gets changed &8%$ etc, way. means have bad words on page , javascript compares user has inputted, if bad word found replaced. my question is, search engines see have bad words inside code, using client validation. kenny as far understand se's don't read js should ok. i'm sure you're aware client side validation working that have js enabled. happy new year twocans skrev: > hello, > have added content validation page client side. allow users > enter content , if enter bad word gets changed &8%$ etc, > way. means have bad words on page , javascript > compares user has inputted, if bad word found replaced. > > question is, search engines see have bad words inside > code, using client validation. > > kenny > > -- kim --------------------------- http://www.geekministry.com More discussions in Dreamweaver...

contacteur via un paillasson

bonjour le foule, je suis à la recherche d'un tapis style paillasson qui résiste à l'eau évidemment et qui peut servir de contacteur lorsque l'on pose le pied dessus. je dois pas être réveillé ce matin, car rien trouvé pour le moemnt. merci d'avance bonjour tout fait il y ça par exemple http://www.dexystore.fr/commerces-et-bureaux/554-tapis-contact-d-alarme.html Arduino Forum > International > Français (Moderators: jfs, Snootlab) > contacteur via un paillasson arduino

Space Invaders - 8x8 LED Matrix

Image
hi all! i share project made class. it's classic space invaders game on 8x8 led matrix using arduino nano , using button , potentiometer interact it. check out video , more info go http://www.elwinlee.com/portfolio/entertainment-technology/space-invaders-8x8-led-matrix/ hope guys enjoy it! http://www.youtube.com/watch?v=m8c3gzfqzqc&hd=1 hi,   that's great, sound in video coming arduino ?    you should put project nice enclosure , keep it. duane b rcarduino.blogspot.com Arduino Forum > Community > Exhibition / Gallery > Space Invaders - 8x8 LED Matrix arduino

Can't find wrong indent - Raspberry Pi Forums

Image
code: select all #!/usr/bin/env python try: import rpi.gpio gpio, feedparser, time debug = 0 username = "username" # part before @ sign, add yours here password = "password" newmail_offset = 0 # unread messages never goes zero, yours might mail_check_freq = 60 # check mail every 60 seconds gpio.setmode(gpio.bcm) # define output green_led = 23 red_led = 18 blue_led = 25 gpio.setup(green_led, gpio.out) gpio.setup(red_led, gpio.out) gpio.setup(blue_led, gpio.out) # define input input = 24 gpio.setup(input, gpio.in) green = gpio.pwm(green_led, 100) pause_time = 0.02 while true: newmails = int(feedparser.parse("https://" + username + ":" + password +"@mail.google.com/gmail/feed/atom")["feed"]["fullcount"]) ...

Another Arduino Drum Machine (a tough one)

Image
hi! title says enough, here brief description , photos: i'm trying build diy version of roland octapad. want device 3 things: - trigger midi notes midi drum machine - play midi notes on given key on given octave on given channel (like midi keyboard, pads instead) - same above, sound-synthesis capabilities i've completed hardware needed , part of firmware deals display , menu. now, i'm waiting proper enclosure in order perform tests on pads , develop reading algorithm (i want pads velocity-sensitive). this developing enclosure: arduino , display mounted on plastic piece of tubing, suppose. can see splash-screen these multiplexer board , buttons board, uses analog input. here's pic showing menu navigation. program allow complex menu organization, possibly infinite levels of submenus. in 1 can see setting submenu: allows change among different values (the key, in case). each setting submenu recall same function, different parameters. this last one: these piezo...

Memory leak with mx:ComboBox ???

hi, i test flex framework. created simple application. join mxml code below: <?xml version="1.0" encoding="utf-8"?> <mx:application xmlns:mx=" http://www.adobe.com/2006/mxml"> <mx:arraycollection id="combodata"> <mx:array> <mx:object label="new york" data="ny"/> <mx:object label="connecticut" data="ct"/> <mx:object label="illinois" data="il"/> <mx:object label="new york" data="ny"/> <mx:object label="connecticut" data="ct"/> <mx:object label="illinois" data="il"/> <mx:object label="new york" data="ny"/> <mx:object label="connecticut" data="ct"/> <mx:object label="illinois" data="il"/> <mx:object label="new york" data="ny"/> <mx:object label="co...

Strange problem when adding content - Joomla! Forum - community, help and support

i tried add content on fresh joomla install , went well. but when wanted add email link got 404 on administrator/index2.php. i turned off editor, email cloaking , sef, , problem still there. so tried add email link character character. i found out ok , content did save normaly until add  colon ":" in mailto: any idea why content won't save when add colon? thanks you can take here http://forum.joomla.org/index.php/topic,46681.0.html . Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.x

E-Commerce Like E-Bay - Joomla! Forum - community, help and support

hi all anyone know if of open source e-commerce solutions out there allow people sign own shop (like e-bay) while main store takes percentage of profit? thanks ekal wrote: hi all anyone know if of open source e-commerce solutions out there allow people sign own shop (like e-bay) while main store takes percentage of profit? thanks you search @ sourceforge.net Board index Other Forums The Lounge

Another stepper question

Image
hi folks, yesterday opened old broken flatbed scanner device, , removed stepper motor 2 uln2003a "darlington arrays". well, thing don't want work... i used stepper knob example , wired in correctly. unfortunately don't know pinout of stepper motor, has 6 wires, , both red center tap's. that's know far. well, here's how wired up: i know looks bit mess, pretty easy: pin 8 11 arduino goes uln2003a pin 1 4 input, , pin 1 4 output of uln2003a goes stepper motor. both center tap wires (red) go +5v arduino. i used real colored wires stepper motor in schematic. colors are: red (2x), black, brown , yellow. okay, result: everytime start schematic, motor "wiggles" bit, or moves slowly, wiggling in 1 direction , can stoped touching gently. tried using +9v psu power stepper motor. wiggles around, moves "harder", can't stopped easily. tried switching wires going stepper motor, nothing happens. wiggles around or moves while wiggling...

Joomla Administratoren sehen keine Menüs mit ACL Registered und Special - Joomla! Forum - community, help and support

Image
hallo zusammen, ich habe ein kleines aber feines problem. ich nutze derzeit ein joomla 1.0.8 und ein smf 1.1 rc2 welches über eine bridge verbunden ist. die installation und alles klappte wunderbar. habe gestern mit meinem kollegen mit dem ich das projekt betreue, die grundinstallation vollzogen. im ersten schritt haben wir meinen useraccount im smf und im joomla bei der installation eingerichtet. danach die bridge installiert und dann hat sich mein kollege über joomla beiden systemen registriert. nun habe ich ihn jeweils über das admin menü des smf und von joomla zum super administrator (joomla) und zum administrator (smf) gemacht. als ich heute morgen etwas nachschauen wollte, fiel mir plötzlich auf, das einige menüs fehlen. nach etwas rumprobieren stieß ich auf die acl's. nachdem ich z.b. beim user menü die acl von registred auf public runter gesetzt habe hatte ich plötzlich wieder einträge im user menü. genauso sah es mit einträgen aus, welche die acl special besaßen. die konnt...

sequenza led accelerata

salve tutti, sono nuovo mi chiamo roberto e sono di trani; mi sono affezionato molto al mondo di arduino; con molta calma sto cercando di capire come funziona . ho creato questo programmino: int tgr=low; int var=0; int x; void setup() { pinmode(40,input); for (int uscita=2 ; uscita<29; uscita++){ pinmode(uscita,output); } } void loop(){ x=1000; tgr=digitalread(40); if((tgr==high)&&(var==0)){ for(int uscita=2; uscita<29; uscita++){ digitalwrite(uscita,high); delay(x); digitalwrite(uscita,low); x=x-35; } } else{ for(int uscita=0; uscita<29; uscita++){ digitalwrite(uscita,low);} } } facendo eseguire il programma, il tutto funziona molto bene; l'unica cosa che non mi soddisfa è la parte accelerata. mi spiego meglio: all'inizio è molto lenta, poi successivamente accelera troppo velocemente; esiste un modo per avere un'accelerazione "costante"? grazie tutti in anticipo..... ciao cosa accelera? arduino scappa via dalla sc...

Arduino Mega 2560 not recognised on Windows 7 x64

hello, i've received first arduino board , excited give initial test. i have downloaded software, when plug in board through usb, windows nothing- doesn't tell me new device has been plugged in , doesn't ask me specify driver! the board not light up. literally nothing visible happens. do have faulty hardware? try different usb port on computer or new usb lead. tends solve issues. Arduino Forum > Using Arduino > Installation & Troubleshooting > Arduino Mega 2560 not recognised on Windows 7 x64 arduino

Running out of memory for (seemingly) no reason!

here's code. reason i'm running out of code. please take gander. thanks! code: [select] #include <softwareserial.h> #include <sd.h> softwareserial myserial(2, 4); int resetpin = 3;  //reader reset pin. int ledpin = 7;  //status led pin. int cs_pin = 10; void setup() {   serial.begin(9600);  //initialize main serial connection.   myserial.begin(9600);  //initialize reader serial connection.   pinmode(resetpin, output);  //define reset pin output.   pinmode(ledpin, output);  //define led pin output.   pinmode(cs_pin, output);   digitalwrite(resetpin, high);  //pull reset pin high.   serial.println("initializing sd card");   if (!sd.begin(cs_pin)) {     serial.println("card failed. quitting");     return;   }   serial.println("sd card ready");   serial.println("waiting tag"); } void loop() {   char readbyt...

problem with serial asinkron communication

today have mid semester. , have test make communication between 2 microcontroller "in case, use arduino uno atmega 328". 1 micro master , other slave. must make baudrate 56000bps. function of master read analog input (potensio) , slave turn on/off led (five led). turn/off suitable binary number (5 bit). can't make it, please me. this program : 1. master code: [select] //ujian tengah semester (uts) tam_0001 //komunikasi serial asinkron //created : toni firnandes (3211001056) //ardunio_master// //baudrate = 56000 bps// //define fungsi pengaktifan bit di arduino #define sbi(sfr, bit) (_sfr_byte(sfr) |= _bv(bit)) #define cbi(sfr, bit) (_sfr_byte(sfr) &= ~_bv(bit)) //deklarasi variable,start , stop bit int data_potensio, data_master; //setup utama void setup() { //membuat fungsi baru khusus menginisialisasikan serial serial_asinkron(); //mendeklarasikan pin a0 sebagai input pinmode(a0, input); } //fungsi berulang void loop() { //membaca data potensiometer d...

interrupt issues: Adafruit motor shield + servo + timer interrupt + arduino

i need arduino genius, groks way down bare metal. i have robot giving me issues.  i'll describe hardware, software, , symptoms i'm seeing. hardware: i have open source wall-hanging drawbot http://github.com/i-make-robots/drawbot build on arduino adafruit motor shield connected 2 nema17 steppers (for xy motion) , hobby servo (for z). software: i use frequencytimer2 control timer interrupt on timer2.  communicate java app on serial, i'm told uses timer0.  servo pwm done on timer1.  tell steppers move @ constant speed , do, emitting hum.  symptoms: 1. frequencytimer2 ruins pwm on pins 9 , 10 on mega http://www.pjrc.com/teensy/td_libs_frequencytimer2.html 2 pins used servo on shield.  i'm looking lib make easy create timer interrupts (takes care of board-specific issues) , doesn't screw pins 9 & 10.  i'm willing use servotimer2 if can switch frequencytimer use timer1.  know of one? 2. if if arduino receive...

Motores de passo

Image
olá pessoal, estou tentando montar um circuito para controlar motores de passo, tenho o motor nmb pm42l-048, com o seguinte datasheet: http://www.eminebea.com/content/html/en/motor_list/pm_motor/pdf/pm42l048.pdf e o microcontrolador uln2003 com o seguinte datasheet: http://www.semicon.toshiba.co.jp/docs/datasheet/en/linearic/uln2003afwg_uln2004apg_en_datasheet_101203.pdf pelo que eu entendí, esse microcontrolador conseguiria manipular um motor de até 50 v e até 500ma, é isso mesmo? não entendo muito de datasheets! posso ligar esse motor com esse controlador, mesmo sendo 100ma mais q o limite microcontrolador? se não, me indiquem um, pois vou precisar controlar dois motores desse, obrigado! vais carregar o motor de passo com algo ou é só para experimentar? corrente deriva binário, logo parece-me que podes usar esse chip para controlar este motor até determinada carga. podes procurar por um driver de potência como um l298 ou 297 para fazer isto de forma ma...

Navi-X hangs on "Please wait..." - Raspberry Pi Forums

hi. have been working set raspberry pi b. installed berryboot , there installed openelec 3.7.8. select, openelec displays "please wait..." panel , never returns. has experienced , identified solution? ron ronq wrote: hi. have been working set raspberry pi b. installed berryboot , there installed openelec 3.7.8. select, openelec displays "please wait..." panel , never returns. has experienced , identified solution? ron openelec 3.7.8??? current stable 3.0.6 , current testing release 3.1.3. raspberrypi

ColdFusion in Oracle AS J2EE

i need deployment of coldfusion on oracle application server j2ee app using ear file generated coldfusion-702-lin.bin installer downloaded adobe/macromedia. i created oc4j instance , tried deploy ear file enterprise manager console. result error: 500 internal server error servlet error: java.lang.classnotfoundexception: _ias._oc4j._deploywiz._selectappdest btw: platform linux (rhel 3) any suggestions appreciated! More discussions in ColdFusion Server Administration adobe

Robot Hexapod project!

hello! i'm starting new robotics development platform, @ point have buy components , expensive donations great! well whos going donate when don't know is, really?  so lemme tell it.   the robot going hexapod, ones on @ hsd hagenberg.  the biggest difference though hexapod allowed have various sorts of attachments , operations placing new attachments on hexapod.  the hexapod able various things such unlock door or safe, guide through dark areas, retrieve things if lazy, , many other things such dance(obviously), oh , did mention scale walls? thats right, robot able walk smooth walls, , someday, wall! if want follow development, great! goal have completed fall, , continuing development go on there , hope have on market before christmas! check out blog more development information! http://funkyguy4000.wordpress.com/2012/05/01/revival-and-new-project/ quote the components , expensive donations great! get in line, want donate proje...

Laser Scanner

Image
buon giorno tutti! intanto mi presento: giovane ragazzo di quasi sessant'anni appassionato di tutto quello che si può costruire. robotica e cnc sono la mia passione, e ho da poco scoperto la grafica 3d. il mio tempo libero è però pochissimo per cui sarò costretto disturbare l'intera comunità con domande che saranno sicuramente banali ma per me insormontabili! vengo al punto: sto costruendo uno scanner laser che utilizzerà il sistema david, per cui volevo realizzare un sistema automatizzato per muovere sia il laser che il modello da scannerizzare con due motori passo passo. ho un arduino 2009 e un motor shield adafruit, due motori nema 17 sempre adafruit e tanta voglia di imparare. adesso mi leggo tutto il forum, poi passo al contrattacco! grazie della vostra pazienza! benvenuto ! il lavoro che ti sei prefissato non mi pare una passeggiata però dall'entusiasmo si capisce molto di una persona e credo che se ti rimbocchi le maniche te ce la pos...

In AVRStudio 5.1 Error1bad -rpath option

ho seguito la guida fatta da quercuspetrea e penso di non aver fatto degli errori.quando provo fare "bouild solution" mi dada l'errore "error   1   bad -rpath option   " l' output completo è : code: [select] ------ build started: project: ds18b20_example, configuration: debug avr ------ build started. project "ds18b20_example.cppproj" (default targets): target "prebuildevent" skipped, due false condition; ('$(prebuildevent)'!='') evaluated (''!=''). target "corebuild" in file "c:\program files (x86)\atmel\avr studio 5.1\vs\compiler.targets" project "d:\avrstudio\progetti\ds18b20_example\ds18b20_example\ds18b20_example.cppproj" (target "build" depends on it): using "runcompilertask" task assembly "c:\program files (x86)\atmel\avr studio 5.1\vs\compiler.task.dll". task "runcompi...

Fixed width or 100%

hi, i've got hold of template i've succesfully managed modify. have html page loads falsh movie. has fixed width , height , know on pc's such laptops, flash movie doesn't fit on page. know i'm able change 100% on each. i'm wondering if there issue this? thanks in advance issues if setting width , height 100%... - screens may widescreen movie stretched differently. - having flash movie stretch beyong initial proportians can distort non-vector based images. there ways make flash movie 100% x 100% , specify parts within flash movie not scale on resize. More discussions in Adobe Animate CC - General adobe

Thread: hardy will not boot, sits at splash screen

i running 2 ubuntu versions, jaunty , hardy, on same system. both working, hardy not boot (jaunty fine.) grub still shows entry it, when booted, stays on splash screen forever. recovery mode stops on line "generic cd-rom driver." able read, write, , fsck partition (clean.) record, cd-rom hl-dt-st dvdram gsa-t20l. can fix problem without being able boot hardy? someone suggested disable cd-rom drive @ bios , try boot, did not work either. ugh. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] hardy will not boot, sits at splash screen Ubuntu

Source formatting??

hi, i'm going crazy looking darn button "source formatting" auto format code.. help file not helpful on when looking code format, source format, auto format... if point me in right direction, appreciate lot. thx! greetz spike kristof smessaert wrote: > hi, > > i'm going crazy looking damn button "source formatting" > auto format code.. > file not helpful on when looking code > format, source format, auto format... in dw8, menu option commands/apply source formatting hth, pete. -- peter connolly http://www.acutecomputing.co.uk uk More discussions in Dreamweaver support forum adobe

Thread: USB Keyboard problem for a Novice user

Image
hello, i'm having problem getting usb keyboard , mouse work. [they both connected using wireless usb receiver] keyboard in question works in grub , bios when connected through usb. when ubuntu login can 1 keystroke in sometimes , before flatout doesn't input @ all. @ point when forced plug in usb-ps/2 adapters login , type in ubuntu os. i've been trying hard use docs , current threads solve ubuntu problems new user. problem has me stumped though. record, somehow messed gui week or 2 ago; long story short uninstalled "cairolib" thinking dock app. led booting terminal when pc turned on. used: code: sudo aptitude install ubuntu-dektop to back. https://help.ubuntu.com/community/installusbkeyboard ^this ubuntu doc says: "in case, principal sources of problem searched in are: * incorrect o.s. setup files character mode terminal emulation (e.g. recovery mode in *ubuntu); * inc...

Arduino clone su protoshield

Image
salve tutti, sono un newbie in elettronica e maggior ragione in arduino ... perdonate quindi le banalità ... sto tentando di copiare un progetto per comandare un dolly per fotocamera. per evitare di inscatolare definitivamente una board arduino originale pensavo di realizzarne una economica (diy, con la componentistica fondamentale). l'idea è, programmo l'atmega come consuetudine sulla board arduino originale e la trasferisco sulla protoshield (con socket 28 pin) dove svolgerà il suo compito definitivamente. ho provato disegnare il clone con fritzing ( https://picasaweb.google.com/lh/photo/bklzhmfkomqffv4w_-euydmtjnzetymypjy0liipfm0?feat=directlink ) e vorrei chiedervi: lo schema vi pare corretto? non dovendo programmare l'atmega su questa board, è corretto ignorare la presenza del tasto di reset, lasciando il relativo pin libero? il pin 21 del controllore (aref) va collegato ai 5v? (io l'ho ignorato, ho visto due schemi su breadboard contrastanti) sullo sc...

remotely (web) add/remove rfid key fobs

hi there. i'm new rfid , understand basic working (if key_fob == xxx than). i know if possible define variable (key_fob) on internet , store value somehow permanently? i have purchased id-20 reader , install @ location a, myself live @ location b , able add/remove key fobs (new users, lost fobs etc). is possible? example remotely add/remove key fobs in text file stored on sd card , pull data arduino? kind regards, sebastiaan quote i know if possible define variable (key_fob) on internet , store value somehow permanently? yes is. use long long type of variable store 64 bit value. can store these values in eeprom http://arduino.cc/it/reference/eeprom Arduino Forum > Using Arduino > Project Guidance > remotely (web) add/remove rfid key fobs arduino

Thread: Noob Configeration Questions

hi, when comes linux i'm complete noob. i've tried reading of documentation on website, seems written people basic knowledge don't have. have installed ubuntu 9.04 duel boot option. hate vista, want make sure can linux before giving completely. update manager has popped stating updates totaling 133.2mb available download. when click install updates button says "the upgrade needs total 389m free space on disk '/'." huh? what/where disk '/'? can download updates different drive , install there? need find 389mb running updates or space needed updates after have been installed? note: text 389m not 389mb. file browser has call short cuts documents, music, pictures, , videos. have existing folders these on "d:" (volume name "data") drive. had @ system-administration-users , groups, honest don't feel have enough knowledge fiddling settings. there way me change short cuts point folders on "data...