Posts

Showing posts from July, 2015

Reading analog input with ADS7830 ADC (I2C)

Image
i have ads7830: http://www.ti.com/lit/ds/symlink/ads7830.pdf for testing made simple circuit: but 0 or 255. code: code: [select] #include <wire.h> #define addr 0x4b // ads7830 i2c address void setup() {   // initialise i2c communication master   wire.begin();   // initialise serial communication, set baud rate = 9600   serial.begin(9600);   delay(300); } void loop() {   unsigned int data;   // start i2c transmission   wire.begintransmission(addr);   // channel selection   wire.write(0x08);   // stop i2c transmission   wire.endtransmission();      // request 1 byte of data   wire.requestfrom(addr, 1);      // read 1 byte of data   if (wire.available() == 1)   {     data = wire.read();   }   // output data serial monitor   serial.print("...

problems with Acrobat 7.0 Browser document / close a document

hi, i'm trying write application in c# let preview pdf doc , print them. this, use acrobat 7.0 browser document control have problems it: i have grid doc titles , when select 1 of them, want preview in control , print docs check. the problem control freezes when i'm go 1 doc one. also, when want print them (with loop on grid: foreach line in grid pdrbrowser.printallfit(docname);) the print command doesn't work, nothing printed or first doc. i think because doc locked acrobat process, don't know how close it. don't want kill acrord32.exe process because open pdf doc acrobat reader @ same time. More discussions in Acrobat Reader adobe

"BestReporting70,Bold."

i error when pdf created sage fas created. looks fine on host computer when email , open font error , fonts replaced circles , giberish. did notive file created acrobat 3.0 seem build fas. pc have acrobat 7 pro updates. strange thing can see file fine in vista preview , opens foxit reader not acrobat. ideas? safe font: cannot find or create font,"bestreporting70,bold." help.... http://cdn.bestsoftware.com/ftp/fasproduct/fasmisc/fasfontspack.zip that should solve bestreporting70,bold problem More discussions in Acrobat Reader adobe

Reader 8.1.1 Hard Freezes Vista

i have current reader 8.1.1 (checked updates) , vista home. not long after installing reader, double click open pdf, reader come up, display file. then, cursor disappear , mouse , keyboard locked. vista appears locked. power off reset option. no log files of sort generated. did not occur every time opened pdf's; sporadic event. did not occur same pdf file. removed , downloaded , re-installed reader. ok while problem has returned. did 'repair' in c/r programs verify if did due periodic problem. deleted files in temp folder also. any clues begin debug this? or has had similar problem? i had different crash when 8.1.1 updated. proved 8.0 works (i reinstalled) , when adobe updated - crash came back. have 8.0 still around? More discussions in Acrobat Reader adobe

Using timer2 problem

Image
hi, i trying use timer2 on arduino uno having unexpected behaviour understand , fix. have attached library have created , have been using. basically problem lies when trying set timer period using either enabletimerinterrupt(void (*isr)(), unsigned long microseconds=0) or enablepwm(uint8_t pin, uint8_t duty, unsigned long microseconds=0) functions. setting microseconds 2000 or less, resulting period close enough target value. however cannot seem higher that. example if try set microseconds 4000 or more, end period of 2ms or less!  any ideas on what's gone wrong here? quote any ideas on what's gone wrong here? code: [select] #define resolution 256    // timer2 8 bit resolution*prescaler in setperiod defaulting integer , overflowing. try code: [select] #define resolution 256ul    // timer2 8 bit Arduino Forum > Using Arduino > Pr...

Virtual Reality Fan controller

Image
hi all. i have vr headset, , number of games/sims (racing, rolleroaster, etc) working great. i've stuck desk fan in front of me couple of times, makes incredible difference whole vr experience, pretty clunky , weird.. want create small bank of fans (computer case fans probably) speed controlled according data coming various games. i have checked, , games want plug in have api's available (rest style api's). i'm ok coding, haven't done before, not sure feasability, or sort of hardware need create controller. my initial thoughts can create controller arduino listens on usb interface number (1-100 or similar), , controls connected fans using pwm according value. need create piece of middleware read data rest api's, extract (and convert/scale) velocity data, , send on usb interface controller. not elegant solution, lot of api's different, think that's best way. in terms of physical hardware, thinking like: 3 x 12v pc fans (like https://www.jaycar.c...

Arduino UNO + shield YUN dragino 2.4v

Image
hola, tengo un arduino uno y monte encima una shield yun dragino 2.4. el tema es que inicio el yun, configuro la red wifi, hasta ahi todo bien, al momento de subir algún sketch no lo carga. desconecto el shield, pruebo el uno solo y no funciona. me quemo el micro. en la pagina de dragino http://wiki.dragino.com/index.php?title=yun_shield ; dice por lo que entiendo que no se necesita poner ningun jumper, ni en el uno, ni en el yun 2.4. el arduino uno lo estoy alimentando con 12v cc, medidos con un tester. que error estoy cometiendo que se quema el microcontrolador del uno? tenia un repuesto del microcontrolador cambie el quemado y el arduino uno volvio funcionar. lo queme haciendo la segunda prueba... >   : '( no conocía el shield pero veo esto no entiendo, dices tener un shield dragino 2.4 tu escribiste quote el arduino uno lo estoy alimentando con 12v cc, medidos con un tester. donde lo alimentaste con 12vcc?  tal vez te ha pasado como va...

Error black & white printing

hi, we have networked printer set default black , white. works in applications except acrobat 8 or 9. when user prints using acrobat print comes out color, when ensure black , white radio button checked. how acrobat not override selected settings , print pdf's in black , white? thanks in advance, lottar lottar...you might try clicking on advanced button in print dialog , checking let printer determine colors. not sure if work try. luck! More discussions in Acrobat Reader adobe

Very urgent problem - Joomla! Forum - community, help and support

Image
dear guys, i have xhtml suit editor in joomla website , refusing load make content made searches didnt got useful results against issue please let me know if there possible solution. this urgent problem need start content making website.this problem persists ie mozilla. i attaching screenshot more details please refer it. please try find solution asap worried problem. thanks in advance, sam. hii did try editor jce .. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

RF24::write returns incorrect boolean

i using unos, , nrf24l01+ pcbs red wings power supply units.  there 1 master board communicating 1 slave.  slave has subroutine code: [select]    // dummy process simulate being done slave    bool dummyprocessa()    {     // define confirmation message sent     char confirmation[3] = { 'x', currentcommand, slavenumber };         serial.print( "process " );     serial.print( currentcommand );     serial.println( " running" );     // something     ( int = 0; < 20; i++ )     {       serial.print( 'a' );       delay( 250 );     }  //  end for     serial.println();     radio.stoplistening();     if  ( radio.write( &confirmation, sizeof( confirmation ) ) )     {       serial.println( "confirmation s...

LoopStatistics

loopstatistics created terry myers jan 2016 v1.0 calculate average, minimum, , maximum loop time in order determine performance of code functions : call loopstatistics.tick(bool print==false) once , once each loop.      set print 1 automatically call printstatistics once second float loopstatistics.avg() return average loop time in ms calculated during last 1 second interval float loopstatistics.min() return fastest loop time in ms recorded during last 1 second interval float loopstatistics.max() return slowest loop time un ms recorded during last 1 second interval uint32_t loopstatistics.loopspersec() number of loops occured during last 1 second interval      tip: call once second or so, or pass in 1 tick(). void printstatistics() - prints of above serial monitor note: function technically interferes calcluating loop time without function. when printing statistics serial monitor takes 2.5ms https://github.com/terryjmyers/loopstatistics.git ...

YUN USB Port wont work, but works with UNO

i working yun quite time. one day yun stopped showing usb port or com port. working on 'yun relayr'. i tried uno, port works fine. i tried reset 32u4 pressing reset button twice, @ time com port detected few seconds , not seen. if click wifi symbol on laptop see 'linino90a2daf31aad'. i know yun board fine not working. have no idea of whats happening. please help, thanks in advance Arduino Forum > Products > Arduino Yún (Moderator: fabioc84) > YUN USB Port wont work, but works with UNO arduino

template forslag - Joomla! Forum - community, help and support

Image
jeg skal måske lave et site til en herregaard - søger en købe template som udviser stil, elegance, klasse, luksus, kvalitet etc. nogen der sådan lige har et godt bud, @ de har set sådan een blandt de mange købe-template leverandører (eller som jeg kan tilpasse til behovet) jeg har kigget på mine standard leverandører, men føler mig ikke sikker på hvad jeg skal vælge....så gode råd er velkomne ! Board index Joomla! International Language Support International Zone Danish Forum Ældre versioner (disse vedligeholdes ikke længere fra officiel side) Joomla 1.0 (Udgået version, der blev afløst af 1.5 i 2008) Template, CSS og Design

Component template disaster. - Joomla! Forum - community, help and support

Image
hi, i have no idea of mess...all of 3rd party components (rsgallery, fireboard, docman, etc) template gone disorderly. i don't know when starts this, realize after turn off safe mode , installing pcchess. the next weird thing owner of pcchess files , folder apache. anyone please....help me... i'm pretty sure won't able being pretty ignorant myself, know need give more information or link site people know what's happening. Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

Thread: Not Connecting to Printer

hi guys, printer isn't being recognized ubuntu, did before re-installed ubuntu...actually, don't know when printer stopped being recognized, first time while have tried print something. can do? what kind of printer , how connected computer? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Not Connecting to Printer Ubuntu

After Installation - Intro Text in WYSIWYG Editor causes JavaScript Error - Joomla! Forum - community, help and support

i installed joomla 100th time or , first time i've ran issue. after fresh installation, anytime go sample content items, items become locked , can't edit them. intro text box under content pages not let type in them , causing javascript error now. extracted out of joomla zip file. have no mods added yet either. the javascript error is: line: 3175 char: 5 error: access denied code: 0 url: http://www.mysite.com/administrator/ind ... om_content should attempt reinstall? not sure why it's giving me access denied error. check address have in configuration.php using when access administrator backend must match Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

How to Backup.... - Joomla! Forum - community, help and support

Image
help i need move joomla 1.0.8 website hosting company doesn't use joomla , i've never used joomla before. how backup local system joomla 1.0.8 site (there isn't backup icon on control panel) and there instructions on making non joomla website somewhere? thanks sandy if want make joomla site, non joomla have lot of work need rewrite php. also database driven data in databases need extracting i believe case , knows more along shortly. Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

HD rendering

if wanted produce hour video put on internet , want 1 gig in size, better film in hd , compress or film in vga? produce better quality? one hour of "dvd quality" standard definition video in mpeg-2 format going "about" 3 gigs one hour @ 1 gig not going high quality, or have reduced screen size film in sd , select 1 of highly compressed codecs output one hour of dv-avi (sd format) 13 gig before editing More discussions in Premiere Elements adobe

DC Voltage Measurement

how can read dc voltage of appliance using acs712 current sensor? why want use current sensor measure voltages? academic question no practical use? you can measure voltage connecting 2 points resistor , use current sensor measure current flowing through it. doesn't make sense in cases , may distort measurement because stolen current may alter voltage. Arduino Forum > Using Arduino > Sensors > DC Voltage Measurement arduino

Thread: installing cairo dock 2.1.2-4

the latest .deb able find 2.0.9, i'd install 2.1.2-4. website found: http://developer.berlios.de/project/...?group_id=8724 i'd appreciate if tell me find deb, or tell me how make gettext work when run code: autoreconf -isf it available in launchpad. terminal do: sudo -v echo "deb http://ppa.launchpad.net/cairo-dock-team/ppa/ubuntu $(lsb_release -sc) main ## cairo-dock-ppa-stable" | sudo tee -a /etc/apt/sources.list sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys e80d6bf5 sudo apt-get update sudo apt-get install cairo-dock hope helps. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] installing cairo dock 2.1.2-4 Ubuntu

Sun LED Lamp

Image
hi all. i'm new arduino thing, "hardware" guy, as hate it. on electronics side of things i'm ok thought take plunge , learn code micro. anyway, project have in mind going simple experienced im sure. basically, i'm after having led fade on over period of half hour when input pin made high. , stay on until input pin becomes low , led fade out again on period of half hour, , that's it. it sounds simple hunted high , low on both forum , google , surprised couldn't find anything. if need electronic things, can out. thanks if can help. in mean time arduino book bought see if can inspiration. quote i hunted high , low on both forum , google , surprised couldn't find anything i doubt - surely did find - maybe not wanted, of found something.  why not try write code based on blink without delay example , fading example. hint : there 255 x 7 seconds in half hour Arduino Forum ...

Thread: How do I patch Ubuntu?

i found patch 1 of problems had ubuntu, i'm not sure how put on. so... how patch ubuntu? also, know i've posted before don't know thread went. forgot bookmark it. if answer question again or give me link other thread, i'd appreciate it. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] How do I patch Ubuntu? Ubuntu

Varying DC Motor speed causing unusual outcome

Image
recently, have encountered problem mobile application controls dc motors. dc motors not follow have programmed. example, when set delay(500), provides me delay longer have programmed. after troubleshooting, realized problem lies motor speed have set. instead of setting motor @ full speed (motor->setspeed(255) , set motor @ half speed (motor->setspeed(127) . does know possible reasons this? suspecting dc motors need higher requirement voltage if set motor @ full speed. however, when increase voltage input arduino, gives me same problem. thanks in advance! without knowing how have things connected, motor using, how current motor draws, power supply using, whether arduino , motor have separate power supplies, it's bit difficult give suggestions!!!!! paul Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) ...

Thread: Can't Connect After Using NDISWrapper

my wireless card (an atheros ar928x) not performing well. @ suggestion of friend tried use ndiswrapper (using ndisgtk gui interface) see if windows driver work better. found xp drivers online, tried several versions and, after none worked, decided might settle crappy quality of linux driver , let go. sadly, may not possible. removed drivers (again via ndisgtk) , laptop can't use card @ all. won't detect networks (even when 5 feet router) , i'm not sure what's causing this. i've tried rebooting , rebooting older kernel. checked lspci , still recognizes card. idea what's , how fix it? well, seem have fixed issue (sort of). got same windows xp drivers on computer , brought them 1 via flash-drive. after trying ndiswrapper again seems have fixed issue after reboot. driver doesn't seem better 1 had (in fact, have hunch it's same one) works @ least. if can still come reason is...

luz led para mi acuario

hola amigos, soy nuevo en este mundillo del arduino y me defiendo menos que medias. la verdad es que no se si lo que estoy haciendo esta correcto o no. mi proyecto es el siguiente:necesito tener 100 led de 5x9 blanco de alta luminosidad encendiendo poco poco durante 14 horas y luego que se valla desvaneciendo hasta apagarse y que este apagado durante 10 horas . en este momento entra encender 20 led de 5x9 azul de alta luminosidad durante 10 horas hasta que enpieza de nuevo el ciclo. lo e hecho, paro no se si el delay que le e puesto sera mucho y no llegara funcionar bien o por lo contrario es así. las 14 horas pasado milisegundos son= 50400000 en el delay ,y las 10 horas son =36000000 en milisegundo es es el skecht. si me podeis ayudar os lo agradezco code: [select] int valor = 0; int ledpin =11; void setup() { pinmode(12,output); } void loop(){ for (valor =0; valor < 255; valor+=1) //con la rapidez que enciende { analogwrite (ledpin, valor); delay(3500);    //lo ...

Can Functions Free up Memory Space?

     i wrote long , inefficient code takes 97% of storage stage on arduino nano , 34% of dynamic memory. code works, i'm trying make code more efficient save on memory space. there number of sections of code replace functions, after attempting replace of code functions, seemed didn't save space. are functions make programming easier don't have retype same part on , over, or replacing sections of code function call save space? i'm not sure compiler perspective, if replacing code function call save memory. in advance! for example, wrote 80 functions. 1 such function (below) blinks led's , moves servo motors music, function alone takes ~6% of memory space. write function turns lights on "darkturquoise" , call function 3 times instead of writing 3 loops. code: [select] void scene49()///////////////////////////////will rock you {   int loop1 = 0;   initialize_variables();   startsoundinbackground(48);   delay(800); ...

Thread: mount point no longer works for 2nd ext3 drive

64-bit ubuntu added fstab according instructions; /dev/sdb1 /media/drivename ext3 defaults 0 2 working before today. no longer mounts. did update evening , not sure if worked before that, since wasn't using machine. had running. me please!? more info; error message error mounting: mount exited exit code 1: helper failed with: mount: root can mount /dev/sdb1 on /media/drivename Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] mount point no longer works for 2nd ext3 drive Ubuntu

SOLVED: getting ™ ® or © to show correctly in title of content - Joomla! Forum - community, help and support

having serious problem here..... the site building going have approx. 1500 articles.  99% of them need ™,© or ®  in title.  getting ? instead of required symbols.  show fine in content itself, not showing in title. searched high , low, cannot figure out answer.  please help. thanks edit: actually solved adding template " /> two things, first make sure encoding correct. done inserting meta tag so: code: select all <meta http-equiv="content-type" content="text/html; charset=utf-8" /> .. in heading of site. can insert template. second, make sure symbol in html coded such: code: select all copyright = © rights = ® tm = #8482; Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Uhrzeit auf Webseite

hallo, ich betreibe den arduino als webserver für eine temperaturanzeige. das funtioniert auch. dazu möchte ich noch die aktuelle zeit darstellen und da beginnen die probleme. code: [select] static word homepage() {       strzeit = (fctgetcurtime());       bfill = ether.tcpoffset();       bfill.emit_p(pstr(         "http/1.0 200 ok\r\n"         "content-type: text/html\r\n"         "pragma: no-cache\r\n"         "\r\n"         "<meta http-equiv='refresh' content='10'/>"         "<title>tempanzeige</title>"         "<h1>dht11 sensor</h1>"         "<br>"         "<h2>temp aus ds3231: $d °c</h2>"   ...

Thread: Made a mess of Karmic's sound

so, start @ beginning, had upgraded jaunty install karmic 1 on hp laptop intel hardware. worked fine, sound, peripherals, compiz, that. messed doing unrelated fiddling around, , had clean install. after that, had sound problems (and compiz problems, first things first, , need own thread elsewhere anyways). first, had no sound headphones @ all, , there no option under sound preferences turn on headphone jack detection, set script manually each time log in, using preferences> startup applications. it: #!/bin/bash amixer -c 0 sset 'headphone jack sense' unmute this worked in turned on headphones, plugging in headphones didn't (and still doesn't) turn off speakers, giving sound in both places @ once. while trying fix this, tried reinstalling alsa packages synaptic, , when didn't work, tried this: http://ubuntuforums.org/showthread.php?t=1046137 , didn't seem have effect. tried switching alsa o...

Suggestions for extensions/configurations? - Joomla! Forum - community, help and support

hi everyone, i've looked through quite bit of stuff on joomla can't seem find i'm looking for. basically, i'm making site similar 1 exists, , hoping use joomla automate content archiving, etc. site i'm emulating one: http://www.viceland.com/int/dos.php?country=us i'm posting photos in place of regular news stories, need create archive page one, , display random thumbnails of pictures when viewing individual post (just site well). i've seen image gallery , random image components joomla, seem geared towards making slide show or similar, whereas need work newsportal, news story being picture itself. i'm hoping has ideas on components, configurations, themes if know of similar site in concept. , insanely appreciated! thanks! Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x

Overriding Joomla Error class - Joomla! Forum - community, help and support

ls, i write own error handling class , extend current error class joomla. meaning extend class ability log errors within log host (configurable) or log errors within local logfile or database. easy error / bug tracking since need in stages of deployment of our applications on j!1.5 framework. can track bugs within joomla framework , bugs within our own extensions. the whole part configurable, example depending on type of error must able send on email specific address. for override know can write own plugin (see example below) how can override , extend j!15. error handling object. code: select all <?php // check ensure file within rest of framework defined('jpath_base') or die(); class  plgsystemcustomerrorinitiatior extends jplugin {        function plgsystemcustomerrorinitiatior (& $subject, $config) {       parent::__construct($subject, $config);    }            function onafterinitialise() { ...

Login modul genom e-post - Joomla! Forum - community, help and support

Image
tjena  jag undrar om någon har sett en login modul som fungerar enligt beskrivning nedan: en redan registrerad användare skriver sitt användarnamn och trycker på "ok" knappen ett brev sänds till den registrerade e-post adressen med ett tidsbestämt och slumpat lösen ord användaren fyller sitt lösenord samt det slumpade lösenordet för att kunna logga in därefter. (får gärna innehålla en sms funktion  ) tyvärr tror jag att det blir till att skapa själv... får man fråga varför du behöver detta tillväga gångs sätt? det kanske finns andra sätt att lösa det på? Board index Joomla! International Language Support International Zone Swedish Forum Äldre versioner Forum Joomla! 1.0 Komponenter, moduler och Mambots

Setup in einer Methode (cpp mit h - Datei)

hallo zusammen, kann man einen setup in einer angelegte cpp datei anlegen? ich möchte gerne bspw. die blink funktion auslegen. dabei sollen die pin (wenn es der gleiche ist) nicht jedes mal erneut initiiert werden um ressourcen zu sparen. viele grüße stylophonics nunja, da bietet sich an, deine klasse mit einer init() oder begin() methode zu versehen, und diese in der richtigen setup() aufzurufen. alternativ, kannst du deine pin definition/deklaration in einer *.h datei machen. Arduino Forum > International > Deutsch (Moderator: uwefed) > Setup in einer Methode (cpp mit h - Datei) arduino

Backup file flagged as backdoor ?? - Joomla! Forum - community, help and support

Image
i trying extract template's index.php desktop, , pc tools spyware doctor flagged backdoor!  backdoor.thunk.e exact, high vulnerability.  see attached picture. http://www.pctools.com/mrc/infections/i ... or.thunk.e does mean: a. archive tainted backdoor, , if point webhost being infected (!) b. site infected same backdoor ?? c. false alarm?? wait running windows server...  *lol* yeah tainted. Board index Joomla! Older Version Support Joomla! 1.0 Security - 1.0.x

Thread: Weird glitch when selecting items

Image
hi everyone, i've had glitch 4 or 5 times now, , thing can press alt+f4 while, restart. glitch is, when i'm typing stuff on browser google chrome, suddenly, mouse can select stuff, , can't leave selection. also, left click nothing! can right click anymore not left click. if hover on applications mouse still overview in yellow text square, cannot left click in state ... i'm using ubuntu 9.10, effects & compiz enabled. if same bug in several applications, blame operating system. (reboot.) if bug in 1 application, blame application. maybe try chrome forums . Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Weird glitch when selecting items Ubuntu

Thread: HELP!!!! please...

ok...so have ubuntu 9.1 (amd x64 version) , i'n dual booting w/ win7 downloaded splash screen manager(or that) , 'added' jpg image , restarted computer right after select ubuntu in grub screen goes black , there few words stays black , nothing happens...i have no idea why happening. changed few things in start manager not sure if cause anyway. can do?? change back. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] HELP!!!! please... Ubuntu

File is damaged or cannot be repaired

i have adobe reader on vista os. when try open pdf file, either message states must exit adobe , when click "ok," file opens. however, on occasion, i'll following error message in cannot open file , blank adobe window opens: "file damaged or cannot repaired." has experienced similar problem? solutions? thanks. i had same problem adobe reader 7, vista os. downloaded adobe reader 8 , tried open file again, , got same error. noticed file size 0. finally, downloaded pdf file website again, , able open pdf file adobe reader 8. had same problem 2nd file. repeated above steps: downloaded file again, , opened adobe reader 8, , able read it. More discussions in Acrobat Reader adobe

i2C question on Wire.onRequest()

Image
hello. knowledge wire.onrequest() allows send send data master on request. if want request 2 different types of data? for example, master request slave 'ok' on start up. after that master request again slave input data. code: [select] void startuptest() {   wire.requestfrom(8, 4);   while (wire.available())   {     char starta = wire.read(); // receive byte character     serial.print(starta);         // print character      } } void requesta() {   wire.requestfrom(8, 6);   while(wire.available())   {     float = wire.read();     float displaya = / 255;     serial.print(displaya);   } } void loop() {   startuptest();     while(1){     requesta();  } } was wondering if above code work? therefore question is, how let slave know difference between first request , other request? no, because not compil...

Nano and the M590E communication problem

hi! i bought neoway m590e , cannot make code understand saying. i'm using this: code: [select] #include <softwareserial.h> int gsmtx = 3; int gsmrx = 17; softwareserial myserial(gsmrx, gsmtx); // rx, tx void setup() {   serial.begin(250000); // com setup   myserial.begin(115200);  //baud rate of gsm/gprs module } void loop() {   if (myserial.available()) {     serial.println(myserial.read());   }   if (serial.available()) {     myserial.println(serial.read());   } } all in serial monitor bunch of 0's. tried different baud rates, didn't work. have idea what's wrong? using logic level converter between modem , arduino. have grounded both gnd pins (they might not connected need joined, grounding 1 might issue) , boot pin (and of course joined grounds arduino)? software serial @ 115200 shaky sometimes, not push there. 38400 better - start @ 9600. if have usb serial unit, use , termina...

Adobe 9 opens PDF online only in admin account

okay, strange , i've tried last 2 days figure out:) easy overlooked. happens... it not pdf docs don't display. do. there's military web site view fitness reports downloads , displays pdf docs in admin mode. when click on pdf document in user account opens new page , appears downloading pdf displayed. then, browser displays blank white page , says "done" in bottom status bar of browser. when i'm in admin account... opens no questions asked. this have done far. have tried unchecking "display pdf in browser", uninstalled 9.0 , reinstalled, uninstalled acrobat(have not reinstalled), uninstalled 9.0 , installed 8.1.3, deleted 2 registry folders adobe recommends , repaired it... i believe that's i've done far. there access problem? maybe plugins? i'm positive user account has adobe plugin because can open other pdf docs web no problem... i'd appreciate advice. havn't read many problems 1 out there. posted problem on experts exchang...

Easiest way to display queries from a custom database - Joomla! Forum - community, help and support

i have data given me weekly in xls format.  want able show aspects of table on site depending upon user's choice.  instance, if selected "surgery", rows , columns table displayed.  if user chose pediatrics, then, rows , columns table shown.  a second different query (unrelated first) display elements each table in database satisfies condition, such options display procedures performed, procedures assistant, or, procedures observed.  i'm medical student , logs our procedures.  want users able see logs specialty procedures performed, though aren't in same specialty (and have own table).  know little sql , hoping component or tutorial on issue. thanks! Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

JEvents preview problem - not authorized - Joomla! Forum - community, help and support

Image
hello. using latest release of jevents , works fine, in admin, preview button not work.  when logged in backend super administrator, message "you not authorised view resource".  how can fix this? by way, great spelling errors "authorised" corrected.  makes me retarded clients thanks! i've never noticed before, @ it, seems there isn't preview facility jevents! - effectively, there's dummy button. that said, if find '/administrator/popups/contentwindow.php' , comment out lines 34 , 35, preview.  not sure if it'll quite you're looking or not, give try. and fyi, 'authorised' correct, it's british english, not american english.  perhaps if explain clients won't retarded  good luck! simon Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

Page not found message, but site can be seen....weird - Joomla! Forum - community, help and support

hi there, something weird has happened client's site. message on pages appears: "not found" page.... cannot found on server... but weird thing site can seen. has happened , have no clue why. could give me hand this?? thanks http://www.kundaliniyogavigo.com did change in first position on mainmenu? default, in first position on mainmenu home page. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

coup de main sur aix les bains ou alentours.

salut à tous. pour un projet sur du matériel de plongée un collègue ma offert un arduino micro avec le livre en me disant que se serait la solution à mes problèmes. sur le papier oui et au début j'ai appris plein de petite chose et évidemment quand j'ai compris le potentiel j'ai énormément fait évoluer le projet. j'ai commencé à programmer les premières fonctions puis mon collègue est venu plusieurs fois m'aider mais il n'est que très peu disponible. aujourd'hui les fonction de base fonctionne et le protos à bien avancé. mais il me manque une ou deux fonction de surveillance que je n'arrive pas à programmer et je voudrais savoir si quelqu'un serait intéressé pour venir me filler un coup de main? je peux aussi me déplacer dans un périmètre raisonnable et je suis près évidemment à discuter d'une rémunération en apéro ou autre...  il doit y avoir 23= ou 3 heures de job pour un pro... par avance merci pour votre aide. cordialement max ...

Help! Multiples attempts at installing and I'm unable to view pdf's

i've attempted install 8.1.2. on windows xp , continue error messages below: when try open pdf, first following: adobe reader: acro32.exe - unable locate component the application has failed start because usp10.dll not found. re-installing application may fix problem. i click ok , following message: adobe reader invalid plugin detected. adobe reader quit. then file closes. in 1 attempt reinstall, received error message defragment c drive , repair in add/install programs under control panel. did not work. attempted install on alternate drive. defaulted c drive (defragment issue in c). any fixes????? More discussions in Acrobat Reader adobe

rockettheme - Joomla! Forum - community, help and support

hej, jeg kunne godt bruge et templates fra rockettheme.com, men jeg er lidt tvivl om hvordan medlemsskabet virker pga. mine engelsk kundskaber! det templates jeg skal bruge er til en side som ikke er min ........ så vidt jeg forstår er et 3 mdr. medlemsskab ikke nok, da jeg så ikke kan bruge templates efter det er udløbet - er der korrekt? men vist jeg vælger 1 års medlemsskab , så kan jeg bruge templates efter, @ medlemsskabet er udløbet - er det også korrekt? vist overstående er rigtig, så skal jeg vælge så vidt jeg har forstået det - 1 årsmedlemsskab eller hvad? hilsen per hvis siden ikke er din, må du ikke bruge dit medlemsskab til @ købe templaten. det kræver et pro medlemsskab der koster 250 $ hvis du vil bruge templaten på en side du ikke selv ejer. når medlemsskabet udløber må du stadig bruge templaten. Board index Joomla! International Language Support International Zone Danish Forum Ældre ver...

How do I install the latest nightly build? - Joomla! Forum - community, help and support

i downloaded 1 of templates 1.5 template contest, , when didn't work, told need update latest nightly build.  i'm not sure how that, though.  i went page http://dev.joomla.org/content/view/17/60/ , downloaded zip file under option 3.  what?  upload joomla directory on server, have replace , re-install?  or there else i'm supposed that's quicker , easier? try newly released rc3 size first of all. andy Board index Joomla! Older Version Support Joomla! 1.5 Installation 1.5

Interpretazione dei dati letti da sensore TMP36 e conversione in gradi Celsius

buongiorno tutti. mi chiamo antonio, ho acquistato da poche settimane lo starter kit di arduino uno e ho incominciato fare primi esperimenti. il mio esperimento attuale consiste nel rilevare la temperatura con un sensore tmp36 e mostrarla sul display lcd incluso nel kit. piedini esterni del sensore sono collegati all'alimentazione e massa; quello centrale è collegato al pin a0 di arduino. quindi ho usato lo sketch descritto nel manualetto che sto leggendo, di cui riporto la parte saliente: code: [select] int temp = analogread(a0); serial.print("valore sensore: "); serial.print(temp); float volt = (temp / 1024.0) * 5.0; serial.print(", tensione: "); serial.print(volt); float temperatura = (volt - .5) * 100; serial.print(", gradi c: "); serial.print(temperatura); serial.print("\n"); delay(2000); per prima cosa non mi è chiara la conversione dal valore letto dal pin a0 alla temperatura finale. mi spiego: a0 legge un valore compreso tra...