Posts

Showing posts from June, 2012

screen transitions

i want try out screen transitions , in 'help' says: "in behaviors panel, click add (+) button. select screen > transition submenu. " i can't find menu option screens , listed transitions, know is? i apply transition between 2 scenes, have gathered can apply transitions flash screen environment , not scenes. how can add transition such dissolve between scenes - have code in or manually animate in-between state. any suggestions appreciated or if can point me right direction on can find out more .... thanks! More discussions in Adobe Animate CC - General adobe

Arduino Ohm Meter

hi everyone! found link http://evilquark.com/blog/?p=49 arduino ohm meter , purchased first arduino because of it.  i tried out , have few questions. 1.  why 10k resistor (or known resistor) have attached ground instead of 5v circuit work? using 1k resistor "unknown resistor" 2. if wanted test multiple unknown resistors @ once (like 5 unknown resistors) , display information, how go it? sorry noob questions.  im real new @ interested in learning arduino more.  thanks! hi, 1. make voltage divider - http://en.wikipedia.org/wiki/voltage_divider there +5v --- [ unknown ] ----*----[ 10 k ] --- gnd now know @ * there voltage between 0 , 5v if remove 10k * cannot between 2 values become + 5v this possible: gnd  --- [ unknown ] ----*----[ 10 k ] --- +5v the sw formula different 2. easiest way: have replicate schematics 5 times. arduino has 6 analog lines, can done. aware have small delay between analog reads. "there exist no stu...

Thread: Can't install on Western Digital 1600 (sata)

Image
hi all, when trying install 9.04 h/d cannot found cannot install :s spec is: hd: maxtor stm3250820as processor: amd athlon 64 x2 4200 dual-cor motherboard: foxconn skt939 appreciated title wrong, haha Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] Can't install on Western Digital 1600 (sata) Ubuntu

SSH Key setup - Raspberry Pi Forums

i've been happily using rpi via putty windows laptop months now, , decided should stop password nonsense , set ssh public-key system. used number of guides - notably [this one]( http://www.howtoforge.com/ssh_key_based_logins_putty_p2 ) [this one]( http://wp.a-programmer.com/2010/06/14/s ... d-our-key/ ), , [this one]( http://wp.a-programmer.com/2010/06/14/s ... d-our-key/ ), keep running against same error. when try log on using ssh key, "server refused our key", before being asked password before. steps took: generated keys puttygen saved private key .ppk file copy-pasted public key code: select all ~/.ssh/authorized_keys set profile on putty - auto-login username "pi" under connection / data, , set private key file under connection / ssh / auth saved profile set permissions on code: select all ~/.ssh/authorized_keys , code: select all ~/.ssh/ try log on putty: following messages: code: select all using username "pi". server refused ou...

"DO" " While" Problem

i can not loop in statement stop when when condition in "while" condition met can assist please. int pin0 =0;   int pin1 =1; int pin2 = 2; int pin8 =8; int pin9 = 9; int pin10 = 10; int pin11 = 11; int pin12 = 12; int pin13 = 13; int a=0; int b=0; int c=0; int z = 0; int val0; int val1  ; int val2 ; //======================== void setup() {  pinmode(pin0, input);  pinmode (pin1, input);  pinmode (pin2, input);  pinmode (pin8, output);  pinmode (pin9 , output);  pinmode (pin10, output);   pinmode (pin11, output);    pinmode (pin12, output);    pinmode (pin13, output); serial.begin(9600); } //--------------------------------------------------------- void loop() { val0 =   digitalread(pin0); val1 =   digitalread(pin1);  val2 =   digitalread(pin2); // digitalwrite(pin10, low); //  digitalwrite(pin8, low);   if (val0 ==low) {    // whe...

More documentation about TCNT0

i reading arduino documentation , extended documentation, references can found things timer0_overflow_count or tcnt0 on forums , questions, there isn't documentation that? search on google, find forums, should search?. thanks. one of arduino's aim provide easy hardware/software solution, thing more complex what's documented in playground section should refer chip datasheet... ex: atmega48pa/88pa/168pa/328p http://www.atmel.com/dyn/resources/prod_documents/doc8161.pdf Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > More documentation about TCNT0 arduino

Thread: Audio Player

Image
until have used foobar2000 under wine, i'm trying totally disconnect myself windows world. i've played around small amount of audio players listed under synaptics , have had same lack of features desire much. being .cue file support , ability display music custom order option, i.e %artist% - [%album%] %songtitle% whilst still resembling foobar2000's minimalistic layout. audio players have used far are; amarok, audacious, mesk, rhythmbox , xmms. can kindly suggest nice clean-looking audio player these features? posted hybie until have used foobar2000 under wine, i'm trying totally disconnect myself windows world. i've played around small amount of audio players listed under synaptics , have had same lack of features desire much. being .cue file support , ability display music custom order option, i.e %artist% - [%album%] %songtitle%...

Question for anyone using the Slashdev LCD library

Image
hello folks, have question has c experience and/or using slashdev lcd library @ http://www.slashdev.ca/arduino-lcd-library/ the lcd.print( ); command in library takes character or string argument , prints lcd.  this works fine me when printing text directly or char message[] = "hello world!"; in application trying print member of array contained inside structure, such mystructure.element[0].  if try lcd.print(mystructure.element[0]); don't character or number stored in array printed lcd, looks i'm getting whatever character stored in lcd's lookup table @ equivalent binary address, might %, or random japanese characters - interesting, not want! does have ideas on or possible workaround?  :-? update: i've been in touch creator of lcd library i'm using, , found out library supported printing strings.  however, kind enough modifications library supports printing integers contained in variables, structures, etc. i find library mor...

HELP! Error on connecting to local web service

i've got following mxml file, <?xml version="1.0" encoding="utf-8"?> <mx:application xmlns:mx=" http://www.adobe.com/2006/mxml" layout="absolute" width="600" height="450"> <mx:webservice id="testapp" wsdl=" http://localhost/dir_ws/service1.asmx?wsdl" showbusycursor="true" fault="alert(event.fault.message)"> <mx:operation name="getsearchresults"> </mx:operation> </mx:webservice> <mx:vbox> <mx:button click="testapp.getsearchresults.send()"></mx:button> <mx:datagrid dataprovider="{testapp.getsearchresults.result}"> <mx:columns> <mx:array> <mx:datagridcolumn id="last_name" headertext="last name"/> </mx:array> </mx:columns> </mx:datagrid> </mx:vbox> </mx:application> it's trying read web service on localhost of ma...

trouble working a PWM tone generator

i'm trying write tone generator led lighting using pwm pins first arduino project.  i've got pair of 8 1 muxes working , lights match tones fine, tone speeds playtone function keep coming out short.  i've been trying debug couple of hours , feel retarded can't working yet.  anyone able spot error?  i'm guessing it's within playtone function itself, i'm not positive. int s1[] = {7, 8, 9};      //select lines first mux, tone light selector int s2[] = {4, 5, 6};      //select lines second mux, rhythm light selector int speakerout1 = 11;   //sets first audio channel int lightout = 3;            //sets led channel //int pulsewidth[] = {7644, 7215, 6810, 6428, 6067, 5726, 5405, 5102, 4815, 4545, 4290, 4049, 3822, 3607, 3405, 3214, 3033, 2863, 2702, 2551, 2407, 2272, 2145, 2024, 1911, 1803, 1702, 1607, 1516, 1431, 1351, 1275}; int pulsewidth[] = {3822, 3405, 3033, 2863, 2551, 2272, 2024, 1911}; int b...

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

Image
hi, my template has iframe on loads php page template dir. page needs query database , display info in iframe. copied database query code template in works. error database objects can not used. fatal error: call member function on non-object in w:\www\mambo452\templates\ir2\player.php on line 29 i figured there database library needs used, made page module , put position in page loaded iframe. message: fatal error: call undefined function: mosloadmodules() in w:\www\mambo452\templates\ir1\player.php on line 9 it doesn't have code load modules since isn't index.php. ok. so put page loaded mambo root dir , added include files in root/index.php file. worked except got error; fatal error: call member function on non-object in w:\www\mambo452\includes\frontend.php on line 56 this line accessing database object:  $database->setquery( $query ); does page need type of permissions database? i stuckl thank you, moshe i don't know if or not, standard module handles iframes; call...

Thread: Compaq Presario 715CA Install Issues

thanks in advance help/suggestions. have spent past 2 hours searching these forums info on how ubuntu installed on notebook no avail. once select install computer starts work, , ubuntu screen comes bar fills in, 90% bar the install halts! have tried run live cd, , same thing happens. sure simple combination of boot parameters missing... what specifications machine, such installed memory, video card, etc? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Compaq Presario 715CA Install Issues Ubuntu

Arduino + BlueSmirf

i got bluesmirf in mail today, , cant figure out how thing work. i have connected pc (the light turns red blink green), cant enter data mode.  i tried putty , own version of hyperterminal, no response.  im tying data mode drop baud rate down 9600. anyone have tutorial?  i found bunch, havent helped... continued here http://www.arduino.cc/cgi-bin/yabb2/yabb.pl?num=1266178408/0 Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > Arduino + BlueSmirf arduino

NTP over UDP?

anyone have luck receiving ntp packets via udp? i'm using official ether shield, , udp libraries written bjorn hartmann. i can send request, single question mark... code: [select] #include <ethernet.h> #include <udpstring.h> #include <wstring.h> /* attempt ntp time nist * based on examples of how send , receive packets on udp * using udpstring library bjoern@cs.stanford.edu 12/30/2008 */ /* ethernet configuration * arduino: set mac, ip address of ethernet shield, gateway, * , local port listen on incoming packets */ byte mac[] = { 0xde, 0xad, 0xbe, 0xef, 0xfe, 0xed }; //mac address use byte ip[] = { 192, 168, 1, 175 }; // arduino's ip address byte gw[] = { 192, 168, 1, 1 };   // gateway ip address int localport = 123; //local port listen on /* target: set ip/port of computer receive * udp messages arduino */ byte targetip[] = { 192, 43, 244, 18}; //time.nist.gov int targetport = 123; /* strings hold packets want s...

Starts automatically

why dreamweave 2004 open automatically when start ibook g4 running max os 10.4.9? thanks lt silverman pc's have "startup folder" check mac equivalent "ltsilver" <webforumsuser@macromedia.com> wrote in message news:f2svcu$nqs$1@forums.macromedia.com... > why dreamweave 2004 open automatically when start ibook g4 > running max os 10.4.9? > > > lt silverman More discussions in Dreamweaver support forum adobe

Joomla y Localhost - Joomla! Forum - community, help and support

buena tarde. tengo instalado joomla en apache2triad y la base de datos es mysql-4.0.22, la instalación no me presento problemas y localmente todo funciona muy bien, pero ya cuando otra persona desde su browser quiere ver el sitio, lo que son las imágenes y css no se "mapean", por que las rutas no están relativas sino absolutas, es decir: http://localhost/images.. . y no http://ip/images . al momento de hacer la instalación uno tiene la opción de cambiar el localhost por una ip pero cuando cambio eso joomla la instalación no pasa del segundo paso. ¿cómo puedo solucionar esto? gracias!!!!! ponlo luego manualmente en el cofiguration.php la ip deseada: ejemplo: $mosconfig_live_site = 'http://192.168.1.2/tujoomla'; un saludo Board index Joomla! International Language Support International Zone Spanish Forum Versiones de Joomla! obsoletas Joomla! 1.5 ...

i2c, wire.h and digital pin problems

all, i've got arduino working on i2c wii nunchuck , blinkm using wire.h described todbot. http://todbot.com/blog/2008/02/18/wiichuck-wii-nunchuck-adapter-available/ analog pins 2,3,4,5 separately, have 74hc595 working using shiftout instructions. http://www.arduino.cc/en/tutorial/shiftout 5v, gnd, digital pins 8, 11, 12 i'd able send signals 595 based on values nunchuck.  problem is, when plug them both in , run program includes wire.h library, garbage out pins 595, , don't readings nunchuck.  for example, i'm not connecting 595 pins program. any ideas why wire.h or i2c code interfering analog pins? the hardware i2c on atmega168 uses same pins analog 4 & 5.  so when i2c mode enabled, these pins converted digital signals i2c connection , can no longer use them analog.  since how atmega168 built, can't use other pins hardware i2c. there people working on software i2c use different pins.  search forums this. ...

Creating Dynamic Text Field for Flash CS3 in Illustrator CS3

i've created series of buttons in illustration , made them movie clip symbols in illustrator. created text fields button labels , assigned them dynamic text in flash text panel in illustrator. when import illustration flash , test movie, error message: typeerror: error #1034: type coercion failed: cannot convert flash.text::textfield@d18cef9 flash.display.movieclip. @ flash.display::sprite/flash.display:sprite::constructchildren() @ flash.display::sprite$iinit() @ flash.display::movieclip$iinit() @ menu2_fla::maintimeline$iinit() it seems flash misinterpreting text fields brought in illustrator movie clips? More discussions in ActionScript 1 and 2 adobe

reading arrows from keyboard on Arduino IDE

hi, this newbie question. trying write program read arrows(up, down, left , right) , move robot arm accordingly. have done java, no idea how in arduino ide. have googled no results. ideas how ? thanks help. shahab. it can't done arduino ide. arduino ide developing programs run on arduino. keyboard not connected arduino, can't read key presses. processing can read key presses, , send information serial port, arduino can read. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > reading arrows from keyboard on Arduino IDE arduino

static text | variable | static text

i'm thinking need simple actionscript i'm not sure. have dynamic text field loading variable named count. place static text on either side of value of variable. since variable integer increase, it's horizontal width increase well. can't place 2 strings of static text on either side of variable grow in width on time. make sense? essentially, want have dynamic text box display string of text, value of variable (that change in length), string of text, seamless, looking if typed whole sentence in word processor. time! let have dynamic text field instance name my_txt when want increase value, run my_txt.text++; when want decrease value, run my_txt.text--; now, convert dynamic text field movieclip symbol, set instance name my_mc now, set value of text, should use my_mc.my_txt.text++; but not going set value in way. now, go my_mc movieclip, select 1st frame, attach script: var actualvalue:number = number(this.my_txt.text); var displayvalue:string = ""; functi...

Lack of Knowledge for Wireless transmission

Image
hi forum, 1st project related using arduino + xbee transmit commands robot. one xbee connected robot while connected arduino board. i have read , done tutorials posted in main arduino website problem is, tutorials related serial connections. the project im doing wireless. i can't seem working , im wondering if im missing out critical c information. just information: both xbee of same channel. baud rate 115200 what not know: the sequence/method of writing program wireless transmission. im beginner here , hope have been clear enough   please guide me forums quote the project im doing wireless. that explain xbees. quote i can't seem working , im wondering if im missing out critical c information. maybe. maybe not. quote im beginner here , hope have been clear enough not nearly. quote one xbee connected robot how? duct tape? staples? hot-melt glue? or, practical means? quote i have read , done tutorials posted in main arduino website problem is, tutor...

How to use the Watchdog properly

hi, i new arduino , spent hours of reading now. for rc project (controlling 4 motors of radio controlled plane) have make sure system reliable. software complex want make sure systems keeps working if failed in s/w design , hangs. that's watchdog jumps in. i read under conditions watchdog can lock system entirely since may jump in during bootloader on , on again preventing system starting @ all. i didn't if issue 1 shouldn't use watchdog @ all? what way safely use watchdog? cheers , thank much alexander you need use bootloader compatible watch dog operation. think standard arduino bootloader still not compatable. there bootloaders compatable, adafruit bootloader works nice. http://wulfden.org/theshoppe/freeduino/adaboot.shtml Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs ...

Raspberry Pi Forums - Login

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 raspberrypi

Direct download links - Joomla! Forum - community, help and support

hi there, is me, or when try download file (lets joomla! example) link "http://developer.joomla.org/sf/frs/do/downloadfile/projects.joomla/frs.joomla_1_0.1_0_4/frs2532?dl=1". this may work in browser when try use wget in linux shell enviroment downloads "`forbidden.html?dl=1'" file. i know may ask nice link work wget well, saves people lot of time when want install joomla! in shell enviroment. thanks, afonic please see: http://forum.joomla.org/index.php/topic,6900.0.html Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed Joomla Forge - Archived

Project : Embedded Camera + raspberry - Raspberry Pi Forums

hi all, realize embedded camera, such gopro camera less expensive , homemade. think use system based raspberry pi. objectives : - autonomy ( battery?) - small size transportable goal: use camera in full activity (skiing), , after able watch video on computer. novice, experience , feedback on feasibility of little project raspberry pi? thank answers evening! wait camera module ! perhaps released spring next year - camera team busy atm. ghans raspberrypi

Thread: Do you use anykind of external cooling system for your laptop?

Image
hi have lenovo t400 , getting warmer enough. thinking should 1 of these cooling systems , far unable decide go with. far looking @ gigabyte g-pad: http://www.gigabyte.com.tw/products/...productid=2340 , logitech notebook cooling pad n100: http://www.amazon.com/logitech-noteb...6397118&sr=8-1 still far making decision , looking advice guys may share. i used to, until dog chewed cord. Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Do you use anykind of external cooling system for your laptop? Ubuntu

Serial.print

hy i think has asked couldn't find post.. so got sketch running in wich have print float value on serial port. for example float test = 231,02312 serial.print((long)((float)test )); i 231 that's how rest? '0' problem won't store in int value of course. how can print it? thx andy as of 0018: code: [select] serial.print(test, ndp); will give "ndp" places of decimals. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Serial.print arduino

Sound Analysis with Arduino

Image
hi everyone!! i working in project different materials have distinguished.  i wanted analyzing frequency of sounds when hit surface.  i have checked frequencies of each material distinguishable 1 hooking cheap microphone computer.  the challenge autonomously arduino...  :-/ how hook microphone board?  and, have library use sound analysis?? thanks!!! forget how use google? http://www.google.com/search?q=arduino+microphone the first link: http://www.arduino.cc/cgi-bin/yabb2/yabb.pl?num=1208575180 also check: http://www.google.com/search?q=arduino+fft you're welcome... Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Sound Analysis with Arduino arduino

Syntax question

why legal in c , not in c++? code: [select] void loop () {  uint8 myval;  uint8 myfunction (uint8 myparam)  {    uint8 myreturn;    // blah blah bit-fiddling on "myparam"    return myreturn;  } ... ... newval = myfunction (0x18); } visual c doesn't it. does myfunction work correctly? Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Syntax question arduino

Thread: Sbackup not backing anything up

i can't figure out how sbackup work. i've installed synaptic package manager , can set options fine no matter how set them after run backup when @ resulting folder it's empty. i've tried using default destination , home folder, i've tried manual backups , custom backups , result same every time: empty folder backup's date name (well bit more name, i'm not on machine in question , don't remember whole thing). obvious thing overlooking, please? running jaunty on fujitsu c2210 laptop. you should post /etc/sbackup.conf file. should check make sure target directory backup not full. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Sbackup not backing anything up Ubuntu

Hey Adobe! Update Frehand

i think adobe does'nt think update freehand, want use sily illy. İ want freehand. hi, we have had discussion in every second post , problem not if adobe or not update freehand, don´t let know intentions!! although translate kind of update or replacement take place, otherwise have been in adobes best interest inform don´t care freehand , users longer. , go illy or wherever, if don´t stick our old freehand do.... More discussions in Freehand adobe

Need Help with dynamic ._x with XML thumbnails

what i'm trying position controls movieclip sit snug next thumbnails. tricky part is, number of thumbnails may change time time, , want sure controls being snug right next last thumbnail. see image sample: here attempt of code. move dynamically, if change number of images within xml overlaps or goes far right: sample img - click here pay attention controls._x = thats i'm needing not sure, might work More discussions in ActionScript 1 and 2 adobe

wrapper and url - Joomla! Forum - community, help and support

lets i've got photo.php page , contains 2 "links" photos. sure can put in wrapper such url /index.php?option=com_wrapper&itemid=8&photo.php?photo=2 (or that. saw in 1 post how this. need edit wrapper.php.html) but if i'll put such link in wrapper, user clicks on wrapper wil open directly second photo (if have example 100 photos wont put 100 wrappers every photo). what want is- user clicks on wrapper, wrapper opens photo.php page (till here ok), user sees 2 photos links , clicks second one. photo opens in wrapper, url remains same ( how can done>? okay, don't understand you're saying... do have link take @ doing? Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

When to use a .C library vs a .CPP library

i copying wiring_serial library testing.  i want create new "test_serial" mods.  hopefully avoids risks of continuing edit core code.   my question is, hardwareserial.cpp appears call "wiring.serial.c"  presumably put c++ face on it.   there reason cannot make new library .cpp start with?  it looks can hook interrupts in .cpp.   or matter there problem creating .c library , distributing it? feel free make libraries written in c++.  i think existing libraries don't go out , make c++ syntax less confusing newcomers or c programmers, c++ can serve needs of small programs c. if you're going make c library functions usable user's c++ sketch, need ensure header file explicit c nature. mylibrarywritteninc.h code: [select] [glow]#ifdef __cplusplus extern c { #endif[/glow] /* prototypes functions implemented in c */ int mycfunction(float, char, int); [glow]#ifdef __cplusplus } // extern c #endif[/glow] ...

LCD 4bit help

Image
first off, code, works, don't it. code: [select] #include <lcd4bit_mod.h> lcd4bit_mod lcd = lcd4bit_mod(2); char* ascii_chart[96] = {  // lcd lib wants print in decimal i'm using character " ", "!", "x", "#", "$", "%", "&", "x", "(", ")", "*", "+", ",", "-", ".", "/", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "?", "@", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s...

I can't install Cherokee - Raspberry Pi Forums

hi, last raspberry board 512mb. i've installed raspbian can not install cherokee web server : $ sudo apt-get install cherokee reading package lists... done building dependency tree reading state information... done package cherokee not available, referred package. may mean package missing, has been obsoleted, or available source e: package 'cherokee' has no installation candidate thanks raspbian based on wheezy (isn't it?), , wheezy not contain cherokee: http://packages.debian.org/search?suite ... s=cherokee explanation? raspberrypi

Getting libraries to work

i installed arduino-0004 , having trouble getting custom libraries work.  i wrote 1 of own , having trouble, went basics , tried use matrix library that's included package.  here code: #include <matrix.h> void setup() {     } void loop() {   delay(1000); } notice not doing witht library in code... include it.  when compile, this: lib\targets\libraries\matrix\matrix.o: in function `matrix::write(unsigned char, unsigned char, sprite)': /cygdrive/c/documents , settings/davin/my documents/electronics/arduino-0004/lib\targets\libraries\matrix\matrix.cpp:202: undefined reference `sprite::read(unsigned char, unsigned char) const' /cygdrive/c/documents , settings/davin/my documents/electronics/arduino-0004/lib\targets\libraries\matrix\matrix.cpp:201: undefined reference `sprite::width() const' /cygdrive/c/documents , settings/davin/my documents/electronics/arduino-0004/lib\targets\libraries\matrix\matrix.cpp:200: undefined reference `sprite::heigh...

How to cook a Turkey - Joomla! Forum - community, help and support

Image
step 1: remove turkey refrigerator. step 2: take drink of whiskey (scotch). step 3: place turkey in oven. step 4: take 2 drinks of whiskey. step 5: turn oven on. step 6: take 3 more whiskeys of drink. step 7: set degree @ 375 ovens. step 8: take 4 whisks of drinky. step 9: turk bastey. step 10: whiskey bottle of get. step 11: stick turkey in thermometer. step 12: glass pour of whiskey. step 13: bake whiskey 4 hours. step 14: take oven out of turkey. step 15: take oven out of turkey. step 16: floor turkey off of pick. step 17: turk carvey. step 18: hands blood wash off; place aid-band (s) on cut(s). step 19: scottle of botch. step 20: tet sable , pour glass of turkey. step 21: bless saying, pass , eat out. im drunk! lol! Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed Humor, Fun and Games ...

Help with Serial

i have simple sketch read value serial input , set pin analog output value based on input: int ledpin = 9;      // select pin led byte msg = 0;        // variable hold data serial void setup() {  pinmode(ledpin, output);      // declare led output    serial.begin(9600);  analogwrite(ledpin,10); } void loop() {  // while data sent on serial assign msg    while (serial.available() > 0){    msg=serial.read();    analogwrite(ledpin, msg);  // turn led on  } } in serial monitor send '[', 91 , should result in bright output on led have attached pin 9 (when explicitly put in "analogwrite(ledpin,msg)", pretty bright), led stays dark.  i see rx led on arduino board flicker, i'm having no luck on getting led on pin 9 light. actually, you'll see in setup call analogwrite(ledpin,10), , led comes on when upload sketch.  but, instant start serial monitor, led goes dark , won't light again no matter send in serial monitor. i wondered if mayb...

Thread: Password protecting folders

hi wondering if there way make specific folder password protected, users have enter administrator password whenever wanted open folder. yes, make folder user root. code: $sudo chown -r "folder name" this set owner of folder root requiring root access edit. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Password protecting folders Ubuntu

Fireworks CS3 WIll Not Start Up

i have downloaded both dreamweaver , fireworks cs3 trials , have been using them both couple of days without problems. when starting fireworks (it starts load program) comes following pop message box. "your user privileges not allow fireworks update registry. launch , edit dreamweaver not work until fireworks launched while using administrative privileges. the pop box freezes , unable close down. if go task manager , end program, finishes loading , shut down. i running vista ultimate , account admin account , has started happen. any ideas anyone? i having same problem. did ever find resolution? thx. More discussions in Fireworks adobe

All my sites have been hacked - index.* files changed - Joomla! Forum - community, help and support

Image
i found out morning sites have been hacked. have 17 domains (on 1 single dedicated server) , of them seem have homepage defacement.  :(" title="angry" /> there's picture of homer simpson stating i've been f**cked! apparently, / / has gained server level access , crawled through server , changed every index.* file. solution change index files original state. i'd know how go avoiding problem. can pls me find out how , got in? , how secure myself in future? thanks in advance, -v what version of mambo/joomla? what version of php/apache? self hosted or not? Board index Joomla! Older Version Support Joomla! 1.0 Security - 1.0.x

Arduino -> Processing serial confusion?

hey all, i'm testing new toy i'm building, , having issues serial communication ... upload code stream arduino serial data between 0 & 127, , if use serial watcher in arduino, numbers come correctly. if try watch numbers in processing 10, 16, 13, 5, 14... want data in, without weirdness... here's sources: code: [select] /* #################################################################### arduino code : ####################################################################*/ int apin0 = 0;     // potentiometer wiper (middle terminal) connected to analog pin 3                  // outside leads ground , +5v float smoothedval; void setup() { serial.begin(38400);          //  setup baud rate(midi = 31250) } void loop() {   smoothedval =  smooth(analogread(apin0)/8, 0.5, smoothedval); serial.println(smoothedval, dec);  //note data } int smooth(int data, f...

Arduino and Assembler

hi all, i wanted re-use assembler code (in .s file). after searching forum , not finding how it, came following solution. i wonder if there's way avoid writing libraries folder. 1. create folder in libraries, let's "routinesasm" 2. inside folder create file "routinesasm.h" containing like: code: [select] extern "c" {  void increment_a_number(void); } 3. inside folder create file "routinesasm.s" containing assembler routines, like: code: [select] #include <avr/io.h> .extern a_number .global increment_a_number increment_a_number:      push r16      lds r16, a_number      inc      r16      sts      a_number, r16      pop r16      ret 4. sketch must include .h file, like: code: [select] /*  program:  test arduino , assembler  autor:  [iard]  date:   2010-06-09 */ #include <routinesasm.h> vol...

Driving a solenoid - Raspberry Pi Forums

hi, i'm new using raspberry pi , hoping me build circuit activate solenoid. using cobbler breakout kit , have figured out how set 1 of gpio pins high know not enough power solenoid directly ( http://www.aerco.co.uk/images/sub_sub_c ... ries68.pdf ) have 12v power supply can hook solenoid wondering how use 3.3v output of gpio pin activate it. i've feeling involves mosfet in configuration appreciate help/advice creating circuit. what need relay driver. search site "uln2003" used solution. raspberrypi

controlling 2 motors + 1 servo using interrupts

i trying control 2 motors , 1 servo simultaneously via rc receiver connected arduino blimp project stuck on trying implement interrupts. current code, servo behaves when motors off. when throttle increased, servo moves specific position , gets stuck there. when motors turned off again, servo returns neutral , can controlled. throttle works ok erratic , not smooth. steering (i.e. turning left or right motors on/off) doesn't work. using external interrupts right approach here or should internal interrupts used (i took @ internal interrupts , confused different hex codes required)? should pulsein() function servo replaced interrupt? code: [select] #include <servo.h> boolean ch1_inputready; boolean ch2_inputready; boolean ch3_inputready; const int ch1_pin = 2;  //input pin steering left/right const int ch2_pin = 4;  //input pin steering up/down const int ch3_pin = 3;  //input pin throttle const int leftmotor_pin = 5;  //output pin left motor const int rightmotor_pin = 6...

Reinstalling DW8.0.2

i having problems dw8.0.2 (or maybe extension), decided uninstall , reinstall it. unfortunately, cannot update dw version 8.0 either 8.0.1 or 8.0.2. i run patches , "installed successfully" screen , no errors, when lauch dw, still version 8.0! has else suffered , if so, how did fix it? i've installed dw8 on several computers , never had before! please check adobe technotes - you'll find 1 there.... -- murray --- icq 71997575 adobe community expert (if *must* email me, don't laugh when so!) ================== http://www.dreamweavermx-templates.com - template triage! http://www.projectseven.com/go - dw faqs, tutorials & resources http://www.dwfaq.com - dw faqs, tutorials & resources http://www.macromedia.com/support/search/ - macromedia (mm) technotes ================== "mrdebauchery" <webforumsuser@macromedia.com> wrote in message news:ekhl57$k1b$1@forums.macromedia.com... >i having problems dw8.0.2 (or maybe extension), ...

Como fazer streaming no Raspberry PI? - Raspberry Pi Forums

boa tarde, percebo pouco software que podemos instalar no raspberry pi e li que vários utilizados utilizam-no como media center. existe alguma aplicação ou sistema que é necessário instalar como conseguir ver tv no raspberry? sâo os tais addons que malta fala por ai? queria comprar um mas antes queria saber se é simples fazer streamming de canais . obrigado tens varios escolha. se utilizares apenas como media center tens: xbian raspbmc openelec raspberrypi

Thread: Windows takes up more space

Image
http://www.guardian.co.uk/technology...microsoftsurfa windows not taking space on our hard drives our living rooms or bed rooms. probly wont ever touch screen table in kiving room ubuntu, if want spend 10,000 dollars on m$ windows table. gest. that's great , all, guardian article 2007. surely did first time around Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Windows takes up more space Ubuntu

Deleting Problem

hi, think deleteion problem problammtic me instead, impleting comments section shown when admin approves them. bvasic form user submit comments , link sent admin. admin clicked link new page opened option of shown: <cfif structkeyexists(url,'imageid')> <cfquery datasource="#dsn#" name="showcomments"> select comments, postedby icomm imageid = <cfqueryparam cfsqltype="cf_sql_integer" value="#url.imageid#"> </cfquery> <cfform method="post" action="docomments.cfm"> <cfinput type="hidden" name="sid" value="#url.imageid#"> <table align="center" width="75%"> <cfoutput query="showcomments"> <tr> <td width="20"> <input type="checkbox" name="mycomm" value="1"></td> <td class="navlink_plain"> #trim(showcomments.comments)# </...

How do I use an "or" statement in arduino?

Image
i need make "if" statement read multiple inputs, , if 1 of them triggered, run statement. how this? context: code: [select] void loop(){  do  {    digitalwrite(led1, low);    digitalwrite(led2, low);    sw1 = digitalread(s1);    sw2 = digitalread(s2);    sw3 = digitalread(s3);    sw4 = digitalread(s4);  }  while ( sw1 == high );    while ( true )  {    val1 = digitalread(r1);    val2 = digitalread(r2);    val3 = digitalread(r3);    val4 = digitalread(r4);    if (val1 == high) {      <--- or statement needs go here , read val2, val3, , val4 val1          digitalwrite(led1, high);          delay(10);          digitalwrite(led1, low);          if (val1 == high) { <---- same here!            digitalwrite(led2, high);            delay(10);            digitalwrite(led2, low);          }    }  } }     code: [select] if (value==1 || value==2) {  // somet...

Cannot install Dreamweaver CS3 on Vista

i'm running desktop pc windows vista premium. had dreamweaver 8 installed , want upgrade dreamweaver cs3. uninstalled dreamweaver 8 , ran setup cs3. after setup extracted necessary setup files saw message saying "initializing setup" , then...nothing. setup quit. tried several times. i've never installed of cs3 beta versions...but ran cs3 cleanup anyway. no luck. searched registry dreamweaver entries. nothing. adobe software have installed acrobat 8 pro , photoshop cs2. can't dreamweaver cs3 install. ideas? see if helps: http://www.adobeforums.com/cgi-bin/webx?128@@.3bc3b755 search post gorodek modifying containerproxy.js file. it seems have solved problem several photoshop users, , it's solved problem dw users well. hope helps, david alcala adobe product support More discussions in Dreamweaver support forum adobe

Reading data from Jdownloader Remote

i want use arduino ethernet shield read data jdownloader remote (basically web interface jdownloader show download speed etc) , output lcd basically setup "remote" interface runs on port 10025 , read speed connect computersip:10025/get/speed , displays value nothing else. after arduino has connected server cant figure out how tell connect /get/speed bit , tell port use. would need use print() or println() or write() cheers bump Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Reading data from Jdownloader Remote arduino

Problem with counter

hi friends, i not able find way mu counter not go across 10. i want counter row of values counter stop 10. could me ? thanks donato char buffer[20]; int ledinput1 = 2; int ledinput2= 3; int ledinput3 = 4; int cont=0; int starttime; void setup() {    serial.begin(57600); // serial.println("lettura");  pinmode(ledinput1,input);  pinmode(ledinput2,input);  pinmode(ledinput3,input);  starttime=0; } void loop() {  int input=int(analogread(ledinput1));   int input1=int(analogread(ledinput2));    int input2=int(analogread(ledinput3));   int input3;  if((millis()-starttime) <=1000)  {    delay(1); //  serial.print(" leggiamo valori del potenziometro:   "); //  serial.print("il valore di sens0 e':  "); //  serial.println(sens0); input3=input1;      buffer[0] = (input / 1000) + '0'; input %= 1000;      buffer[1] = (input / 100) + '0'; input %= 100;      buffer[2] = (input / 10) + '0'; input %= 10;      buffe...