Posts

Showing posts from July, 2014

Mosquitto installation in Raspberry pi - Raspberry Pi Forums

hi guys, trying install mosquitto in raspberry pi. following steps mentioned in internt, getting following error. pi@raspberrypi:~ $ sudo apt-get install mosquitto reading package lists... done building dependency tree reading state information... done packages not installed. may mean have requested impossible situation or if using unstable distribution required packages have not yet been created or been moved out of incoming. following information may resolve situation: following packages have unmet dependencies: mosquitto : depends: libssl1.0.0 (>= 1.0.1) not installable e: unable correct problems, have held broken packages. what os running? raspberrypi

DC Brushed Motor Driver

hi i have been offered new parvalux pm 90 motor reasonable money , looking control via arduino. i drive via driver shield / controller, recommend controller allow me this. i have inclued link data sheet below pm 90 data sheet thanks help potman what voltage, load, duty, application ? Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) > DC Brushed Motor Driver arduino

First use of Arduino Uno : avrdude error on Blink uploading

hi all, i bought arduino (or should genuino) starter kit. first test , failing. i have follow religiously first pages , when trying upload blink sketch, uploading fails avrdude error : avrdude: stk500_recv(): programmer not responding. as suggested in other posts, have tried 1) switch latest hourly build of arduino ide 2) switch previous stable version of arduino ide (1.6.09) 3) change usb cable 1 know working fine 4) make same steps on computer (unfortunatelly, of them macos running on macos 10.11.6, not interesting test) 5) press reset before upload, interesting thing : tx led never flashes the full log attached. idea of why happening ? to save people having download log, it's sync error, resp=0x00 every time: code: [select] avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x00 avrdude: stk500_recv(): programmer not responding and he's running 1.6.11 hourly avrdude 6.0.1.

Thread: Which Idle to install

Image
i running karmic, , want learn how use python, call "software center" , gives me few options. can install idle or idle (using 2.6) or idle(using 3.1) python 2.6.4 installed on system don't understand whether need install. 3.1 better? conflicts? have been playing python on command line , impressed language, sorta basic wanted be. idle a choice? there better choice? the best choice cl (command line or terminal) if looking ide, idle 3.1 should fine. recommend using , getting used cl, can code in gedit , compiling use python <file_name> Forum The Ubuntu Forum Community Ubuntu Specialised Support Development & Programming Programming Talk Which Idle to install Ubuntu

Sense HAT What is I2C and do I need to enable? - Raspberry Pi Forums

i'm trying write troubleshooting document using sense hat myself , other people using hat first time. many, me, starting out can astro pi activities children. while getting sense hat work someone, in forum, said, 'enable i2c'. can main applications menu on gui (graphical user interface) choosing, preferences raspberry pi configuration interface tab. necessary? i2c required sensehat work correctly. i'm not sure whether enabled default on raspbian doing via "raspberry pi configuration" isn't going hurt. i2c communication protocol/port used communicate sensors , leds on sensehat. raspberrypi

rotary encoder to keyboard error

Image
i'm using leonardo board i want if encoder turn counterclockwise press keyboard  button and if encoder turn clockwise press keyboard button and if encoder don'move release keys but check encoder, there no error if turn encoder more 4 or lots keep press button until shut off arduino ther problem in code? #include <encoder.h> #include<keyboard.h> typedef struct{    byte keyl;    byte keyr;    long old;    long now;    int wait;    int current; } encoder; void encoderread(encoder* enc); void encoderread(encoder* enc){    if ((enc->old != enc->now)) {       enc->current = millis();       if (enc->old < enc->now) {            keyboard.press(enc->keyr);       }else{              keyboard.press(enc->keyl);       }    }else if((int)(enc->current+enc->wait) <= millis()){       keyboard.release(enc->keyl);     keyboard.release(enc->keyr);    }    enc->old = enc->now; } encoder  nova    ={0,0,0,0,0,0}; encoder nova_pin(10,

Calculating negative numbers with decimals

good evening all i seem have problem knowledge operation of arduino. i trying calculate following value, serial monitor round zero. ideas on how can go calculating correct values , using them in arduino? float m = (1-40)/(1200-700); by way, tried both leonardo , nano... cheers adam the values integers, calculation done integer division. -39/500 = 0. force done floating point (there various ways): code: [select] float m = (float)(1-40)/(float)(1200-700); pete Arduino Forum > Using Arduino > Programming Questions > Calculating negative numbers with decimals arduino

Can Arduino send data to PLC ?

hello, newbie arduino , plc. i'm working on project measuring voltage, current, , temperature of lead-acid battery via arduino. afterward, arduino send collected data plc ,and plc send hmi or application in android. "can arduino send data plc ? or can arduino communicate between plc ?" i still don't buy arduino , plc yet. however, arduino uno r3 , siemen plc maybe choices. (i don't know kind of plc lab have, maybe siemen think. ) i did find or search in google didn't information needed. thank you. why need plc? doing industry? if really, need plc, yes. wikipedia says have rs232, rs422, rs485, , ethernet ports. proper shield , library, can setup arduino talk plc. if want talk android or webpage, why not use bluetooth module and/or wifi module? there gsm modules can send txt/calls. these lot cheaper , easier deal buying plc. Arduino Forum > Using Arduino

ArduinoLibCSharp: C# library to interact with the Arduino directly

hi everyone, i have released first version of arduino related c# library on github . compatibility note: have tested uno boards exclusively, minor adaptations required other architectures. arduinodriver (library) an arduinodriver can created in order communicate attached board (through sending messages). available commands mimicking functions in arduino language libraries (read / write analog , digital outputs, set pinmodes, send tone / notone ,...), arduino snippets found online can directly ported work arduinodriver instead. code: [select]     const byte pin = 8;     var driver = new arduinodriver(true);     driver.send(new tonerequest(pin, 200, 1000)); for work, c# arduinodriver library implements serial communication protocol corresponding listener arduino. the protocol supports: * handshaking , version negotation * high speed communication * fault tolerance , error correction (fletcher-16 checksums) * automated deployment of listener code arduino arduinouploader (library

TFT 2.4" mcufriend with arduino mega 2560 and UTFT

Image
hello, have 1 arduino 2560 tft 2.4 inch made mcufriend : and use utft library http://www.rinkydinkelectronics.com/library.php?id=51 i test demo "utft_demo_320x240", have add #define use_uno_shield_on_mega 1 because use shield uno shield, modified constructor : utft myglcd(ili9325c, a2, a1, a3, a4); i can compile , transfert arduino screen stay white. i have test mcufriend_kbv v2.9 (https://forum.arduino.cc/index.php?topic=366304.0) , works fine use gui library named awind (https://forum.arduino.cc/index.php?topic=256491.0) , library need utft work. how can screen work ? timiti29 Arduino Forum > Using Arduino > Displays > TFT 2.4" mcufriend with arduino mega 2560 and UTFT arduino

GPS & Serial Communication Conflicts...

hi guys, this first post here please excuse me if i'm doing wrong... i'm on internship working company called envision solar trying make monitor & control embedded system replace 3rd party stuff use on ev arc products , using arduino uno's prototype system. so far has been working great , i've managed create complex system in arduino (1) measures bunch of inputs , sends them second arduino (2) ethernet shield sends data www , displayed on website etc. arduino 1 has few buttons , knobs stuff , flash lights , lcd screen displays of data. i'll spare nitty gritty , point... on website there 2 buttons send trigger values arduino 2 sends them arduino 1 either reset either ev arcs ethernet or battery connections (currently flashing leds green red etc.). these buttons have been working seamlessly rest of system. i have added adafruit ultimate gps module can coordinates of ev arc , send them website display on cool google maps thing. gps module works fine , can

Identifying Bootloader ttyACM# device

hi, i'm using modified version of arduino 0 bootloader. trying write software automatically detect usb device bootloader running on in order execute bossac. have noticed few unique characteristics when using "lsusb -v". things "bdeviceclass" 2. , "bdevicesubclass" 0; however, not feel confident in using these traits identify bootloader. there clear indication of bootloader can find correct ttyacm#? Arduino Forum > Development > Other Software Development > Identifying Bootloader ttyACM# device arduino

GPU Acceleration Not Supported in PS CS4 Standard

i led believe gpu acceleration features (like smooth zoom , rotate) supported in ps cs4 standard edition. under gpu settings, performance preferences, states "no gpu options available photoshop standard". me misleading advertising - have considered extended version if had known. maybe others not make same disappointing assumption have. think adobe should make clear in future. make me feel slighted. david, yes part of cs standard need video card supports open gl, recent cards do. if preference option grayed out, need upgrade video card in oder features work. regards, mm More discussions in Photoshop Windows (read only) adobe

Thread: Karmic boot problems

hello, need help, badly. need machine , running. cannot boot, @ all. on dell dimension 9150 4gb of ram, nvidia 6800. has 2 hard drives, sda , sdb. booting sda, sdb purely data storage of vm's. try boot machine , gets past white ubuntu logo , screen goes black. try boot recovery mode, hangs. running kernel: 2.6.31-16-generic ppa:ubuntu-fastboot, words, ustart. can access file system, seems rescue mode on alt install cd. can help, hero! thank in advance. do have other kernels installed, regular, non-ppa ones? if so, booting of them work? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [SOLVED] Karmic boot problems Ubuntu

about measuring AC frequency with digital input

Image
hello guys, let me ask something im sorry, im not expert on arduino    so have project making prototype measure ac line frequency, have ac voltage range 0-4v. put output digital pin 2 of arduino uno. here code : code: [select] int cnt=0; int sample=75;    //sample size, should @ least 1.5 times expected frequency float t1,t2,freq; void setup() // code counting increasing values {   serial.begin(9600);   pinmode(2,input);   attachinterrupt(0,count,rising);   t1=millis();   t2=0;   serial.print("starting\n"); } void loop() {   if (t2!=0) {     nointerrupts();  //disable interrupts ensure accuracy of readings     freq=sample/((t2-t1)/1000);     serial.print(cnt);     serial.print(" freq: ");     serial.println(freq);  //treat output liking     t1=millis();    //reset variables     t2=0;     cnt=0;     interrupts();  //enable interrupts again     } } void count() {   cnt++;   if (cnt==sample) {  //signal when set number of samples have been taken     t2=milli

resizing images in PS to use as background image in DW

hi there, building site in dw , creating images in ps cs. don't know size resize images in ps sit nicely in browser window background image no scroll bars. have tried every way end big or small. using mac os x.5. can't move on. thanks vicky are cs2 or cs3? you've got consider monitor resolution want target. pages generated after scripts detect resolution user set @ , send generated page fit computer, overkill doing i'm sure. you don't if trying make background pattern or use on image fit screen. if using 1 image fit screen, set @ reasonable work in cases, 900 x 600 pixels @ 72 pixels per inch resolution. do want page right size users won't have scroll, or want no scroll bars show? decide want , tell us. can use 'no scroll' , i'm not sure if part of (x)html or not, sure can javascript. do want images on top of images? either need use absolute positioning , z-index put images on top of images, or entire display graphic. how depends on want see on

Possible to do multiple if else/trigger statements on one arduino?

i think know answer this, figured i'd ask in case - can run multiple if else/trigger statements monitoring sensors on 1 arduino? the first set of code monitoring temperature , turn on power outlet if temp drops level. second set of code monitoring moisture level of soil , turn on power outlet if moisture drops below level. my guess need use 2 diff arduinos, 1 each code... this note code way! can combine code: code: [select] #include <u8glib.h>  // u8glib library #include <dht.h>     // dht library #define dht_apin a5  // analog pin sensor connected dht dht; int pinout = 8;                /*uncomment , comment*/ u8glib_sh1106_128x64 u8g(13, 11, 10, 9, 8);  // din=13, clk=11, cs=10, dc=9, reset=8 //u8glib_ssd1306_128x32 u8g(13, 11, 10, 9, 8); // din=13, clk=11, cs=10, dc=9, reset=8 //u8glib_ssd1306_128x64 u8g(13, 11, 10, 9, 8); // din=13, clk=11, cs=10, dc=9, reset=8 void draw(void) {    u8g.setfont(u8g_font_fub17r);   // select font    u8g.drawstr(0, 20, "

64x16 led red dot matrix

how can make scrolling text & blink text arduino mega 2560 led red dot matrix 64x16, , power usb too. make 2 line scrolling text or blink text ? have tried google? do want make matrix separate leds? do want use led matrix panels? do want use led module? have seen one? https://chioszrobots.com/2014/08/01/64x16-dot-matrix-led-diy-red-arduino-projects-robots/ Arduino Forum > Using Arduino > LEDs and Multiplexing > 64x16 led red dot matrix arduino

Sketch funktioniert nur mit aktivem Serial Monitor / DCF 77 Arduino Uno

hallo zusammen, zum auslesen der aktuellen uhrzeit nutze ich einen dcf77-empfänger von pollin und einen sketch von arduinoclub.de (danke dieser stelle!). der sketch ist angehängt. prinzipiell funktioniert auch alles wunderbar: - arduino uno mit externer stromversorgung, um interferenzen mit dcf77-empfänger zu verhindern - usb-verbindung zum serial-output auslesen - led leuchtet + serial output, sobald ein zeitsignal vorhanden ist nach ca. 2-3 minuten erhalte ich regelmäßig ein zeitsignal, die led leuchtet ab diesem zeitpunkt, im serial monitor erscheint die aktuelle zeit. wenn ich diese schaltung aber dann teste, ohne eine usb-verbindung herzustellen (= nur mit externer stromversorgung), erhalte ich offenbar kein signal mehr (=die led leuchtet nicht mehr), auch nach längerer zeit und mehreren versuchen nicht. kontrollversuche mit usb-verbindung funktionieren dann wieder... hat jemand eine idee, wie dieses problem zustande kommt, und wie es sich lösen lässt? vielen dank..! lg

Battery concerns - Raspberry Pi Forums

hey everyone, hope i’m being paranoid no reason. spent part of yesterday trying wire pigrrl raspberry pi. project’s here if you’re not familiar it. https://learn.adafruit.com/pigrrl-2/overview couldn’t working (but possibly software issue). ended pulling out soldered wires/resoldered wiring etc - needless soldering isn’t good! i’m away home next 3 weeks, , have left whole circuit still connected 2000mah lipo battery pack ( https://shop.pimoroni.com/products/lipo-battery-pack ). there’s switch circuit , off. i’ve left circuit in toolbox, there’s pitft display, in circuit, raspberry pi, , there’s powerboost1000c in circuit well, amp, gamepad pub , small speaker. there chance if circuit came on reason (ie if soldering switch fails , circuit becomes on), there’s chance of battery catching fire? think if happened battery wear down, it’s dodgy soldering , connections worrying me. partner in house ask disconnect it, rather not bother if have nothing worry about. circuit off @ moment, have b

need help implementing "delay" function

Image
hi all, i've been working on (my first) project while , thought had worked out on work bench, low , behold when assembled there few hiccups  fyi newbie here, limited knowledge/experience so, i've commented out of "additional" features , trying basic functions working , adding in things 1 @ time until works should. the project automated chicken coop main function door operation, motor spins pulley raises or lowers door depending on light level indicated photo resistor (open when light out, closed when dark out). motor stopped opening or closing using reed switches. currently, door function working should, i've been trying implement line of code delay motor stopping on door close routine second or after reed switch indicates door has closed. because design of door such there locking mechanism activated when there sufficient slack in line lifts door. closest (i think) i've been correct piece of code did not continue run motor after door had closed, di

Thread: Kubuntu won't install

hello, beginner here. trying install kubuntu on machine running windows xp (2.54 ghz, 1 gb ram, pentium). burned iso disk, trys run, screen shows blue kubuntu "gear" icon , kubuntu logo, that's it. no desktop or anything. computer has been running 40 minutes without change in screen. ideas? ok, tried run ubuntu live, , froze well. so, that's 2 failed attempts @ kubunto, , 1 failed attempt install ubuntu. xp runs fine. what's deal? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [kubuntu] Kubuntu won't install Ubuntu

Flow control on Arduino USB serial link without an FTDI chip

i intend use arduino micro interface serial device bus acts intelligent mediator between computer , bus. various devices attached bus, therefore arduino employs collision detection - collision avoidance scheme before writes serial device bus. bus connected 2 io pins controlled modified softwareserial library.  cdca scheme means pc must (a) wait sending data until arduino sees free time slot on bus , (b) wait next command until last transmission has been processed , response 1 of bus devices has been received. this no problem arduino on rs-232 connection rts/cts or on implementations separate ftdi chip has rts/cts pins (does chip translate signals on these pins xon/xoff flow control?). but usb serial interface on arduinos usb controller part of microprocessor arduino micro 32u4? possible implement equivalent rts/cts flow control usb serial link, , how control signals?  the other alternative have serial usb interface pc external ftdi breakout board connected arduino serial inte

sensor choice

good day, i looking sensor module project. make a contactless joystick, i.e. detecting up-down , left-right movements made hand @ close vicinity of sensor(s), without touching it/them. i thought square/diamond configuration (or even triangle). close vicinity, thinking few cm (1 4 in). which type of sensor think more appropriate that kind of project? ir, sonar, hall effect, other? ir seems interesting fear movement of other parts of body interfer hand movements. pricewise , sizewise well, ir seems interesting, although have close no experience other types of sensors. also, wondering how deal how quit, i.e.  releasing joystick. final movement may give false positive. i not sure prices either.  there big difference in using these different sensors? what recommend? or perhaps such device exists?  have not found 1 yet, though. many in advance guidance. best regards,   there not big difference in price of normal sensors. if want measure ph value of aquarium or

Aide pour alimenter 6 servomoteurs

Image
bonjour à tous, j'ai un arduino mega qui est alimenté avec une pile 9v j'ai branché dessus les cables data de mes 6 servomoteurs ainsi que le neutre sur le gnd du mega. mes servomoteurs sont tous les 6 alimentés par 4 pile lr6 1,5v. quand 1 seul de mes cables data est branché sur le mega tout va bien. par contre dés que j'en branche 2 ça commence à trembler dans tous les sens. ma question est : comment alimenter mes 6 servo moteurs ? et/ou faut il mettre un condensateur quelque part ? et si oui lequel ? merci d'avance pour vos réponses ci-dessous, le schéma vite fait : mes servos sont 6x  gws mini l taille 35.0 x 16.9 x 27.0 mm speed @ 4.8v:   0.14 sec/60° stall torque @ 4.8v:   3.6 kg·cm consommation :  600mah je ne suis pas spécialiste mais aurai tu un schéma de ton montage ? stp Arduino Forum > International > Français (Moderators: jfs, S

Photoshop CS3 Keeps on Crashing at Random - Help!

photoshop cs3 has been crashing repeatedly on me (over 14 times now) since afternoon of 01/06/09. not sure triggers crash. resize window in photoshop cs3, crashes. try save file, , crashes. try edit font layer, , crashes. i've run disk utility, , throws these alerts: "warning: suid file "system/library/filesystems/appleshare/afpload" has been modified , not repaired. warning: suid file "usr/bin/setregion" has been modified , not repaired. warning: suid file "system/library/privateframeworks/install.framework/versions/a/resources/runner" has been modified , not repaired. warning: suid file "system/library/printers/ioms/lpriom.plugin/contents/macos/lpriomhelper" has been modified , not repaired." are these warnings related? experience problem , or know can fix this? i've tried re-installing photoshop, , updates, including fixvcuiframework app , hasn't helped. thanks! does crash in new user? More discussions in Photoshop

Thread: boot screen karmic (9.10)

hii, i've installed ubuntu karmic (9.10) , i'm using , great . every once in while @ boot screen (when asked select operating system) adds row saying ubuntu recovery , , 1 ubuntu regular . how can remove them ? these older kernels appear when update kernel can use computer janitor remove them can found @ system -> admin -> computer janitor. can risky. should have old linux kernels listed under 'unused' tick them , click selected tasks. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] boot screen karmic (9.10) Ubuntu

Sending coordinates of face to Arduino through USB - Raspberry Pi Forums

i'm doing project in 1 of features simple face tracking. need make pi detect faces using opencv , send coordinates arduino through usb. can show me simple python code explanation purpose? thank in advance! (p.s know how code arduino receive , necessary stuff.) you might want check out http://www.pyimagesearch.com/free-opencv-crash-course/ . have used of author's free tutorials , have been excellent. raspberrypi

Simulating Watercolor Paper's Texture

when photographing watercolor painting on textured paper background has patchy not when reproduced four-color halftone. therefore make more pleasing reproduction have dropout background. photoshop has filters simulate conversion of photography work of art, there no filters work @ making textured background of image work of art. has found way simulate texture of watercolor papers in background layer? i hard way once, e.g. scan blank piece of watercolor paper , retouch, color correct until have nice , "even" texture. then in future can blowout backgrounds , overlay texture. alan More discussions in Photoshop Macintosh (read only) adobe

Brushed Motor with ESC Full Throttle Issues

hello, i using arduino uno hobbywing quicrun 1060a esc , traxxas titan 12t brushed motor. able arm esc , power motor @ lower speeds properly, when attempt raise throttle full stop above 67%, or 1700 microseconds, motor continuously cycles @ lower throttle. issue seems occur more when vehicle under load, not make sense. also, when switch lower throttle level higher level (above 67%) without delay of 1000 microseconds, have same issue of motor continuously cycling. is there issue delay times using between changing throttle levels? esc not capable of rapidly increasing throttle when under load? there chance arduino source of issue? here code using , have issue with. in advance! code: [select] #include <servo.h>   servo motor; void setup() {   motor.attach(9);   } void loop() {   delay(4000);   motor.writemicroseconds(1500);   delay(1000);   motor.writemicroseconds(1800);   delay(1000);   motor.writemicroseconds(1000);   delay(2000);   motor.writemicroseconds(1500);   while

Thread: Ubuntu 9.10 is running slow on laptop

i did format , changed 9.04 , ext3 9.10 on ext4. dualboot winxp on dell d830 laptop. problem computer running slow, compare previus ubuntu versions. cant point finger @ special, , not time. have fealing slower after hours, i'm not sure. programs (firefox, truecrypt, evolution mail) stop respond when click on them, continues after short stop. ideas? ive reinstalled once. when it's starting feel slow, run system monitor , check if programs eating cpu cycles or memory... might give clue may if anything... Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Ubuntu 9.10 is running slow on laptop Ubuntu

Error de compilación

buenos días, llevo unos meses trabajando con arduino/genuino uno. mi problema es el siguiente, estaba trabajando con un programa para controlar un led...de manera que empezara una secuencia cuando pulsamos un push button, y parara al volverlo pulsar (que hasta el viernes iba perfecto). code: [select] #include <spi.h> #define button 2 #define led 9 int led = 13; int button = 2; int val = 0; int old_val = 0; int state = 0; const int slavepinselect = 10; void setup() {   // put setup code here, run once:   pinmode(slavepinselect, output);   pinmode(button, input);   spi.begin(); } void loop() {   // put main code here, run repeatedly:   int intensity [] = {250,150,250,150,50};   int time[] = {1000,1000,1000,1000,1000};   int channel = 5;   int level =0;   //int state=0;   val = digitalread(button);   if((val == high) && (old_val == low)){     state = 1-state;     delay(1000);   }   old_val = val;   if (state == 1){     (int count = 0; count < 5; count ++){     i

Reinstalling Raspbian - Raspberry Pi Forums

hello, had couple of problems raspbian distribution , want reinstall. problem unable format sd card. i've tried using sd association's tool, tried formatting diskpart, gparted on linux, tried writing /dev/zero sd using dd, , nothing works. of these tools tell me they've formatted card, no changes made. after trying these tools, i'm still able boot raspbian sd, nothing happened. i've read try formatting using camera, however, have no camera try that. how can format card in order install raspbian again on it? thank in advance if install standalone image rasbian desktop (not noobs) using etcher or dd formatting not required. raspberrypi

www, con o sin - Joomla! Forum - community, help and support

Image
si, les hablo de ese error con el live_site, que si está en una forma, el cargar las imágenes no funciona bien......... necesito si alguien encontró la forma de yo poder colocar siempre que mi sitio sea http://www.sitio.com , y que me funcione, donde está el error?, alguien sabe? saludos y agradecido como siempre. fdo si tienes apache y mod rewrite usa .htaccess añade estas líneas al archivo .htaccess: code: select all rewritecond %{http_host} ^dominio.com [nc] rewriterule ^(.*)$ http://www.dominio.com/$1 [r=301,nc] cambiando "dominio.com" por tu dominio. Board index Joomla! International Language Support International Zone Spanish Forum Versiones de Joomla! obsoletas Joomla! 1.5

Thread: Open Office Headers Disappearing

i using ubuntu 9.10, , using open office 3.1. notice headers disappear once save , reopen. there fix or program compatible/ interchangeable microsoft word? use feature time , need it. help. ditto on problem. i've googled, haven't turned in way of fix. have found or alternative program? fiction writer, have turn in odt documents .doc , not having headers isn't option... Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Open Office Headers Disappearing Ubuntu

Lỗi cài đặt joomla 1.5 - Joomla! Forum - community, help and support

anh em nào xài zoomla 1.5 rồi cho mình hỏi tí. mình có một domain là :http://www.libsoftware.com mình cài đặt zoomla trên máy của mình(làm server) thì ok.nhưng khi đưa lên internet thì có vấn đề.Đây là file cấu hình của mình: if(!defined('rg_emulation')) { define( 'rg_emulation', 0 ); } $mosconfig_offline = '0'; $mosconfig_host = 'localhost'; $mosconfig_user = 'u70425979'; $mosconfig_password = '48def5'; $mosconfig_db = 'd60387558'; $mosconfig_dbprefix = 'jos_'; $mosconfig_lang = 'english'; $mosconfig_absolute_path = 'http://www.libsoftware.com'; $mosconfig_live_site = 'http://www.libsoftware.com'; $mosconfig_sitename = 'my gallery'; $mosconfig_shownoauth = '0'; $mosconfig_useractivation = '1'; $mosconfig_uniquemail = '1'; $mosconfig_offline_message = 'this site down maintenance. please check again soon.'; $mosconfig_error_message = 'this site temporarily

Thread: Linksys WMP300N/Ubuntu 9.10/unable to use or find driver for it

hi! first post i'll try , information needed out there! have pci linksys wmp300n wireless card in computer on ubuntu 9.10. runs on broadcom chipset (99% sure). when boot live cd shows me list of proprietary drivers. 2 wireless card , 1 graphics card nvidia. since activating these drivers requires reboot.... rather goes against nature of live cd. before reboot able see networks not knew exist in area using proprietary driver. should mention don't have hardline computer , such no internet @ time. closest can come downloading new things through windows , transfer via partition or via usb. have tried using ndiswrapper , ndisgtk lets use "windows wireless drivers". neither of these have had avail. tells me driver have installed in fact being used on card unable use configure wireless setup. i'm afraid i'm not sure go here... i've been through thread after thread after thread wmp300n , people seem have been able achieve success it... se

Q: Default Image Path - Joomla! Forum - community, help and support

hello asked in forum have yet answer... appreciate may get.. what method default image path can changed ( images--->stories default me thinks)  ... want change path more structured secured directory path members ups , downs. in file paths configuration defined?? thanks icon did find answer this?, not find how change image path , created directories different images , cannot accessed when trying add content item. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Thread: Can't check yahoo mail

hello friends can't check yahoo mail in ubuntu. have used both firefox , opera browsers problem remains. yahoo web mail not supported in ubuntu? in advance suggestions. can give more details? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Can't check yahoo mail Ubuntu

MG966R servo - back and forth movement when PWM pulse width is 1500 microsecond

Image
just putting robot arm, , setting servo motors 90 degree positions (using uno board)..... ok, except 1 mg966r. other 3 fine. odd-one-out did repetitive oscillatory motions.... maybe 5 degree forward 5 degree ...then forward etc.... continuously @ relatively quick rate. i got capacitors avoiding noise/glitch issues. else seen kind of out of control issue? i'm suspecting failed control circuity inside mg966r plastic housing. seems 1 of luck of draw things. it's ok, happened have couple of spare servo of brand. anyway, opened mg966r , see couple of 8 pin chips inside....  the green circuit board doesn't want come out. tempted brute force (and rip whatever connected on other side heheheh). know if board supposed pop out typical hobby servomotors? first time opened 1 heheh. update! figured out how disassemble servo (and temporarily lost gear pin after gear dropped on floor..... found pin again hours later). i found problem. bad solder joint meant e

MachineKit GPIO PINS Configuration - Raspberry Pi Forums

hi guys, i'm installed linuxcnc on desktop pc , i'm using 4 axis cnc machine. have installed debian version ready img of , i'm using 2 parallel ports, it's working fine. replace desktop pc raspberry pi 3 model b have installed raspian jessie preempt_rt kernel , have installed machinekit on it. demos working fine i'm need replicate linuxcnc configuration in order make working machinekit , linuxcnc i'm stucked here because cannot re-map existing linuxcnc configuration gpio ones using hal. have created standard_pinout.hal in order map gpio pins , @ url can see excel gpio need configure https://expirebox.com/download/fafcebd1 ... 8fc7d.html on other url instead can see hal file have created map, axis have been set don't know how proceed complete it. https://expirebox.com/download/96bd5b37 ... fe486.html thank time , hope can me complete hal configuration in order make working. lot in advance. raspberrypi

Error unpacking JAR files - Raspberry Pi Forums

i'm trying install program called screenhub on new raspberry pi. have installer linux, downloads shell script; yet, can't neither 32-bit or 64-bit versions install. of course i've run updates. tried escalating privilege sudo -s. same error regardless. ran command java -version, shows version 1.8.0_65, java hotspot client vm. so, i'm not sure what's wrong here. error follows... bin/unpack200: exec format error error unpacking jar files. architecture or bitness (32/64) of bundled jvm might not match machine. appreciated! need program work. thank you! "exec format error" means trying run code built run on pc on not pc. raspberry pi uses arm cpu, while pcs use intel style x86 cpus. code 1 won't run on other because use different instruction codes. screenhub doesn't seem have raspberry pi version. many suppliers list "linux" version without mentioning linux on pc or mac only. forget linux can run on several other types of computer

Inclinometro con ADXL335: come migliorare?

scopo: misurare l'ibardata di un corpo che giace su di un piano ortogonale al terreno (es. una finestra). l'asse z punta contro l'osservatore mentre x e y giacciono paralleli al piano/finestra. hardware: adxl335, accelerometro analogico 3v, +-3g, 3 assi. (datasheet: https://www.sparkfun.com/datasheets/components/smd/adxl335.pdf) tecnica: calcolo dell'arcotangente tra x e y e uscita del valore in gradi (0-360) domande: il programma è scritto bene ed in maniera essenziale? con questo settaggio hardware e software, sto già ottenendo il massimo della risoluzione e della sensibilità possibili ? programma: ///////////////////////////////////////////////// code: [select] ///////////////// //adxl335, il programma legge gli assi x e y e restituisce l'angolo di imbardata (phi) //nota: l'adxl è montato con il piano del chip ortogonale al piano terrestre, l'imbardata è intesa considerando tale piano di riferimento. /////////////////////////////////////////////

Thread: New York Users, Which one do you use?

Image
i wondering how many people there in new york state used ubuntu or 1 of derivatives. created poll officially supported list , recognized list ubuntu website. added other obvious reasons. if use more 1 or jump around (like do) vote on 1 use most. me xubuntu changes various reasons. kde, gnome , xubuntu not happy new releases, same goes for, example, xubuntu, kubuntu or ubuntu, etc. cool. looks 1 uses ubuntu in new york. think that, lol edit: take back, there 2 of us. Forum The Ubuntu Forum Community Other Discussion and Support Ubuntu LoCo Team Forums Americas LoCo Teams New York - US New York Users, Which one do you use? Ubuntu

missing filename after '-o'

i'm new writing in arduino , trying program "ultimate robot kit blue". in uploading first motor test, error message keeps coming says: avr-g++: error: missing filename after '-o' exit status 1 error compiling. invalid library found in /users/dennisleary/documents/arduino/libraries/makeblock-libraries-master: /users/dennisleary/documents/arduino/libraries/makeblock-libraries-master invalid library found in /users/dennisleary/documents/arduino/libraries/makeblock-libraries-master: /users/dennisleary/documents/arduino/libraries/makeblock-libraries-master i've been trying robot , running quite time , appreciated! you have not installed library correctly or correct name.  however, did not post code , did not post complete message guessing.  not @ guessing.  please try again, following instructions follow. to post code and/or error messages: 1) use ctrl-t in arduino ide autoformat code. 2) paste autoformatted code between code tags (th

photoshop scratch disk

hi all, i have photoshop cs2 on desktop computer (xp). hard drive partitioned , have photoshop scratch disk on own partition (10gb). i have photoshop cs3 on laptop (vista premium, 2gb ram). there 1 hard drive in laptop. partitioned 3 - c drive: windows + programs, s drive: system files, x drive: recovery. my question keep scratch drive on c drive or can/should partition external hard drive (250gb) , put photoshop scratch disk on there? external drive via usb. thanks in advance. don't run scratch on external. More discussions in Photoshop Windows (read only) adobe

Two ESP8266s and an Arduino?

good morning, i'm getting started arduino , esp8266, have ambitious project i'd appreciate with. as understand it, acting wifi arduino, esp8266 module can programmed run simple code (using arduino bridge) , has single, digital i/o pin can attached sensor or button. correct? if that's case, i'd have esp8266 attached rain sensor , esp8266 attached arduino uno has relay shield attached. once there enough rain max out digital pin (i realise won't have ability set rain trigger level input digital, not analogue), esp8266 send message esp8266 equipped arduino , make activate relays in specific sequence - i.e. close set of windows? is possible? can esp8266's made communicate directly or require router? all appreciated! an esp8266 in nodemcu format has multiple pins.  can use tipping bucket digital pulses of rain quantity.  higher frequency harder rain, total counts per hour or day amount of rain. then have wifi alert phone and have pins se

"applying" a blend mode

Image
hi. i curious rules ps follows when comes merging of layers blend modes other "normal". can direct me somewhere, can find information that? searched web extensively, couldn't find anything. adobe livedocs mute that, too. for example: - blend layer 2 (hard ligth) - blend layer 1 (vivid light) - background layer (normal) --> if blend layer1+2, alter visible (flattened) on-screen-image. another example: i had layer landscape + medium-blue sky without stars. on layer had white stars on (nearly) black backdrop. used "lighten" mode fill medium-blue sky stars. later on, did trick remove black backdrop , have pixels of white stars on layer. (and no, didn't "blend if" or "color range" or therelike, used blending modes!). unfortunately can't remember how did exactly, think merged layer empty layer (i know sounds weird), possibly putting both layers group first , merging group. fact is, after merging (of stars layer , "???

servo failure using RAMPS 1.4 shield on mega 2560

i can't servo move on servo pin headers of ramps 1.4 using standard sweep code.  ramps 1.4 provides 4 servo headers tied pins 11, 6, 5, & 4 each power , ground (three pin header). need familiar board.  can blink pin 11 on first servo port know have right pin.  when tie led between signal , ground on port , run sweep code led glows dim should pwm.  yet when attach servo port - nothing (and yes checked polarity).  have checked power , ground pins on port , has healthy 5v.  have connected external power supply ramps 1.4 know has plenty of power.  same servos (i have tried 5) work on other arduinos.  ideas doing wrong? ramps 1.4 board should powerhouse since designed run 3d printers. Arduino Forum > Using Arduino > Microcontrollers > servo failure using RAMPS 1.4 shield on mega 2560 arduino

Photoshop Issue

i new photoshop. applaude guys knowledge behind programs guys have obtained. question maybe insipid, please dont ridicule me. cannot seem color new image or text in photoshop. following tutorials , walk-throughs in different websites. let's see. draw huge circle on new page. click on gradient tool, , choose swatch color. now, can see different colors choose from. cannot seem able apply colors anything. tried doing text. see boxes colors, , above once select color, box should turn color. mine not, gets darker or lights. ( black, gray white) there should doing, or not doing? appreciate help, since have small start project due in week. once apply color object, turns gray or dark, or white....help please. More discussions in Photoshop Windows (read only) adobe

Formula 1 live timing dash - Raspberry Pi Forums

Image
needed live timing dashboard when watching formula 1, , ended building one. hardware: * raspberry pi 3 * 7" touchscreen * usb-powerbank * wooden planks case software: * raspbian * matchbox (as window manager) * chromium browser here's 2 more images raspberrypi

polulu a4988 driver

hello, i've question, does know why when put voltmeter probes on gnd pin , potentiometer realding goes few milivolts(the reading when electrodes in air) complete zero?   while im testing have connected should be, every voltmeter try show same things. (i'have tried 3 or 4 different multimeters, tried ac voltmeter:d). at first thought drivers somehow damaged , unlikly because motors turning. , tried using oscilloscope , got reading. (i have adjusted potenciometers, im curious why doesnt work vltmeter) oh , if knows correct vref equassion accurate, realy use one, because have seen two, 1 in howtomechatrinox.com way off, , 1 allways whenever different datasheet on a4988 (i rated =v ref/(8 * r sense). did not work,  motors started shiver after set current twice high equassion said my google shoots me directly pololu site , find formula: quote current limit = vref × 2.5 this applies if have original pololu a4988 0.05Ω current sense resistors.

About copy OS image on SD card - Raspberry Pi Forums

hi all, have brand new sd card, 64g mounted on cardreader, inserted on usb port. warning popup (see attached photo) sd card copier code: select all copy device: aggce (/dev/mmcblko) copy device: myson ms/mspro storage (/dev/sdb) myson sd mmc/storage (dev/sda) [ ] new partition uuids please advise; 1. shall treat warning? 2. device shall select sda or sdb? thanks regards satimis satimis wrote: ↑ sat sep 09, 2017 4:41 am hi all, have brand new sd card, 64g mounted on cardreader, inserted on usb port. warning popup (see attached photo) sd card copier code: select all copy device: aggce (/dev/mmcblko) copy device: myson ms/mspro storage (/dev/sdb) myson sd mmc/storage (dev/sda) [ ] new partition uuids please advise; 1. shall treat warning? 2. device shall select sda or sdb? thanks regards satimis should shown 1 drive, maybe need format fat32 first, use gparted remove partitions create 1 partition ?? raspberrypi

Bootup "errors" - Raspberry Pi Forums

originally didn't pay attention them, knowledge increases, becoming interesting. trying resolve them myself, found bit: https://www.google.com.au/url?q=https:/ ... hvmliasg7q ok, but...... machine is: raspberry pi 2 model b rev 1.1 see errors @ initial boot systemd-(something) looking @ first link gives me interesting least. lines in red, bold white. file big, not going post all, , shall work on filtering out important stuff. going through editing out non-error lines , leaving in errors - best can do. first part irda , pihat have installed i'm guessing. next dirtybit being set - on usb drive. if says clearing bit, why keep showing? thumb drives plugged in @ boot , seldom removed. next journal size. maybe not error, left there because not getting it. next error ntp addresses have in /etc/ntp.conf file. strange says can't resolve names, because can ping addresses without errors. sep 09 08:17:06 piface ntpdate[491]: can't find host tic.ntp.tels