Posts

Showing posts from September, 2012

Wav from SD Card - reproduction very very poor

hi there - hoping can i've been struggling while.  couldn't joy out of sdcard module, i'm running ethernet shield micro sd card. i have wav file formatted 8-bit unsigned, 8000khz, mono. (using http://audio.online-convert.com/ tool). connected speaker between pin 10 , gnd (code below) when load sound play speaker, best @ volume "4".  if volume sounds clips horribly.  if lower volume can hear flickering rumble (rumble replicating flashing led on ethernet card, prob around 6hz).  also, if connect powered pc speaker rather blank speaker, sound goes entirely robotic sounding mess causes sound fail entirely. i can't believe else getting, must doing fundamental wrong - got ideas?  frustrating me... the 2 main issues are; quality of unpowered output - rumbling interference @ low vol, bad clipping above 5 not working powered pc speakers - sounds random digital signal btw  - have tested pc speakers , work fine playing same sound fi...

NTC like KY-013 but with 100K

Image
hello everyone, i trying make use of sensor looks ky-013: as mentioned in other threads, pins wrong labeled. using multimeter figured left (labeled s) signal (voltage divider) middle gnd right (labeled -) vcc the example code ky-013 (wich can found on several websites) throws out negative values (in right range) , heat ntc displayed temperature decreases , vice versa: code: [select] #include <math.h>   int sensorpin = a5; double thermistor(double resistance) {   double temp;   temp = log(resistance);   temp = 1 / (0.001129148 + (0.000234125 * temp) + (0.0000000876741 * temp * temp * temp));   temp = temp - 273.15;   return temp; }   void setup() {  serial.begin(9600); }   void loop() {  int readval = analogread(sensorpin);  double  resistance = ((10240000/readval) - 10000);  double temp =  thermistor(resistance);  serial.print(temp);  // display tempature  serial.print(" c  ...

How can my users add content using a custom form instead of the 'submit news' - Joomla! Forum - community, help and support

hi, is there way can enable site users (after making them authors of course) submit content joomla site using custom form instead of default "submit news" page. i have made form using phil-a-form , has made own table in database. thing want achieve have content submitted through form registered users automatically published under specified category , also have article automatically added front page in latest (top) position. (much forum). any suggestions please ? thanks, arjun. hi arjun, take @ extension: http://extensions.joomla.org/component/ ... itemid,35/ Board index Joomla! Older Version Support Joomla! 1.0 Administration - 1.0.x

sensor ir

hola, soy nuevo en esto y en mi medida de lo posible me gustaria aportar todo lo que pueda, quisiera preguntar una duda que tengo, tengo hecho un sensor de obstaculos pero en la oscuridad me mide menos de lo esperado, si le pongo un led ir de 10 mm aumentara la medida?gracias y saludos especifica el sensor y el esquema utilizado. lee las normas del foro . usa tags para imagenes, enlaces y códigos, no lo olvides. Arduino Forum > International > Español (Moderators: surbyte, Hector_A) > sensor ir arduino

Cannot Open Adobe Reader 9

i have spent better part of 3 days trying follow threads fix problem. of suggestions invlove opening reader 9 , , that. using windows vista ( detest) , cannot open reader 9. window says "windows has detected internal error." no further instructions, no error number, no nothing. i have gone adobe support site reader. tho registered application, did not locate pw. id e-mail when go "forgot pw" page, , enter id, says step one, page keeps saying id , pw not match, why @ page begin witrh. frustrating. @ proverbial "catch 22" situation , pulling hair out. i cannot open e-mail attachment sent in adobe ( 95% of them are), cannot begin fix problem because cannot open reader 9 , cannot contact tech support because not allow me retrieve pw. help!!!!!!!!!!! can check event viewer (applications) if can find more info on "internal error"? what try in situation *uninstall reader 9 *download , install reader 8.1.3 http://get.adobe.com/reader/otherversions...

How to pass multiple words as a search argument on the Acrobat Command Line?

i trying launch acrobat using multi-word search parameter on windows xp box. however, acrobat stripping spaces between words. example, trying load acrobat , have search phrase "vision changes" using command line this: c:\>"c:\program files\adobe\reader 8.0\reader\acrord32.exe" /a search="vision changes" c:\temp\thedocument.pdf when acrobat loads, shows search panel phrase "visionchanges" in it. space between 2 words gone , naturally can't find phrase. i have read both pdf command line parameter documents find. format works fine urls, shelling acrobat on local system, doesn't work because of space stripping problem. have tried lots of different variants of quote characters, escape characters, html characters "&nbps;", nothing works. does have answer? for curious here links 2 pdf documents found cover command line arguments: http://www.adobe.com/devnet/acrobat/pdfs/pdfopenparameters.pdf http://www.adobe.com/devnet/acr...

arduino to android interfacing

iam working on project in when button pressed on arduino should connect smartphone , should read values when button pressed ? iam confused use bluetooth or cloud ..can pls suggest how tackle problem ?? all androids have bluetooth, , obvious thing do. think problem rests appropriate android app. imply arduino doing controlling, suggests android has listen command , act on it. other way round. Arduino Forum > Using Arduino > Project Guidance > arduino to android interfacing arduino

Thread: If I use one home folder for OSX and ubuntu will there be problems

if use these instructions convenient to avoid nasty conflicts you'd want have separate user accounts on each system. it's not you'd sharing exact same folders. might easier create shared data partition. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] If I use one home folder for OSX and ubuntu will there be problems Ubuntu

Thread: Triple Boot before Win7 Upgrade

hi there! received new laptop (lenovo t500) , came vista , free upgrade option ordered already. install ubuntu 9.10 , fedora 12 besides win7. here questions: 1. can install ubuntu , fedora before upgrade win7 (it shipped within 1-2 weeks) or should rather wait? 2. have 4 partitions: 1 each os , 1 file storage. 160gb hard drive, partition sizes reccommend? 3. in order should install os's , how do exatly. (my experiences: have installed ubuntu once os , later added winxp.) Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] Triple Boot before Win7 Upgrade Ubuntu

ir receive code blocked by bt serial how to fix?

my receive code blocked when connect bt serial code. how program ir receive code works in harmony bt serial? #include <irremote.h> #include <adafruit_neopixel.h> #define pin 6 adafruit_neopixel strip = adafruit_neopixel(11 * 1, pin, neo_grb + neo_khz800); irsend irsend;//tx, rx respetively string readdata; int vspeed = 100; int recv_pin = 2; irrecv irrecv(recv_pin); decode_results results; void setup() {   serial1.begin(9600);   strip.begin();   strip.show();   serial.begin(9600);   irrecv.enableirin();   pinmode(12, output);   pinmode(10, output);   pinmode(5, output);   pinmode(11, output);   colorwipe(strip.color(0, 0, 255), 10); } //-----------------------------------------------------------------------// void loop(void) {   while (serial1.available()) { //check if there available byte read     delay(10); //delay added make thing stable     char c = serial1.read(); //conduct serial read ...

Connect Arduino DUE with Arduino MEGA

can communicate arduino due arduino mega exchange data? ask because due operates on 3,3 volt , mega operates on 5 volt. question if use spi between them work on 3,3 volt or 5 volt? https://learn.sparkfun.com/tutorials/bi-directional-logic-level-converter-hookup-guide i believe can stick logic level converter in between them. Arduino Forum > Using Arduino > Programming Questions > Connect Arduino DUE with Arduino MEGA arduino

Where has that sexy shopping cart extension went? - Joomla! Forum - community, help and support

Image
hello, a number of weeks ago when browsing shopping cart extensions found 1 looked brilliant - though looks has been removed. unfortunately never bookmarked or wrote down called. it had very nice administration interface - pinky-purple theme rounded borders , lovely icons. in description said being custom built ground joomla, unlike other shopping cart solutions. i have been through 21 shopping cart extensions , can't find it. have looked in other e-commerce categories too. does tell me , if know why has been removed? thanks. can describe looked like. version of joomla using? not call of sexy Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x

Coding around reed switch "noise"

the code writing has been designed record time takes between reed switch being turned on, , next occurrence of switch being turned on. during time, other things happening. generally speaking switch turn on , off in short space of time, however, discovered arduino cycle few times in high switch state (anything 2 - 5 times) causes degree of inaccuracy. code: [select] void loop() {   reedswitchstate1 = digitalread(reedswitch1);   if (reedswitchstate1 == high) {         elapsedtime=((millis()-prevtime));         serial.println(elapsedtime);     prevtime = millis();     //wait switch turn off     int = 1;     while (reedswitchstate1 == high) {            reedswitchstate1 = digitalread(reedswitch1);     }   }   //check other switch states , stuff... while code works, problem face if reed switch stays on high or spends large amount of time on hig...

energy meter spm91, rs485 module, protocol modbus, esp8266

did ever use energy meter spm91 , rs485 communicate arduino uno? please tell me. find error says "modbus_construct not declared". think can't find right library rs485. please me how fix . or maybe have correct library? btw. need help.. i'm not rs485 expert there long thread on similar issues starting here Arduino Forum > Topics > Home Automation and Networked Objects > energy meter spm91, rs485 module, protocol modbus, esp8266 arduino

How to get better website url appearance - Joomla! Forum - community, help and support

the joomla web urls not attractive, such al lot of digits , signs etc. have heard there solution make appear better. how, did google search failed.? thank you. vik well should search forum more. search "sef url" or that. sef stands "search engine friendly". joomla can create sef urls. in configuration must turn them on , rename or htaccess file. however, although these urls better search engines, still not good. several components can create sef urls. use artio joomsef , free 1 sh404. you'll hear of opensef, know wasn't developped, maybe situation has changed. if willing pay can go sef advance. careful if have website several components, having these kind of component rewrite urls can be  lot of work , disturbance.... good luck. Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x

pcDuino IR pin reading

hi all.. i'm new pcduino , have joined. i hoping has answer .. how read pin of ir sensor on pcduino 3 motherboard? i have external ir sensor working fine, not seem able find details on how programmable read onboard sensor. any appreciated. thanks in advance. quote any appreciated. you have not-an-arduino, did not post link to, apparently has non-standard capabilities need using. can see why can't you? Arduino Forum > Using Arduino > Programming Questions > pcDuino IR pin reading arduino

Error writing and / or reading pdf's / Office 2007

i have encountered big issues re pdf files. commonly distill pdf ms publisher 2007 using ms office 2007 save pdf add-in - had no problems until week ago when try , convert pub file distills shows blank white screen in pdf window - says alond top "adobe reader 9 not responding" also, cannot delete these files - if right click , delete opens dialogue box says "recycling" , hangs there forever - same thing happens if try move file if open folder 1 of these corrupt pdf files in, green loading bar appears along top , loads ages can please driving me crazy!!! carl i have similar problem, acrobat says there's reading error , won't display text or graphics. on this? thanks! More discussions in Acrobat Reader adobe

Monitor serie

tenho pouco bom com arduino e gostaria de saber como executar o meu código no monitor arduino série, eu sei que deve colocar serial.begin (9600); com isso eu começar comunicação e serial.println ver no monitor mas não sou capaz de trabalhar bem, pois é um longo código e gostaria de executar algumas das funções básicas código no monitor, se alguém poderia me ajudar ser apreciaria agradecemos ante para entendermos melhor seu problema, perguntas: quando diz "monitor série", penso que está falando "monitor serial", correto? quote ...mas não sou capaz de trabalhar bem... por que não? quais dificuldades enfrenta? quote ...executar algumas das funções básicas código no monitor... dê exemplos que você quer executar e quais os resultados esperados. Arduino Forum > International > Portugues > Monitor serie ...

controlling an array of 10 servos

hello all, i want control array of 10 servo motors.i using arduino mega 2560 r3 , accessing 1 servo @ particular moment code: [select] #include <servo.h>   servo absrv[10]={};  // create servo object control servo servo myserv;                // twelve servo objects can created on boards   //int pos = 0;    // variable store servo position   void setup() {  serial.begin(9600);  absrv[0].attach(22); absrv[1].attach(23); absrv[2].attach(24); absrv[3].attach(25); absrv[4].attach(26); absrv[5].attach(27); absrv[6].attach(28); absrv[7].attach(29); absrv[8].attach(30); absrv[9].attach(31);  // attaches servo on pin 9 servo object //myserv.attach(31); }    void sweep(int pos,servo lserv) {   int i;  for(i = 0; <= pos; += 1) // goes 0 degrees 180 degrees   {                                ...

Sindhi Translation - Joomla! Forum - community, help and support

Image
i want translate joomla in sindhi language, please guide me in regard whom may contact? hi zahoorsolangi - , welcome joomla! community forum  sounds great have interest in translating joomla! sindhi language. you can start translating frontend language of latest stable release 1.0.13. in folder /language can find 3 files translate: english.php, english.xml , english.ignore.php. make copy of these files , save them sindhi.php, sindhi.xml , sindhi.ignore.php when translating php-files have translate text @ right example marked in bold below: define('_language',' en '); define('_not_auth',' you not authorised view resource. '); define('_do_login',' you need login. '); when done translating, can zip 3 files in zip named like: joomla!_1.0.13_sindhi_frontend.zip when thats in place suggest create sindhi project @ http://joomlacode.org then submit translation listed in joomla! extensions directory: http://extensions.joomla.org joomla! 1.5 t...

Programming LP1768 with Arduino IDE?

hello everyone. is possible program lp1768 arduino ide? because both arduino due , lp1768 have same chip. (cortex m3) if yes , how? thanks in advance. hello, do  mean lp c 1768 ? maybe board ? https://developer.mbed.org/platforms/mbed-lpc1768/ no not arduino. , not same chip on due. share same processor architecture licensed chip designer company arm, both chips produced different companies. Arduino Forum > Products > Arduino Due (Moderator: fabioc84) > Programming LP1768 with Arduino IDE? arduino

Print dialog box hidden in background, can't print

we having problem reader version 8 print dialog box getting lost in background. running coldfusion application , users have windows xp ie 6. when acrobat print dialog box pops up, allows click on screen in background. @ point way print dialog closing every single window, including application using work, until dialog last 1 left! there no indication in taskbar dialog open, users cannot go it. application starts hanging, ie screens start blanking out, , cannot print @ point. this isn't standard windows behavior, , problem did not exist in version 7. not click on other windows until print dialog closed. there plans fix? soon? our application used statewide hundreds of state agency users. we experiencing same issue. issue did not exist 6.x versions of adobe either. fact user allowed click other windows print dialog not ideal. print dialog becomes lost (with no task bar indication) , no further pdfs open. internet explorer's print not this. adobe - please revert way before. ...

Thread: file not recognized, file format not recognized, installation, svmlight

hello uber's, can error "file not recognized: file format not recognized". background: installated ubuntu 9.10 in last 2 days. installed gnu gcc , have run .c , .cpp via gcc , g++ respectively. current scenario: downloaded svmlight.tar.gz, , extracted in /svm_light. issued "make" , executables made. downloaded example1.tar.gz /svm_light/example1, extracted (as instructed @ svmlight homepage) svm_learn called following parameters: svm_learn [options] example_file model_file //svm_learn.c exists // , svm_learn_main.c tried running example1 instructed: svm_learn example1/train.dat example1/model generates errors: svm_learn: command not found. when try gcc -o smv_learn example1/train.dat error is: example1/train.dat: file not recognized: file format not recognized. how can 1) have .dat files recognized, and 2) how can svm_learn compile (the executable there) everyone's help. ...

RTC 1307

hello everyone, i have problem arduino nano , rtc 1307. i use code: #include <wire.h> #include "rtclib.h" rtc_ds1307 rtc;     void setup () {     serial.begin(9600);     wire.begin();     rtc.begin();   if (! rtc.isrunning()) {     serial.println("rtc not running!");     // following line sets rtc date & time sketch compiled     rtc.adjust(datetime(__date__, __time__));   } } void loop () {     datetime = rtc.now();     serial.print(now.year(), dec);     serial.print('/');     serial.print(now.month(), dec);     serial.print('/');     serial.print(now.day(), dec);     serial.print(' ');     serial.print(now.hour(), dec);     serial.print(':');     serial.print(now.minute(), dec);     serial.print(':');     seria...

Code problem

void setup() {   pinmode(9,output);   pinmode(2,input); } int pulsante=0; void loop() {   pulsante=digitalread(2);   if(pulsante==low)   {     digitalwrite(9,high);   }   else{     digitalwrite(9,low);   } } it shows no errors , seems correct doesn't work when upload on arduino. see errors? quote it doesn't work what ? what should ? what connected pin 9 ? how input wired ? Arduino Forum > Using Arduino > Programming Questions > Code problem arduino

Controllare tempo accensione di un motore Dc

ciao ho iniziato da poco usare arduino e ho difficoltà nel capire come è possibile controllare l'accensione di un led o di un motore per un determinato tempo senza che poi l'azione si ripeta all'infinito. in particolare dovrei accendere un motore dc da 6 volt per tot secondi e poi farlo spegnere. ho letto della funzione millis ma anche li dopo poco si ripete e non ho capito bene come scriverla. per ora utilizzo questo codice abbastanza semplice per far accendere un motore e spegnere dopo un secondo ma si ripete // la corrente va dal pin 9 alla base del transistor int transistorpin = 9; void setup() {   // dichiaro il pin 9 come output   pinmode(transistorpin, output); } void loop() {   // accende il motore per 1 secondo   digitalwrite(transistorpin, high);   delay(1000);   // spegne il motore per 1 secondo   digitalwrite(transistorpin, low);   delay(1000); } volevo inoltre poter controllare l'intensità di corrente e perci...

Problema con STRATO - Joomla! Forum - community, help and support

hola amigos!!! me acabo de mudar de un servidor uno strato. hasta ahora estoy muy contento, no tenido problemas salvo el siguiente. resulta que tenía instalado en el antiguo servidor el mambot "mostexbot", que transforma fórmulas matemáticas en imágenes gifs que son visibles en la web. me funcionaba perfectamente en aquél servidor, pero ahora seguido los mismos pasos en el de strato y no funciona. he instalado el bot sin problemas y colocado el archivo mimetex.cgi en la carpeta /cgi-bin/ del nuevo servidor, pero no funciona. en el bot hecho los cambios siguientes: // adjust match system configuration $mimetex_path = $mosconfig_absolute_path."/cgi-bin/mimetex.cgi"; $mimetex_path_http = $mosconfig_live_site."/mambots/content/mimetex"; $pictures_path = $mosconfig_absolute_path."/mambots/content/mimetex/pictures"; // ¿podría ser que el servidor strato funciona bajo windows y el anterior era con linux? ¿se os ocurre algo para que me funcione e...

JSON views in core components? - Joomla! Forum - community, help and support

Image
just wondering if core components come json views?  working on pretty elaborate stuff portal , sure come in handy. jup, starting j!2.0 at moment backend media view uses json upload media. the 1.x series not use full ajax / json driven components. at least not according latest dev thoughts.... Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed Joomla! 1.5 Coding

Servo Motor

pessoal estou tentando controlar um servo motor mas ta dando erro no meu codigo alguem me ajuda, segue o codigo: #include <servo.h> servo miservo; const int pinpot = 0; const int pinservo = 2; const int puslomin = 650;    // pulso para girar o servo const int pulsomax = 2550; int valor; int angulo; void setup() { miservo.attach(pinservo, pulsomin, pulsomax); } void loop() {   valor = analogread(pinpot);             //lemos o valor potenciometro   angulo = map(valor, 0, 1023, 0, 180);   // convertemos o valor um angulo   miservo.write(angulo);                  // movemos o servo em um angulo desejado   delay(20);                              // permite o servo chegar na posicao } boas tens um erro no  segundo parâmetro que estas passar aqui: quote miservo...

Return one array value - take array name from variable

hello, right trying this. code: [select] int give_number(char row[], int column){ int n0[]={1,1,1,1,1,1,1}; int n1[]={1,1,1,1,1,1,1}; int n2[]={0,1,1,1,1,0,1}; int n3[]={0,1,1,1,0,1,1}; int n4[]={1,1,1,1,0,1,0}; int n5[]={1,1,0,1,0,1,1}; int n6[]={1,0,1,1,1,1,1}; int n7[]={1,1,1,1,1,0,1}; int n8[]={1,1,1,1,1,1,1}; int n9[]={1,1,1,1,0,1,1}; return row[column]; } i expect return row[column]; for example code: [select] int test=give_number("n2",2); should output code: [select] test=1 but doesn´t work. output empty. variable "names" don't exist @ run time. in fact, don't exist @ except in code. compiler turn references variable "names" storage places in memory. you achieve similar using multi-dimensional arrays. Arduino Forum > Using Arduino > Programming Questions ...

Security Warning

hello, i using livecycle es workspace , experienced problem when trying submit pdf. pdf retrieves data webservie , submits normal workspace url. everytime press submit button, security warning appears saying: this document has accessed more 1 site , might trying share data among different locations. privary concern. sure want continue? yes no details details section shows me 2 urls accessed document. is there way switch message off? not able stop data sharing hiding message possible way me. thanks in advance sebastian starke More discussions in Acrobat Reader adobe

Yet another "Mac cannot find USB serial port" post

Image
i have read every post people having issues arduinos on macs. have 100 % authentic aurdino uno, cannot circumstance manage connect late 2009 imac macos sierra 10.12.2. i tried disabling apple ftdi drivers, installing ftdiusbserialdriver, d2xx drivers , ch34x drivers (for knockoffs). nothing works. not setting boot arguments, not disabling default extensions/drivers, not removing extensions/drivers. i stuck, , no guide has ever worked. i've tried rebooting numerous times, still no luck. port available in port menu bluetooth incoming port. does have tips or hints? on verge of doing complete reinstallation of computer have drivers default. seems not knowing uno got or don't trust original bought. an original arduino uno comes ftdi chip , no ch340g or else. sierra have issues original ftdi_unos. there reports here pretend (and have no doubt believe that) find solution sierra. don't have combination can't give solid advice. stop messing around...

PDF fast web view option don't work like the specification Acrobat Reader suggest...

i have optimized/linear pdf file support fast web viewing option. my issue plugin comportment. in adobe specification, when plugin receive large optimized pdf file, suppose began read , show pdf file after first page received web server. in case it's not worked properly. plugin show me pdf file after download finish. when check acrobat reader 8.1 internet settings, fast web view options checked properly. if pdf file properties fast web view value yes. i don't know wrong in setup. some appreciate. thank's. if file public, suggest post url others try out. aandi inston More discussions in Acrobat Reader adobe

Thread: linux-gpib install

i'd suggestions or getting shop computer working. i'm new linux, although i've been around computers since 70's. shop system has old piii motherboard ni pcii/pciia isa 8 bit card, running ubuntu 9.10. i've installed linux-gpib through synaptic installer, still doesn't run. try use config_gpib, message dev/gpib0 isn't present. appears drivers cards weren't installed. there tarball drivers, no evidence (so far) extracted. also, plan program in c/c++, suggestions similar visual c++ appreciated. have digitizer (tektronics 7d20), keithley power supply, hp dvm, , couple of others programming. hello, have been playing linux-gpib bit, not sure on isa card use usb adapter have not messed in bit remember having force driver load , believe need extract them tar , choose 1 want. work though used ibtest see if communicating ok. if tell me @ may able help patrick ...

Adafruit web site

Image
adafruit web site problem. anyone else seeing warning? a-ok here, no problems. Arduino Forum > Community > Bar Sport > Adafruit web site arduino

NEW TEMPLATE PROBLEM - Joomla! Forum - community, help and support

Image
hi there. first post here, hello all! i have sacrificed sleep tonight in order world of joomla  everything far has gone , have working joomla website. however after logging admin area (using templates , design tutorial) upload new template have come against problem. every time press new template icon web page refreshes , goes control panel page - not give me 'browse file' page needed upload new template. have tried couple of other options installers / templates site option same , end @ control panel every time... can me please!!? i'm keen on , start adding content new site  many thanks! aaron.  Board index Joomla! Older Version Support Joomla! 1.0 Upgrading - 1.0.x

sketch for home automation

Image
hello, i'm saptadip , i'm working on project of home automation using arduino uno(atmega 328p) , *esp 8266 12e. i'm using 5v relay switch turn on & off appliance. i'm using lm1117 voltage regulator generate 3.3v esp 8266 12e. want control modue via adnroid app/ web page.  can me sketch esp , arduino control reay? * in given circuit diagram esp 8266 1e used, got esp 8266 12e project. helpful if can give me code esp 8266 12e. sure, how paying. Arduino Forum > Using Arduino > Programming Questions > sketch for home automation arduino

Thread: Question: Ubuntu Installer for Windows?

Image
what difference between ubuntu installer windows , ubuntu cd image? if use ubuntu installer windows, have capability partition drive, enable share files windows etc or way not have burn cd. curious, exact details of installation files not made clear on website. note: windows version: xp, 32bit, sp3. have not partitioned yet. everyone. posted ladysapphira what difference between ubuntu installer windows , ubuntu cd image? if use ubuntu installer windows, have capability partition drive, enable share files windows etc or way not have burn cd... the ubuntu installer windows (known wubi) allows install ubuntu "inside" , ms windows-formatted partition, nowadays ntfs partitions, instead of having shrink ms windows partition make space ubuntu, , having format linux-compatible partitions. end result functionally identical se...

Fingerprint sensor

hello, i bought this fingerprint sensor. has as608 qccf tr6w18 chip on it, , uses 6 wires connect arduino. connected 4 (tx, rx, 3v3 , gnd) , it's working adafruit library, question last 2 wires labelled u+ , u-. thank you biometric applications in many fields, khóa cửa thông minh kingbel Arduino Forum > Using Arduino > Sensors > Fingerprint sensor arduino

كيف يمكن عمل ستايل أو قالب خاص لكل قسم ؟ - Joomla! Forum - community, help and support

مثل هذا الموقع في قسم فلسطيننا تجده يستخدم قالب او استايل خاص http://www.eyelash.ps/home//index.php?o ... &itemid=26 وفي قسم الميدان قالب أو ستايل خاص http://www.eyelash.ps/home//index.php?o ... &itemid=32 كيف يتم هذا الأمر؟؟؟ أفيدونا بارك الله فيكم هذه الطريقة تتم عن طريق اعدادات القوالب يمكنك تحديد قالب معين ثم الضغط على assign وتحديد الصفحات التي تريد لهذا القالب الظهور بها ملاحظة: يفضل عدم استخدام الطريقة هذه لأنها توحي للزائر بأنه انتقل لموقع آخر وقد يغلق المتصفح إلا إذا كان موقعك متشعب بشكل كبير جداً وتريد لكل قسم ضخم تصميم خاص. وهذه الطريقة استعراض للإمكانيات أكثر من فائدة للزائر بالتوفيق Board index Joomla! International Language Support International Zone Arabic Forum جوملا! 1.0 القوالب و التصميم

Joomla! Forum - community, help and support - Login

the board requires registered , logged in view forum. username: password: i forgot password resend activation email remember me hide online status session   register in order login must registered. registering takes few moments gives increased capabilities. board administrator may grant additional permissions registered users. before register please ensure familiar our terms of use , related policies. please ensure read forum rules navigate around board. terms of use | privacy policy register Board index

textbook for automotive students

i'm busy @ moment writing textbook automotive students in netherlands using arduino uno. permission use word arduino in text , on front cover. open source publishing. can asked advice , permission. regards, ep gernaat i have no idea, title gives no hint of problem. i suggest edit original post , change title "permission refer arduino in book writing" ...r Arduino Forum > General Category > General Discussion (Moderators: mbanzi, DojoDave, mellis) > textbook for automotive students arduino

Problema sensore capacitivo

buonasera tutti, sono ciccio e sono un neofita con discrete conoscenze di elettronica mentre sto imparando programmare. ho realizzato diversi progettini tra quali un progetto di un touch capacitivo. d'un qui tutto bene. ho voluto poi collegare alla resistenza un filo di circa 1,20 metri alla cui estremità ho messo un pezzo di foglio di alluminio.il sensore deve comandare un rele' che dovrà poi alimentare una barra led. non appena collego il cavo però , il rele' , comandato da apposito circuito pilota, inizia ad eccitarsi e diseccitarsi continuamente. il codeice che ho utilizzato è: code: [select] #include <capacitivesensor.h> int statoled = low; int led = 13; capacitivesensor cs_6_2 = capacitivesensor(6,2);   void setup() { pinmode(led, output); cs_6_2.set_cs_autocal_millis(0xffffffff); }   void loop() { long total1 = cs_6_2.capacitivesensor(30);   if (total > 1000){ if (statoled == low){ statoled = high; digitalwrite(led, statoled); delay(2...

Problem installing Fireboard - Joomla! Forum - community, help and support

Image
hi all  i've installed joomla onto pc running on localhost , wamp. this seems working fine. apart i've downloaded fireboard , cannot installed  i've reviewed of issues listed on here , i've, checked software unpacked ok and i've changed following settings in php.ini file, memory_limit = 140m post_max_size = 120m upload_max_filesize = 100m these show ok in phpinfo file and still errors when try install form path, c:\wamp\fireboard 1.0.3\component_fireboard_forum_1.0.3   website cannot display page http 500    causes: the website under maintenance. the website has programming error.   can try:     refresh page.     go previous page.     more information any ideas please ? i have similar error. tried uploading 2 forms extensions, latest being facileforms. both times, installation seemed go planned, , components showed installed , in components menu. with both components, however, each time tried select item (i.e. compo...

Getting 10 kHz PWM

can tell me how close 10 khz (can off few hz) on digital pin 9 on nano?  looked @ prescalars , don't allow me close number doing research appears possible through other means.  confused heavy amounts of c++ code though if can post dummy-proof syntax set , unset pin 9 10khz immensely grateful.  last resort, if can't decipher code, i'd able copy/paste code block sketch.  thank you. here's 1 way, blink without delay style. adjust duration period want. code: [select] byte triggerout = 2; // port d, bit 2 on arduino unsigned long currentmicros; unsigned long nextmicros; unsigned long duration = 25ul; // flip every 50us = 20khz pulse unsigned long elapsedmicros; void setup() {   pinmode (triggerout, output); nextmicros = micros(); } void loop() {   currentmicros = micros();   elapsedmicros = currentmicros - nextmicros;   if (elapsedmicros >= duration) {     nextmicros =...

Daft question from newbie (schematic diagram question)

hi all, hope ok.. , yes regarding arduino mega.. have been looking @ copy of scematic, looking @ creating new items arduino, , basic arduino not enough.. now.. here schematic im looking at. https://www.arduino.cc/en/uploads/main/arduino-mega-schematic.pdf hope shows.. ok.. on right hand side of schematic, chip ic6, has 4 outputs/lines pins 11,9,10,6 they go icon (i dont know) , says x3 above it.. what this? appears go no else on schematic, sort of connector on board. , there supposed 3 of them, have been looking @ arduino mega, can find no such connections on it.. missing something? answers appreciated.. cheers keith hi, first off, schematic refer mega board have ? the current mega , many clone boards use atmega 16 u2 chip usb interface , has different layout. regarding pins mention, if @ ft232 datasheet see device capable of communticating via several different methods, usb being one, others base on more direct usart lines rs232 etc. probably x3 connecto...

Reader 8, Notes/Comments and Permissions

greetings, we use framemaker , word create pdf manuals our field technicians. use reader view them. we discovered reader 8 has ability put in notes, comments, number of things equated acrobat drawing, highlighting, etc. our techs love have way put little comments/sticky notes onto copy of manual. when use tools > more tools see selections polygon tool , strikeout tool (i see lots of favorite document review tools), there's asterisk , says "only available when document rights enabled" cool, i'll enable document writes, right? :: sigh :: wrong... all i've seen assumes they're enabled or not, doesn't tell me how enable them. i have acrobat 6, reader 8.1.1, , framemaker 7 creating/editing pdf files, how 1 enable document rights our techs can put comments/notes onto copy of manual? thanks solon solon, after setting permissions allow commenting, need enable "enable commenting in reader." option. you need acrobat pro 8 enable feature; earl...

Thread: My Drives (C & D colons) cannot be mount'd!!!! :(

Image
hey guys... newbie ubuntu , using windows xp till these days.. now, i've installed ubuntu 8.04 grub , mine 320 sata hdd.. made 4 partitions.. c - 100 gb i'd old xp (which deleted booting thro' hiren's boot cd because, i'd problem xp). now, using 'swap' space (you might wondering huge swap space.. did without knowledge.. ) d - 100 gb i've own important datas e - 100 gb d g - 20 gb i've ubuntu 8.04 now.. problem that, on first day, able open d , e drives (after installing ubuntu, d , e drives changed c , d.. dont 've clue.. leave it..).. then, second day, when tried open drives, says "unable mount volume" , in details "cannot read /media/.hal-mtab". drive names are: 110.4 gb media , 104.9 gb media.. , 1 more thing.. went searching /media/ , found folder name ".hal-mtab" (after pressing ctrl+h) "x" mark 1 folder icon. says "you donot have permissions necessary...

Thread: Terminal as Wallpaper?

hey guys saw somewhere here screenshot of whos desktop wallpaper terminal! may have been screencap possible this? here's how to: http://ubuntuforums.org/showthread.p...rminal+desktop gl , hf Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Terminal as Wallpaper? Ubuntu

Footer module in the wrong place - Joomla! Forum - community, help and support

Image
after upgrading latest 1.5 nightly build noticed footer module content (in case joomla copyright info) being displayed in body area of site template, in other words, showing in middle column under article on home page. i'm joomla newbie sure , working through book on using joomla speak not familiar template setup yet  any can provided great - see attached screenshot. thanks! footbridge Board index Joomla! Older Version Support Joomla! 1.5 Templates for Joomla! 1.5

k-30 co2 sensor - flashing lights?

hi, i've got k30 hooked , measuring quite nicely, i'd have part of sensor suite inside room. problem is, flashing lights k30 pretty noticeable during nighttime! i wondered how else has tackled problem.. difficult box air won't circulating. did through sensor pdf , couldn't see obvious. don't know, maybe they're operation can't turned off. wondered if else has neat solution? thanks! it's optical sensor. lights required sense co2. you can try painting outside black. need light baffle allows no straight line of sight between lights , outside. maybe little tiny tiny fan circulate air through baffle if it's important response time down? response pretty slow on sensor in practical use (not in test setup) pretty baffle has few holes air work. Arduino Forum > Using Arduino > Sensors > k-30 co2 sens...

IDE v1.8.0 Nummer gleich (org. & .cc)

hallo, in den release infos steht bei beiden das selbe drin. weiß jemand ob die ides selbst nun auch exakt die gleichen sind oder wurden erstmal nur die boards jeweils vom anderen übernommen? mir scheint: "es wächst zusammen, zusammen gehört!" und wenn das mit ein paar wehen verbunden ist, ich sie gerne ertragen. Arduino Forum > International > Deutsch (Moderator: uwefed) > IDE v1.8.0 Nummer gleich (org. & .cc) arduino

avrdude: ser_open(): can't open device "\\.\COM1": The system cannot find the fi

i got arduino uno board , downloaded ide.  taking class , first thing instructed plug board usb post of computer , upload , run "blink" program suppose cause , led near pin 13 blink.  first of plug board computer led begins blink without having unloaded "blink" program.  second when try upload "blink" program following error.  ideas going on or doing wrong? arduino: 1.8.1 (windows 7), board: "arduino/genuino uno" sketch uses 928 bytes (2%) of program storage space. maximum 32256 bytes. global variables use 9 bytes (0%) of dynamic memory, leaving 2039 bytes local variables. maximum 2048 bytes. avrdude: ser_open(): can't open device "\\.\com1": system cannot find file specified. quote from: mdunn on jan 13, 2017, 11:10 pm first of plug board computer led begins blink without having unloaded "blink" program. that's normal. quote from: mdunn on jan 13, 2017, 11:10 pm avrdud...

How to Adjust Script to Image - Joomla! Forum - community, help and support

hello, have script wich shows drop down box 1 value , "select" button. code: select all <form action="index.php" method="post" enctype="multipart/form-data" name="templateform" target="_parent">    <select name="jos_change_template" class="button" id="mod_templatechooser_jos_change_template" onchange="">    <option value="template name" selected="selected">text</option>         </select>    <input class="button" type="submit" value="select" /> </form> does know how make image script, when click on image same action "select" button in script. thanks Board index Joomla! Older Version Support Joomla! 1.0 Templates & CSS - 1.0.x