Posts

Showing posts from August, 2010

Serial read loop not reading \n

i new arduino , c. have writeen sketch check, whether year leap year. in order allow user input have added function read serial monitor, so: code: [select] int readline(char str[]) {   char c;   int index = 0;     while (true) {         if (serial.available() > 0) {       c = serial.read();             serial.print("received char: ");       serial.println(c, hex);             if (c != '\n') {         serial.print("debug (readline | if > char): ");         serial.println(c);         str[index++] = c;       } else {         serial.print("debug (readline | if > else): ");         serial.println(c);         str[index] = '\0';       // null termination character         break;       }             serial.print("debug (readline | str): ");       serial.println(str);       serial.print("debug (readline | index): ");       serial.println(index);     }   }     return index; } the problem never reach 'else

CFSETTING / CFSILENT Question

hi, i've been looking around forums before asked question , didn't come across anything. i looking find out if there specific reasons, pro's/con's of both instance, in use <cfsilent>...</cfsilent> on <cfsetting enablecfoutputonly="yes"> ... </cfsetting> or vice-versa. also, same question when applying pseudo-constructor initialization being used instead/before ".init()" thank in advance, j More discussions in ColdFusion adobe

Using two wires to detect water - making your own water sensor

if want use 2 wires detect water in basement.  i wondering if can put 5v voltage regulator down on 1 probe, , 1/2 inch away put in other probe input atmega?  what if standing water next pipe?  or somehow conducts ground?  will need put resistor on 5v line in case don't short out voltage regulator? i'm wondering happens when water conducts ground - atmega see 5v if it's being pulled down ground? i attached drawing of thinking. edit:  i see replies missed couple of details:  see reply in post #11. i think pullup resistor on input pin, gnd wire nearby, better. signal read high until water allowed contact gnd wire. experiment digitalread , analogread. Arduino Forum > Using Arduino > General Electronics > Using two wires to detect water - making your own water sensor arduino

Unable to upload sketches to aduino Uno on Windows 7-Serial port already in use

hi all it has been 2 days since baught arduino uno , until yesterday tested several things blinking , fading led , worked fine. yesterday when following tutorial involving coding follows couldn't upload more sketch board. code: [select] int sensepin = 0; void setup(){   analogreference(default);   serial.begin(9600); } void loop(){   serial.println(analogread(sensepin));   delay(500); } when first compiled , uploaded code expecting serial monitor window come did in tutorial video nothing came up. tried compiling , uploading again. gave error as code: [select] processing.app.serialexception: serial port 'com29' in use. try quiting programs may using it. at processing.app.serial.<init>(serial.java:171) at processing.app.serial.<init>(serial.java:77) at processing.app.debug.uploader.flushserialbuffer(uploader.java:77) at processing.app.debug.avrdudeuploader.uploadviabootloader(avrdudeuploader.java:175) at processing.app.debug.avrdudeuploader.upl

Blank Screen with X cursor when connecting through RDP - Raspberry Pi Forums

Image
whenever try access pi through windows rdp getting blank screen shown below. started happening after replaced line in /etc/inittab in order autorun py script. pi running raspbian. replaced 1:2345:respawn:/sbin/getty 115200 tty1 this: 1:2345:respawn:/bin/login -f pi tty1 </dev/tty1 >/dev/tty1 2>&1 hope have not bricked pi following instructions in page: http://www.raspberrypi-spy.co.uk/2015/0 ... ent-130104 the problem worse thought because affected when connecting pi monitor, keyboard , mouse , not through rdp. getting black screen after boot up. pressing f7 during boot did not because noobs screen allow me re-install os. solution press ctrl+alt+f4 allow me log in using changed password , use command line undo changes suggested in link above. pi boots raspbian still have problem cannot run python script in terminal window on startup. raspberrypi

Licence error message when using automation software

error message when using rational functional tester 7.0.1.1 record flex application. message seemed come flex application. i can record fiew step in application, have message : "licence not present. eith trial version limited record allowed". but, license of rational functional tester application activated. i using flex builder 3 trial version , trial not over. is there problem license in file compiler "d:\apps\ibm\sdp70\functionaltester\bin\rft.swc"? rft file supposed included in flex application once compile the license restriction observing not rft flex side. unlimited record replays need flex builder professional. More discussions in Flex (Read Only) adobe

Advice request - visually condensing content

any advice on appreciated... i wife's business website - she's been doing blog every day in january , it's proved connecting site visitors , encouraging them contact her. i've been using spry collapsible panels "store" entries date. when january's on want find way of making blog area tidier - , possibly using same page hub blog, testimonials , press references. i'd grateful advice on useability / design / coding requirements. i did see 1 interesting example on adobe site 3 inter-related boxes (towards middle / bottom of page) used, each 1 growing / shrinking accordingly when clicked - can't seem find again, , beyond me anyway... bear in mind i'm @ level of self-taught html & css - whilst i'm learning, there limits how far can go! thanks, matt. the page @ http://www.magic-dust.co.uk/wedding-planners-coordinators-news-themes.html jjust giving bump - advice apreciated... More discussions in Dreamweaver support forum ado

Installation/Startup - Joomla! Forum - community, help and support

joomla option in our isp server, installed it. trying go joomla site http://www.mydomain.com/joomla not go there claiming not find page. tried alsi specify index.php result same. this first step joomla. doing wrong? thanks shimon is "joomla" directory that chose install package in?  more precisely j oomla correct directory or maybe j oomla (lowercase "j" instead of uppercase "j" ) Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

System Message Box ???

i'm trying set system message box comes after user enters in text. if typed in equals stored system variable, comes warn them. there way have message box display variable. want say, "sorry, term {system variable entered user} exists". i've tried playing around equals sign, quotation marks, brackets etc, can't work. any suggestions awesome, thanks "rodimus_prime" <webforumsuser@macromedia.com> wrote in message news:fncmov$5u0$1@forums.macromedia.com... > i'm trying set system message box comes after user > enters in > text. if typed in equals stored system variable, > comes > warn them. there way have message box display > variable. > want say, "sorry, term {system variable entered user} > exists". i've tried playing around equals sign, quotation marks, > brackets etc, can't work. "sorry, term "^sys_var_name^" exists" chris forecast More discussions in Authorware

Combobox and PHP Form Help

hi there, buidling enquiry form on website , have combobox has 6 values in , when email sent uses php send form. on testing works email sent , email fields , name of combobox appears no value/ user has selected. can help, problem php or flash file? below php code: the part combobox relating "interested in: " <?php $sendto = "??@??.co.uk"; $subject = "???"; $headers = "from: " . $_post["name"] ." <" . $_post["email"] .">\r\n"; $headers .= "reply-to: " . $_post["email"] . "\r\n"; $headers .= "return-path: " . $_post["email"]; $message = "name: " . $_post["name"] . "\r\n" . "company: " . $_post["company"] . "\r\n" . "email: " . $_post["email"] . "\r\n" . "address 1: " . $_post["address1"] . "\r\n" . "address 2: " . $_p

Audio recording/Playback with LCD for Date/time display with message

hello all, getting started on project include ds1307, lcd display of sort , arduino uno r3 or may consider arduino mega 2560. think i2c ways go? please confirm. also, please confirm if should go mega 2560 project since have lcd display, ds1307 , kind of mp3 shield. or can can away arduino uno r3 core micro-controller using i2c? so @ end of day, like  build talking clock. 1 can record voice , playback @ specific date/time with clock display , audio record playback currently, have arduino uno r3. i guess parts list allow me plug , play as possible full thanks Arduino Forum > Using Arduino > Project Guidance > Audio recording/Playback with LCD for Date/time display with message arduino

Web browser recommendations - Raspberry Pi Forums

i had expected there many posts on topic quick search has not found closely match question. have owned raspberry pi 1 years. gives service web server not client. runs out of steam on simplest website. have bought new pi 2 hope cope better. plan have permanently connected tv. when want quick web session, pick wireless keyboard , mouse , off go. have new pi , have loaded raspbian. see 1 browser included default: epiphany. copes google mail. partially copes facebook, middle column of posts not columns either side; no error, empty white space. crashes on google , bbc news. other browsers available , have suggestions of may cope these sites? try using opera on windows. that's best option. raspberrypi

SPST Push Button Switch 3A 250V off-on per Arduino

Image
salve tutti, ho intenzione di costruire una pulsantiera (da giochi quiz) per diletto personale. nel cercare componenti ho trovati questi pulsanti. mi chiedevo, quindi, se si potevano connettere ad arduino facilmente: il mio dubbio nasce (per ignoranza in materia) che ho letto che questi pulsanti supportano fino 3a, mentre arduino fa scorrere fino 40ma. grazie mille in anticipo  ps: le caratteristiche dei pulsanti sono in allegato. stai mescolando un po di cose che sono diverse. i 40 ma sono la corrente massima che un pin programmato come uscita puó dare al circuito cui é collegato. ci sono altri limiti piú restrittivi quando usi piú pin in contemporanea. i 3a 250v del pulsante sono valori massimi che puó sopportare per la durata specificata dal costruttore ( per esempio 10000 scatti) la stessa cosa vale per contatti telé e altri contatti meccanici in generale. questi valori sono abbastanza elastici nel senso che non si rompe subito se piloti un motore 4a,

help fine-tuning LED binary clock

Image
ok, first real project.  it's binary clock -- not bcd, mind you, "true" binary.  so,  first bit half days, second bit quarter days, eighths, etc.  here's example:  http://www.abulsme.com/binarytime/ i set on breadboard 10 leds expand 4x4 matrix demuxer. i thought pretty straight-forward, clock seems gaining 6min/day.  i've poked around on forums here , heard normal because uno uses ceramic rather crystal resonator.  so, there 2 ways go fixing it:  hardware -- rtc crystal resonator ; or software -- measure inaccuracy , compensate in code.  which route should take?  able use rtc thing since doesn't use hh:mm:ss?  or if go software route,   talk me through that?  , maybe dumb down little novice? here's code.  thanks! code: [select] const int led1 = 4; const int led2 = 5; const int led3 = 6; const int led4 = 7; const int led5 = 8; const int led6 = 9; const int led7 = 10; const int led8 = 11; const int led9 = 12; const int led10 = 13; int ledstate1 =

SPI0 in ALT0 - Raspberry Pi Forums

i'm wondering if documentation alternative functions of gpios correct. on page 102 in http://www.raspberrypi.org/wp-content/u ... herals.pdf i'm told, spi0 double-available, i.e. gpio7-11 , gpio35-39 both carrying spi0 signals. besides, pull-resistors not equal in direction, working against each other. can not imagine, correct... searching internet did not helped me. in advance. i doubt matters. pull-up/downs relevant when line isn't been driven. spi gpios driven. raspberrypi

Arduino 3.3V and LiPo UPS

Image
i'm looking easy , smart   way have 3.3v arduino pro mini 1 little lipo (1 cell - 1s)  embeded, acting ups. lipo must on charge when external power (from dc or usb) available , feeds arduino when dc or usb unplugged. of course, arduino mustn't turn off in meanwhile! i know olimexino , same arduino pro mini. i don't want use shield. must cheap solution. found couple of ics useful: max1551/5 , ltc4071. has worked on matter?! one solution battery charger adafruit sells.  you hook battery up, , if there external power, uses charge battery.  you can charge while arduino running.  adafruit sells 3 different modules of charger can power chip while charging batteries: http://www.adafruit.com/products/280 - can charge battery mini usb plug (5v) or 2.1mm dc adaptor (5-12v); http://www.adafruit.com/products/259 - can charge battery mini usb plug (5v); http://www.adafruit.com/products/390 - can charge battery mini usb plug (5v) or 2.1mm dc adapter (5-

Thread: new install won't boot

hi, there. here's happens: when startup machine, grub menu displays, doesn't anything. totally non-responsive. hitting keys on keyboard causes computer beep. trying setup ibm thinkpad series 1400 linux. worked fine windows on it. installed puppy , struggled it. thinking different distro might work puppy didn't, installed debian, same result. grub bootloader both installs. grub installed in mbr, in both cases. debian liked partitions set puppy install, kept them. so, problem not hardware failure , not distro specific, nor grub (a different version each install), don't know is. there problem mbr (even though windows install on before working)? have ideas? since can boot livecd, thinks must work @ basic level. can post ouput of code: sudo fdisk -l also, may want try , reinstall grub. here standard instructions: bootup live cd, open terminal , following. code: su

Simple Machine SMF 1.1 RC3 background disappears - Joomla! Forum - community, help and support

Image
i have installed smf (simple machine smf 1.1 rc3). runs great, template background disappears @ top of forum. have in wrapper , use smf bridge component. can tell me making background disappear, , can fix this? thanks, click forum link , see mean, part of background loads. http://www.executiveangler.com i have same problem looks fixed it?  cause? Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

hello need help with coding for 2.8" TFT touch srceen

i have 2.8" tft touch srceen , have of coding done trying 1 thing.  want start set of if/else statements when push button.  here part of coding working with. touchscreenbutton buttons[] = {   touchscreenbutton("start test",tsc.createcolor(255, 255, 255), tsc.createcolor(0, 0, 0), 30, tsc.getscreenheight() - 70, 2, 10),   touchscreenbutton("endofform")   };   touchscreenform *curform = &form1; i want start if(val1 == high)   {     digitalwrite(led1, high);     digitalwrite(led2, low);     delay(2000);   }   else   {     digitalwrite(led2, high);     digitalwrite(led1, low);     delay(2000);   } hi, first of all, there no question in post. do have questions, or see how getting along building code ? second, code supposed put in code tags. you can clicking # button above edit field, , paste code. that make text better legible , prevents unwanted formatting of text you're pasting. you can use multiple if...else statements in c

Thread: Setting up a computer for music and video

hello, looking advice on this. installing 8.10 on following hardware computer in our bar: amd semprom 1.8ghz cpu 2gb ram 160gb hdd sapphire ati radeon x1650 - 256mb, 128-bit (will setting dual-monitor system, running s-video out tv) looking here should , should not install make playing audio/video flawlessly. obviously, know install restricted extras codecs , whatnot. haven't ever had issues playing music in ubuntu, have had issues choppy/pixelated video quality. doubt have choppy video playback computer, if has recommendations/tips , tricks great video quality, awesome. here comfortable using. if has better, feel free let me know. brasero frostwire transmission rhythmbox firefox totem and/or xine (i totem, xine seem give me better video quality last time had ubuntu installed) i'm sure of pretty basic , popular, said, if has ideas on better programs use or make these programs better, definetly let me know. palying videos. reason totem h

SSMTP - Tearing Out My Hair - Raspberry Pi Forums

ssmtp - tearing out hair in looking on-line see several tutorials on how set raspberry pi send email command line using ssmtp. people comment on postings have working (circa 2013). others doesn't work them. i'm 1 of latter. no ssmtp joy on pi. goal have pi email me status updates on environmental events in home. i'll move phython program, i'm trying simple outbound email test message via command line proof of operation. below contents of ssmtp.conf file , revaliases file. these configured google mail. know login , password values *work* google mail because can use web browser access account via gmail website interface values. ======================= ssmtp.conf file ======================= authuser= 3721735@gmail.com authpass=* (actual value not "*") fromlineoverride=yes usestarttls=yes mailhub=smtp.gmail.com:587 root= 3721735@gmail.com hostname= 3721735@gmail.com ======================= revaliases file ======================= pi

Script on Boot - Raspberry Pi Forums

hej, try trigger .sh file python script. code. , works fine when running sudo python refresh_trigger.py refresh_trigger.py code: select all import rpi.gpio gpio import time import picamera import subprocess sub pygame import mixer mi[b][/b]xer.init() mixer.music.load("../sound.wav") gpio.setmode(gpio.bcm) photobutton = 25 gpio.setup(photobutton,gpio.in,pull_up_down=gpio.pud_up) while true: if gpio.input(photobutton) == false: sub.call(['sh','refresh.sh']) mixer.music.play() while mixer.music.get_busy() == true: continue refresh.sh code: select all wid=$(xdotool search --onlyvisible --class midori|head -1) xdotool windowactivate ${wid} xdotool key ctrl+f5 try run script , launch browser on boot. browser: /etc/xdg/lxsession/lxde-pi/autostart @xset s off @xset -dpms @xset s noblank @midori -a http://www.google.com script crontab: @reboot sh /home/pi/path/launcher.sh >/home/pi/logs/cronlog 2>&1 launcher.sh

Allvideos 2.0 and compatability with the new IE7.0 - Joomla! Forum - community, help and support

using allvideo plugin v2.0 on site.  just tried page new ie7.0 , screen shows broken graphic link! works ok firefox 1.5x  , new ff2.0  , ie6 anyone seen problem?  or ideas?? ryeworth some users have reported use of templates "breaks" display of videos on allvideos. please revert default (solarflare) template , confirm if videos show on ie7. if so, it's template issue. if not, please report back. Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Plugins/Mambots

flash player 9 beta does not install on opera 9 mac (intel)

hi all, i installed latest opera 9 on new intel mac. tried install flash player 9 beta intel mac. player correctly installed on browers (firefox, sarafi) except opera. there no error messages shown during installation, when tried view flash content in opera, there nothing showing (getting blank area instead). idea problem is? cheers, larry just follow up. does have idea why beta flash player 9 can not installed opera on mac intel? or there wrong installation? please help, thanks More discussions in Using Flash Player adobe

Image file missing - Raspberry Pi Forums

i've downloaded noobs ... formatted sd card (admittedly 2gb) ... transferred files zip folder onto sd card ... won't boot ... 4 colors on screen. tried getting win32 disk imager , realised image files have in noobs download 'recovery' , 'recovery7'. raspbian-wheezy doesn't seem there. going wrong? tdrsam wrote: i've downloaded noobs ... formatted sd card (admittedly 2gb) ... transferred files zip folder onto sd card ... won't boot ... 4 colors on screen. tried getting win32 disk imager , realised image files have in noobs download 'recovery' , 'recovery7'. raspbian-wheezy doesn't seem there. going wrong? need @ least 4gb sd card standalone raspbian, 8gb preferable noobs installer. instructions linked of downloads page http://www.raspberrypi.org/downloads raspberrypi

صلاحيات لعضو معين - Joomla! Forum - community, help and support

Image
السلام عليكم أيها الجمليوون العرب  سؤالي هو : هل يمكن إضافة رابط في القائمة الرئيسية لعضو محدد بحيث لا يمكن رؤية هذا الرابط من قبل عضو آخر ولو كان من نفس المجموعة ؟ السؤال بصيغة أخرى : هل يمكن إعطاء صلاحيات على مستوى الأعضاء فرداً فرداً تحياتي لكم مع تمنياتي لكم بجملة مفيدة  [rtl]هذا غير ممكن للأسف فجملة تعتمد على المجموعات ( groups permissions ) أهلا بك في المنتديات الرسمية [/rtl] Board index Joomla! International Language Support International Zone Arabic Forum جوملا! 1.0 لوحة التحكم

Voting-based LED control?

Image
hi everyone, i'm using arduino yun , wondering how should approach voting-based led control. let's there 2 leds attached arduino, red , green. , there 3 users controlling them. leds controllable through webpage. here's catch: when user #1 tries turn on green led, notification sent user #2 , user #3 ("user #1 wants turn on green led. yes or no?"). if user #2 , user #3 yes, green led turned on. however, if no, green led won't turned on. any suggestions on how can approach this? thanks lot! quote and there 3 users controlling them. do have 3 different arduinos or 3 buttons on 1 arduino? Arduino Forum > Using Arduino > Project Guidance > Voting-based LED control? arduino

Problems with transferring joomla to new server - Joomla! Forum - community, help and support

This summary is not available. Please click here to view the post.

Couple of Questions, Please help - Joomla! Forum - community, help and support

i've been using joomla while still can't figure out thew 2 things 1.  how can small boxes (ad space) on right side of front page (like poll) 1. how come java scripts dynamicdrive.com doesn't work?  please help.  hi the ad space module.  modules have positions.  so, if want appear on right hand side, go site / modules, select module , change it's position. with regard javascripts, there 2 possible reasons: 1. there variable in dynamic drive script same name variable in 1 of joomla scripts. you might able see error using javascript console extension firefox. 2. content editor may stripping javascript page. view source of public page see if javascript making onto page.  if not, go forum content editor find out how paste code. regards brendon Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Thread: Help me change my music into mp3 form!!!

how change format of music files mp3's instead of "ogg". went music extractor, properties, , tried select list not available choice....any out there? haven't been able drag , drop music of available programs (ie: songbird, amarok, banshee, rythmbox) , sync them ipod. assuming problem might music in "ogg" form? what music extractor using? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Help me change my music into mp3 form!!! Ubuntu

rasbpian (installed with noobs) won't boot up - Raspberry Pi Forums

i've messed config.txt , raspbian won't boot... i've backup file in same folder don't know how make primary... how can that? from https://github.com/raspberrypi/noobs/bl ... /readme.md on subsequent boot can press shift key enter noobs interface , reinstall choice of oses. noobs interface provides following functionality: install: installs selected oses onto sd card. changing selection erases oses installed. edit config: opens text editor allowing cmdline , config selected installed os edited. raspberrypi

LCD control by Phone Calls

hi, i have problem here, have arduino uno connected gprs shield sim900 , 16x2 lcd display. i want lcd print "authorized" caller name when call made number in contact list. calling other number must print "unauthorized" caller number. thanks in advance. it doesn't appear shield accesses caller id information. Arduino Forum > Using Arduino > Project Guidance > LCD control by Phone Calls arduino

Rasberry Pi 2 Questions - Raspberry Pi Forums

Image
be gentle i'm new bought rasberry pi 2 on excitment able run version of windows 10 on , on how powerful was. said background programming in c# , there i'm windows guy. i'm getting holiday light shows led/dmx lighting. thought able use little guy run light show. i've received unit , have wait on windows 10 believe may able same linux distro more of learning curve me since i've not done linux in 20+ years. before of need more hardware complete build thing need for. inside cableguard encloser dmx controllers 12v power supplies. able use existing 12v power supplies power board along other items attached it. useing rj45 network connection. need output audio fm transmitter or if it's possible attach fm transmitter directly save money on buying transmitter well. through whole mounted antenna on cableguard ecloser ideal. not need more couple 100ft of transmit power clear possible. looking forward everyone's suggestions , input on this. has

Maxim 7219 - Real and Fake compared

Image
i came across nice pictures. it's dutch site translated comments. link: http://www.circuitsonline.net/forum/view/85013/7 pictures robinf. removed chip housing sulphuric acid. ouch!   real / fake maxim 7219 compared: upper: real maxim 7219 lower: ebay maxim 7219 real maxim: this circuit inside upper chip on first photo. the layout seems same on maxim datasheet page 14: the chip 2mm x 2mm (0.0078" x 0.0078") indeed, chip seems real one: fake maxim 7219: this photo of inside of lower chip on first photo: this chip 1mm x 1mm (0.0039" x 0.0039"). seems more modern production technology? no text on chip surface, scissor image... comments picaxe thread pointed out paulrb: http://www.picaxeforum.co.uk/showthread.php?22481-real-or-fake note that: - end pins "half pins" - shown "full-pins" on maxim datasheet - 2 moulding marks on top - lack of dimple pin one - underneath perhaps - 2 moulding marks 2 alphanumerics in each , no printing? - e

5100 ethernet and Due

i trying compile working-on-a-mega project new due using ide 1.5.6r2 - , have got stuck on problem w5100.h :    w5100.h:339: error: 'ddrb' not declared in scope (and _bv,  , portb) this seems fundamental problem, sure has simple answer. people report managing make 5100-based ethernet shields work due, can't find details of adaptations needed. have found mention of ethernet52due.h - sounds if has been written newer w5200 chip. ideas, please. all definitions (ddrb, portb etc) avr-specific, not work on due. more can't because i've not used libs. btw, why 2 posts? ______ rob Arduino Forum > Products > Arduino Due (Moderator: fabioc84) > 5100 ethernet and Due arduino

Arduino Continuous Rotation Servo

hello everyone, i working on bot project , have taken portions of robot , spread them out. im working on wheels far. have 2 continuous rotational 'servos' powering wheels. having trouble code it. on basic stamp used pulsout() unreliable , sketchy, on arduino uno rev3 using, trying best rotating set amount of time. know not possible code in degrees want turn, using servo.microseconds(x) able delegate direction , how fast turns. x being 90, stays still, above 90 , turns clockwise, below goes counterclockwise. my issue timing. want servo turn set amount of time. have tried loops, loops, while loops, , such. reason servo keeps spinning. any suggestions helpful? run issue before? just quick example of 1 of quick tests tried, code: [select] #include <servo.h> int time=0; int degree; servo myservo; void setup() {   myservo.attach(9);    //sets pin 9 servo myservo.writemicroseconds(90);   // sets servo not spin } void loop() {   do   {     degree = 180;     myservo.wri

Joomla! T-Shirt - Joomla! Forum - community, help and support

hello, is allowed use joomla! logo make t-shirts , sell them website?: http://www.eshirt.it/shop.php?newusrid= ... b4b6fec58c cheers as far know, have permission use logo first if use commercially: if wish use logo on commercial product usage of logo must approved. more here: http://www.joomla.org/content/view/259/70/ Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Using an Arduino as an RC reciever module

Image
hi guys, i've gotten myself stuck project kinda important , ran obstacle. i'm building quadcopter(i'm posting in robotics because seemd appropriate) , here's deal. i've made tx , rx parts using 433mhz module. first thing i'm doing trying send pot value 1 of hobbyking's kk flight controllers. i've tried sending signals using servo library. using servo.write(val) didn't good. i've tried using servo.writemicroseconds(val) no avail. have expirience in google gave no results. input signal receiver kk board given 1520us 4 channels. if works i'll making blog buildalong cheapest uav ever made. you post on birtday ,, wil give present  http://forum.arduino.cc/index.php?topic=257823 you probely want see ! Arduino Forum > Topics > Robotics (Moderator: fabioc84) > Using an Arduino as an RC reci

DHT11 and VirtualWire

hi all, if can me following problem: 1)i'm using dht11 humidity , temperature sensor library: https://github.com/niesteszeck/iddht11 2)i want add second temperature sensor via 433 mhz transmitter i'm using virtualwire library http://www.airspayce.com/mikem/arduino/virtualwire/ , when dht11 readings -3. so i'm considering conflict somewhere. ideas ? thank you. please post code ... , schematic ... Arduino Forum > Using Arduino > Project Guidance > DHT11 and VirtualWire arduino

Thread: can't see xp network

i can't see 1 of xp network, ideas here smb.conf [global] workgroup = pretty netbios name = xp server string = samba %v on (%h) security = share printcap name = cups disable spoolss = yes show add printer wizard = no [printers] comment = printer in linux path = /var/spool/samba guest ok = yes printable = yes use client driver = yes browseable = no [security] read = no available = no ubuntu connects xp default, don't need samba. need samba running in order windows computers see ubuntu system. can ping of windows computers on network? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [ubuntu] can't see xp network Ubuntu

Script python no arranca desde rc.local - Raspberry Pi Forums

buenas de nuevo. creado un script python el cual lanzo desde línea de comandos con: code: select all sudo python programa.py y funciona perfectamente. pero ahora me interesa que se ejecute automáticamente cada vez que se encienda o reinicie la rasp. pues bien ido editar el fichero rc.local y añadí esta linea: code: select all pyton /etc/myscripts/programa.py & reinicio la rasp, y nada, el programa no arranca. estuve buscando información, y vi una posible solución, que era crear un bash que lanzase el py, y este bash era el que añadiría en rc.local. pero tampoco me funciona. más info: en el py hago uso de pines gpio. en el py probado poner antes de hacer nada un sleep(100) para que espere 100 segundos y dar tiempo que arranque todo bien en la rasp y ya despues de esos 100 segundos comenzar el script, pero tampoco funciona. no se por qué puede ser. en rc.local tengo otro bash puesto que me manipula un tema de bases de datos, y este funciona perfecto.... asi que no se p

Question on Interactive Display Case Project

hello all, i'm not real experienced programming i'm trying work through it.. have working sketch i'm wanting change behavior , can't figure out how it.  it's beyond current skill. i'm working on display going in childrens museum.  idea simple.  it's interactive display case.  4 items on display.  user opens 1 of 4 doors. each door has it's own switch.  opening door triggers mp3 player play specific mp3 file , switches relay light associated object in display.   the relay stays on until mp3 finished playing , turns off. mp3 can send serial hex command of 0xff when done sketch waits happen , turns off relay.  i have working ok, possible interrupt playing file when different door opened.  sketch right nothing until file done playing.  code: [select] // super hero gadgets // mp3s - 01 = bat sprays, 02 = utility belt, 03 = bat phone, 04 = robin's vest int relay1 = 2; // bat sprays int relay2 = 3; // utility belt int relay3 = 4; // bat phone int

Seneste indlæg på en anden hjemmeside - Joomla! Forum - community, help and support

kan man få modulet latest news vist på en anden side. altså på http://www.dom æne1.dk få vist modulet på http://www.dom æne2.dk. hvis det kan lade sig gøre - hvordan. hej jass, du kan iht. få det til @ se sådan ud vha. domæne1´s rss-feed, og ved så @ anvende et modul til visning af feeds på domæne2. standard joomla! feed viser forside nyhederne, så hvis du vil have sidste nyt der ikke vises på forsiden, kan du anvende en komponent til @ danne det rigtige feed. på domæne2 henter du så det dannede feed via et modul. eks.: output fra domæne1 via rss feed manager: http://extensions.joomla.org/component/ ... itemid,35/ input til domæne2 via fetchrss: http://www.joomlaos.de/option,com_remos ... ,1221.html 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

Arduino GSM shield + Arduino Uno

dear all: i need project based on gsm shield.. i want switch on , off 4 appliance using sms /dtmf call. task 1: doing sms like    "appliance 1 on"        or               "appliance 2 on "               ............ on particular device. similarly sms like      "appliance 1 off"  or     "appliance 2 off"       ............ off particular device. task 2: if call on gsm shield want receive call automatically on pressing 1,2,3,4 during call   then should on 4 appliance , on pressing  5,6,7,8 during call should off 4 appliances using dtmf. i want these both task in single code. waiting corporation.... quote waiting corporation.... my corporation won't helping you. my cooperation might forthcoming, after post code. Arduino Forum > Using Arduino > Project Guidance > Arduino GSM shield + A

calling Javascript in Flex

hi have mxml file has button control <mx:button id="toggle" label="test" click="togglebutton()" /> when click on button want call javascript function. in mxml script have public function togglebutton(): void { var f:string = "jstogglebutton"; var m:string = "this works"; var check:string; if(externalinterface.available) { externalinterface.call(f,m); check = "true" } else { check="false"; } trace(check); } ]]> now created text file rightclicking on assets(the folder created) folder in project , new-->file. i have written javascript in file , named javascripttoggle.html this file has following code <script language="javascript"> function jstogglebutton(m) { alert(m); } </script> it not seem show alert box trace shows true externalinterface.available. am missing important????? i new flex. might simple of them. please bear me. is javascript file include

Recherche de la référence d'une diode

bonjour , je veux protéger les circuits carte arduino+l298n +l297 par un pond de diode , quel'est la référence de diode que je peux utiliser pour le réaliser   j' utilise un moteur pas pas 12v/2.8a merci tu  cherches un pont de diode pour redresser de l'alternatif en continu en amont du montage sur l'alimentation, ou plutôt une diode de roue libre entre moteur et pont en h ? Arduino Forum > International > Français (Moderators: jfs, Snootlab) > Recherche de la référence d'une diode arduino

Main Site Pic is Tiled in the Table, How do I change it?? - Joomla! Forum - community, help and support

hey all, title says main site picture tiled , when content goes wide, can see 2 of pictures next each other: http://rolandsupplies.com/index.php?opt ... &itemid=31 how can make picture stop doing this? thanks! i don't mean sound rude best approach dump table based template , go css based template. wouldn't take work use 1 of many free css based templates , you'd better off in long run ;-) Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Thread: HTML Editor

Image
could please recommend html editor me? html validation ( http://validator.w3.org/ ) within program helpful comments. thanks! posted brandoncolorado could please recommend html editor me? html validation ( http://validator.w3.org/ ) within program helpful comments. thanks! here's 1 you: screem . has tidy check both xml , html. editor.jpg preview.jpg install terminal, type: code: sudo apt-get install screem Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] HTML Editor Ubuntu