Posts

Showing posts from July, 2012

Looking for eletronic paper PADD - Raspberry Pi Forums

Image
i wonder whether find padd (personal access display device) somewhere. tablet devices not match category because they're focused around consumers , bit heavy. i'd expect color e-ink displays work. can't find that'd have been designed open software stack or people things. here have strong doer-culture in raspberry pi forum board. wonder if you'd have seen padd manufacturer yet? it's bonus point if comes lcars else fine too. what link between padd , raspi? plan? i'm interested! raspberrypi

Template JS Lunar Eclipse : "show/hide nav" ne fonctionne pas ! - Joomla! Forum - community, help and support

Image
bonjour à tous ! voilà, je suis tombée amoureuse du template js_lunar_eclipse et je l'ai déjà installé sur pusieurs de mes sites ou des sites d'amis, et là je voulais l'installer sur un nouveau site qui lui est sur un hébergeur payant (les autres étaient gratuits). il s'agit de celeonet.fr. et donc tout s'est bien passé excepté que... lorsqueje clique sur le "bouton" "show/hide nav", eh bien le menu commence à bouger mais me renvoit immédiatement à la page d'accueil !!! je comptais énorément sur cette fonction pour mon site... j'espère que l'un d'entre vous aura une solution ! voici l'url du site en question : http://hpcollege.celeonet.fr merci !! pas d'idée ?  en fait je voulais surtout savoir si ce problème venait de l'hébergeur (et à mon avis ça ne peut venir que de là), et savoir d'où vient ce problème, exactement, pour que je puisse le contacter et lui demander s'il peut effectuer quelques changements......

Declaration of a Dynamic Array of Objects

hi guys, embarrassingly, i'm having little trouble declaring global array of objects dynamically. right i've gotten following working: sketch code: [select] #include "myclass.h" #define rows 3 myclass arr[rows]; header code: [select] #ifndef myclass_h #define myclass_h #include "wprogram.h" class myclass {  public:    myclass();    myclass(int var);    int getvar();  private:    int _var; }; #endif you can guess myclass.cpp file looks like. however, if try dynamically, sketch code: [select] #include "myclass.h" #define rows 3 myclass *arr; void setup() {  for(int = 0; < rows; i++) {    arr[i] = new myclass;  } } i error code: [select] error: invalid conversion 'myclass *' 'int' i trying on project of mine, , received code: [select] undefined reference 'operator new[](unsigned int)' i've done quite bit of searching earlier , unable find stuck @ similar spot. many in advance! ...

[BUG?] FLVPlayer doesn't work on fullscreen swf

if using flash cs3, try creating flash movie, using flvplayer component play flv video , make executable projector. run fullscreen , watch how screen stays black when video should appear. if stay windowed, works fine. steps reproduce: 1. create flash movie (on cs3, flash player 9 as3) 2. put flvplayer component on frame that's not first (for testing purposes) 3. before projector reaches frame flvplayer component, change fullscreen (by script or ctrl+f) observed behaviour: not video doesn't play, whole screen black until player goes windowed mode expected behaviour: video should play remarks: if skip step 3, video plays correctly lt.cyx[uga] wrote: > if using flash cs3, try creating flash movie, using flvplayer > component play flv video , make executable projector. run > fullscreen , watch how screen stays black when video should > appear. if stay windowed, works fine. > > steps reproduce: > 1. create flash movie > 2. put flvplayer ...

function not declared in scope

this program (not finished can see): code: [select] // constants const char state_default  = 'a'; // environment variables long currenttime = 0; char state = state_default; int redinterval   = 0; int blueinterval  = 0; int greeninterval = 0; long redstarttime   = 0; long bluestarttime  = 0; long greenstarttime = 0; void setup() {  serial.begin(9600);  setcolorinterval(redstarttime, redinterval);  setcolorinterval(bluestarttime, blueinterval);  ssetcolorinterval(greenstarttime, greeninterval); } void loop() { } void setcolorinterval(long &starttime, int &interval, int mininterval, int maxinterval) {  if((starttime == 0) || (currenttime - starttime >= interval))  {    interval = random(mininterval, maxinterval);    starttime = currenttime;  } } void setcolorinterval(long &starttime, int &interval) {  setcolorinte...

Creating Math Formulas in Dreamweaver

i've been given assignment create web page online precalculus mathematics course using dreamweaver. know enough web site design creating basic sites, quite challenge me! course materials in ms word format , lot of formulas appear have been created formula editor. tried copying formulas word doc , pasting them dreamweaver, distorted (and have feeling isn't great idea). out there have experience creating mathematical formulas in dreamweaver--or importing them program? there literally hundreds of formulas , diagrams throughout course, i'm looking efficient way of doing this. try these resources: http://www.unics.uni-hannover.de/nhtcapri/mathematics.html http://www.cs.tut.fi/~jkorpela/math/ -- alec fehl, mcse, a+, ace, aci adobe community expert author: microsoft office 2007 powerpoint: comprehensive course (labyrinth publications) welcome web design , html (labyrinth publications) co-author: microsoft office 2007: essentials (labyrinth publications) computer concept...

Thread: How can I run Update Manager from console

i use update manager update, possible same effect console ? update know sudo apt-get update. code: $ apt-get update or $ aptitude update will update data-base, while code: $ sudo apt-get upgrade or $ sudo aptitude upgrade will upgrade software accordingly sources.list Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] How can I run Update Manager from console Ubuntu

SPCR values into string

i spcr values displayed on screen fine command below, couldn't copy them string variable (that should possibly contain leading zero(s)).   serial.print(spcr, bin); kind of feel dumb ask - advice appreciated. may it's better formulate question in different way. we know spi settings determined arduino spi control register (spcr). the question is: how can read out values each of specifc bits , store each of them different variable? in spi these bits are: spie, spe, dord, mstr, cpol, cpha,  spr1, spr0 i'd values displayed on screen , put string-variables named like: v_spie, v_spe, v_dord, v_mstr, v_cpol, v_cpha,  v-spr1, v_spr0. displaying values of spcr on screen not problem, except leading zero's omitted. command [font=courier]serial.print(spcr,bin);[/font] how can avoid leading zero's? how can read each bit separately? help , advice appreciated. thanks. Arduino Forum > F...

Nie mogę wstawić javascript?? - Joomla! Forum - community, help and support

witam używałem wcześniejszej wersji mambo 5.1.... gdy wstawiłem scrypt java nie było problemu. wstawiałem go jako tekst wyświetlał się tak jak powiniem. zainstalowałem joomla ... nic, wstawiam jako tekst wyświetla sie jako tekst na stronie. czy dla takiego lamera jak ja jest jakiś sposób żeby zmienić w łatwy szybki spoób. wstawiałem w artkułach w postaci:

Noob syntax question re: variables

Image
i'm new programming side of things.  so after reading variables should named person can consume easily, wondering...   verbosity of variable names matter once code compiled?   in other words, long variable names take more memory space in program short ones? for example: byte myvar = 1; or byte myveryusefullydescriptivevariablename = 1; thanks! i think not. it's alias actual variable (adress in ram) compiler translates in appropriate machine instructions when compiling.   Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Noob syntax question re: variables arduino

Is an arduino needed at all?

i wish make exhibition #2, coffee mill: http://vimeo.com/10173262 from understand, sound being recorded , processed program written in processing - running on arduino, or on pc? if there no way on arduino , pc required, why use arduino @ all? same effect can achieved usb input components instead of hall effect sensors... i need figure out how proceed, , whether can keep computer out of or not decision immensely. thanks in advance! also, i'm new hardware have been coding long time. quote from understand, sound being recorded , processed program written in processing - running on arduino, or on pc? processing runs on pc. quote why use arduino @ all? in coffee mill example, there needs sensor report how fast, , in direction, handle being rotated. processing not designed interact external hardware (external pc is). arduino is. arduino (if 1 used in coffee mill) able read sensor, , provide information pc (via serial port, processing can read). quote the sa...

Thread: Show desktop and screenlets

i want able hit "show desktop" app or use command minimize windows @ once , still able see screenlets. if use "show desktop" app, screenlets hidden, doesn't make sense me. have tried set screenlets "below", still hide. know there compiz widget layer, use other screenlets. want have set of screenlets on desktop, want see shortcut. keybinding in compiz general settings allow minimize windows individually. ideas? i solved recently. in compizconfig settings manager, under "general options" uncheck "hide skip taskbar windows". read in thread , worked. think that's needs. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Desktop Environments [ubuntu] Show desktop and screenlets Ubuntu

Raspberry Pi workshop is now available at TenetTechnetronics - Raspberry Pi Forums

[url]tenet varsity [/url] excited announce workshop on raspberry pi out! after our last couple of workshops arduino, beagleboard , pandaboard know wouldn’t keep down,we wanted kind of fun used , in day on raspberry pi workshop. think raspberry pi workshop new technology might drive, new training bit more innocent still super! keep eye out tenative dates announcing shortly! more information, please send mail @ raghu@tenettech .com or visit @ http:// http://www.tenettech.com or varsity.tenettech.com wow html tags , urls showing raw (and not "clickable") in google chrome.. not kind of thing sounds promising if want further education you, think pass now. offer. raspberrypi

Thread: Little lost with GRUB and NTFS access

i have xp , windows 7 rc installed on first 2 partitions of raid 0 array, , have ubuntu 9.04 installed on 3rd partition, , rest set ntfs partition going use share documents between 3 oses. installed ubuntu off of alternative cd, raid array detected, , install worked flawlessly. windows xp , 7 can access each other's partitions , shared partition. ubuntu cannot see either, nor can see shared partition. ubuntu can access 3rd hd, formatted ntfs, i'm not sure why can't see rest of raid 0 array. also, i'm having problems grub. can boot ubuntu straight grub no problem, when try boot windows bootloader (says vista loader), error "21: selected disk not exist." know windows installations still intact , usable, i've used super grub boot disk boot them using windows, boot windows tool. tried rebuilding grub before, didn't know doing, , ended ruining windows installation, i'd avoid doing again... ...

16F877's PWM to output 38KHZ data to transmit?

infrared---currently i'm using pic16f877 create pulsing(eg : 10101010) receive keypad ir transmitter transmitted. wish use feature pic16f877 pwm create carrier frequency 38khz combine pulsing(10101010)  to send signal ir transmiter ir receiver 38khz. attachment below simple coding send data(10101010) without using pwm output. can me amend coding in order output pin pwm in pic16f877 create 38khz carrier frequency please!!!!!!!!!!!!! list p=16f877,f=inhx32, x=off include <p16f877.inc>      __config _cp_off & _pwrte_on & _xt_osc & _wdt_off      errorlevel -302 ;suppress bank warning tmro            equ      1 status            equ      3 porta            equ      5 portb            equ      6 trisa            equ ...

Thread: OpenOffice string formatting

ok, i've been beating head against wall trying 1 sorted out. have spreadsheet in open office, have bunch of fields 12 character alphanumeric strings. want these fields display mac address formatting like: 12:34:46:78:ab:cd. if go format -> cells, if field full of numbers (with format string ##:##:##:##:##:##) doesn't work on text fields. looking around i've found these formatting strings can separated sections semicolons different formatting depending on field content. officially oo's documentation says these fields are: positive;negative;zero investigating further suggests excel allows 1 step further of: positive;negative;zero;text tried giving format string of: ;;;##:##:##:##:##:## format cell, instead of giving me field formatted mac address, quite literally string: ##:##:##:##:##:## , can't seem find open office might take wild card can cell formatted. ideas? i'm hoping i'm missing obvious , indeed possible. ...

Thread: Giving a user sudo permissions

hi, set group of users called accesscontrol which able access users-admin command. have set user call john member of accesscontrol group have used visudo command add following sudoers file: code: %accesscontrol all=/usr/bin/users-admin now logged in john have couple of questions: when issue command code: sudo users-admin . user admin dialog box opens cannot unlocked allow john add user when go code: system > admin > user , groups says john doesn't have sufficient privilages. hints in right direction appreciated. thanks, nick i keep thinking entry should code: %accesscontrol all=(all) /usr/bin/users-admin little rusty. either way can test sudo -l user see can run. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Giving a user sudo permissions Ubuntu

Problem with porting Arduino sketch to WiringPi - Raspberry Pi Forums

i want make rather simple arduino sketch work on raspberry pi using wiringpi libary gordon. on arduino uno sending infrared signals tv. nothing more little advanced led blinking guess i'm keep failing port c/wiringpi syntax. i'm little familiar c++ not c, here appreciated. note, c code compiling fine instant exiting when run , doesn't print test message. arduino sketch: const int irledpin = 13; const int buttonpin = 2; const int dm = 520; int buttonstate = 0; void setup () {    pinmode (irledpin, output );    pinmode (buttonpin, input );    serial . begin (9600); }   void loop () {   buttonstate =  digitalread (buttonpin);    delay (10);    if (buttonstate == high ) {    //serial.println("sending ir signal");   sendsleepcode();   sendvolumeupcode();   sendvolumedowncode();    } }   // this procedure sends a 38khz pulse to the irledpin  // for a certain # of microseconds. we'...

Event Handlers

i'm trying run calculation on input fields. want run 1 calculation if radiobutton selected; want run different calculation if other radiobutton selected. correct way create eventhandler determine 1 should run? public function change(event:object):void { if (event.target == increase, subtotal, percentradio1); { calculate(); } if (event.target == increase, subtotal, percentradio24); { calculatesemi(); } } thanks! where compnent addeventlistener methods called not clear, cleans code. More discussions in ActionScript 1 and 2 adobe

'Serial' was not declared in this scope

Image
hello, i'm getting following error .cpp file i'm including library i'm writing: 'serial' not declared in scope i'm using arduino environment compile, library shows in import library menu , includes fine. file called servertaskkernel.cpp , structured follows: code: [select] #include "servertaskkernel.h" . . . void servertaskkernel::loop_() { . . .      int command = serial.read(); } and sketch includes header file is: code: [select] #include <task.h> #include <servertaskkernel.h> #define serial_speed  9600 const task* tasks[] { }; servertaskkernel g_kernel(0, tasks); void setup() {  serial.begin(serial_speed); } void loop() {  g_kernel.loop_(); } is there include file serial? i'm experienced programmer, new arduino. somehow arduino environment doesn't seem setting dependencies right? appreciated. [glow]edit:[/glow] tried removing includes , pasting of library code sketch 1 file, , didn't error. has ...

RF Link 4800bps Receiver & Transmitter

Image
hi, i purchased rf link 4800bps receiver & transmitter spark fun. i have working except how determine when transmitter powered , wait until has established link receiver before running code on receiver? code: [select] void loop(){ incomingbyte = rfserial.read(); serial.println(incomingbyte, dec); if(incomingbyte <30){    digitalwrite(red, high);    digitalwrite(blue, low);    digitalwrite(green, low);  }  else if(incomingbyte >30 && incomingbyte <40){    digitalwrite(blue, high);    digitalwrite(red, low);    digitalwrite(green, low);  }    else if(incomingbyte >40){    digitalwrite(green, high);    digitalwrite(red, low);    digitalwrite(blue, low);  } incomingbyte = 0; } im thinking ill need have sort of system i.e send 000011000011000011 @ start @ other end? i have no idea!!! t...

Imported SWF File Plays Too Fast Compared to Original File

Image
when import 9.6 seconds long swf file captivate, captivate thinks it's 3.9 seconds, , goes through whole 9.6 seconds file in 3.9 seconds; plays @ 2.5x speed. went through different options , setting, unable find helps. when stretch out time of swf movie in captivate 3.9 9.6 seconds, still plays flash file 3.9 seconds , continues on nothing remaining seconds. please tell me whether i'm doing wrong or there indeed issue. flash file i'm importing 9.6 long animation without interaction - simple animation moving text. noticed whenever got properties of flash animation in captivate, preview shows animation @ regular speed, yet @ same time shows duration time in same properties window 3.9 seconds instead of 9.6. i'm using flash 8 export. tried publishing flash file flash 8 in flash 6 , in flash 5 format. hope information helpful. thank you. hi designalistic do have access flash , source file animation using? if so, i'm thinking there mismatch between flash frames per se...

Redirect to www if not entered - Joomla! Forum - community, help and support

i want if goes domain.com redirects them http://www.domain.com cookie reasons bridge. my host told me use code im not sure place it. code: select all if ($_server['http_host'] == 'domain.com') { header("location: http://www.domain.com/"); exit; } just guess, wrap in , put @ top of template. cheers Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Display content in positions where modules go - Joomla! Forum - community, help and support

i lot of difficulty finding module this.  want display created content in little window on side perhaps.  act introductory text. is there modules out there this?  pulls content section/category/item , display it?  hard writing one? i've searched forum much, haven't been able find solutions. really appreciate help. i'm looking well... module display content items. you can though, write text in custom module created within joomla, not elegant mix modules , content therefore i'm looking module... anybody?? Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Outputting array's

hi guys newbie arduino.  i have array trying send chip. array has 1000 integers in , want send out options in terms of number of pins use output, whether r not there should resistor between chips , code should use output these pins. thank you quote the array has 1000 integers in so @ 2 bytes per integer 2000 bytes. needs more memory arduino has. anyway best way through spi between 2 processors, suspect don't mean words say. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Outputting array's arduino

averaging filter program

i have arduino "averaging filter" looks this: code: [select] const int numreadings = 35; int readings[numreadings];      // readings analog input int index = 0;                  // index of current reading int total = 0;                  // running total int average = 0;                // average const int numreadings_ = 35; int readings_[numreadings_];      // readings analog input int index_ = 0;                  // index of current reading int total_ = 0;                  // running total int average_ = 0;   const int numreadingsa = 100; int readingsa[numreadingsa];      // readings analog input int indexa = 0;                  // index of current reading int totala = 0;                  // running total int averagea = 0;                // average const int numreadings_a = 100; int readings_a[numreadings_a];      // readings analog input int index_a = 0;                  // index of current reading int total_a = 0;                  // running total int average_a ...

counter to stop motor

i want stop motor after passes between 2 optointerrupters 5 times. works fine without counter stops @ first sensor code.  would please error is?  thanks: code: [select] int opto1 = 4; int opto2 = 5; int motor1 = 9; int motor2 = 6; int enable = 8; int val1; int val2; int counter; void setup() { counter = 0; pinmode(opto1,input); pinmode(opto2,input); pinmode(motor1,output); pinmode(motor2,output); pinmode(enable,output); digitalwrite(motor1,high); serial.begin(9600);     } void loop() {   digitalwrite(enable,high); val1 = digitalread(opto1); val2 = digitalread(opto2); if(val1 == high){   digitalwrite(motor1,high);  digitalwrite(motor2,low); counter = counter +1;   }  if(val2 == high){   digitalwrite(motor1,low);  digitalwrite(motor2,high);  counter = counter +1;   } if(counter >5){     digitalwrite(motor1,low);   digitalwrite(mot...

Custom forms and tables - Joomla! Forum - community, help and support

hi all, i develope module (or if there 1 already, fine) able check user group , depending on it, can show pages or not. i mean, have advertisement moduls, users can ask services , looking stuff, user able check his/her topics, not else's. there user group check topics , initiate search among them, normal users can register new topic , check , modify own. is there modul this? and future have separate form can register different things , can check own, own, , other group search , see them all. please send replies geri.nagy@gmail.com thanks, gery Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Menu problem - Joomla! Forum - community, help and support

hi, don't know if right forum ask apologise in advance. i trying integrate joomla , gallery2, seems ok apart main menu. if go here http://www.bbsmess.com everything looks great. although in pathway_text area click on menu item 'images' formatting goes out of window. any ideas? many thanks kev anyone?? stuck here, nothing helps! Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

Using Arduino to trigger sounds in Windows

does know if there way play sound file (.wav)in windows using arduino?  i'd wire hardware switch arduino, , whenever hit switch play sound in windows.  can done within arduino development environment? there needs application listening serial port. application when data arrives on serial port limited imagination (and programming ability). okay, there might few hardware limits , permissions issues, too. if arduino sends message "play c:\temp\happydance.wav" serial port, , there application listening understands message, then, yes, arduino can propose. doing arduino ide? no. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Using Arduino to trigger sounds in Windows arduino

help paginating results? - Joomla! Forum - community, help and support

Image
hi all... i've built component runs query using joomla database objects , successfuly prints of results.... but set long , need simple pagination.... any pointers or suggestions? thanks mospagenav object (you might able find documentation searching through forums).  basically, here's need do: 1.  load defaults like:     $limit = $mainframe->getuserstatefromrequest( "viewlistlimit", 'limit', $mosconfig_list_limit );     $limitstart = $mainframe->getuserstatefromrequest( "view{$section}limitstart", 'limitstart', 0 ); 2.  count total number of record using sql query     $database->setquery("select count(*) ... ...");     $total = $database->loadresult(); 3.  create mospagenav object, , initialize required     include_once( "includes/pagenavigation.php" );     $pagenav = new mospagenav($total, $limitstart, $limit); 4.  append query getting actual data with:     "limit " . $pagenav->limitstart ...

Video on omxplayer - Possible to move it? - Raspberry Pi Forums

Image
i have connected rpi older crt tv , watching favorite tv show '90 bu why video not "centered"? why see bash text on left? can move video left? it seems omxplayer output overlay-type surface, covers whatever there under it. in case video size can't rescaled fit full screen (without stretching) things show through. have same problem, in fact saw similar thing reported on forum but... that's it. feeling it's bug have live quite time. in case try messing around overscan settings make console window smaller - create black borders not bother during playback. it's tradeoff there less space text might worth trouble if don't need make smaller. raspberrypi

DVB-S2 PCTV 460e (tda10071) usb issues - Raspberry Pi Forums

Image
hi, first post here unfortunately, it's in troubleshooting category ! anyway, i'm working on making rpi dvb-s server (not displaying). managed buy : - usb dvb-s2 dongle pinnacle/pctv (model 460e) has own power supply. - belking powered usb 7 port configuration : - 1x rpi - 1 port rpi connected usb hub - usb dvb-s2 connected powered hub (and usb dongle has it's external power lnb too) usb dongle isn't working when connect directly rpi (it's detected, drivers loaded, firmware loaded, can't signal ok). however, work when connect dongle powered hub. great... let's try install vdr + stream server or tvheadend on fresh raspbian image unfortunately, i'm getting same results when streaming pc, using vlc or mplayer... - scan ok - signal ok - picture has lot of artefacts & of time there no sound @ all. firmware latest version (from today 2012-11-06), kernel too. more verbose tvheadend, see log (on fta channel) : code: select all...

Tabbed Text Editor - Raspberry Pi Forums

Image
i'm quite new using raspberry pi have noticed doesn't come tabbed source editor, similar notepad++ on windows. have tried using terminal editor without success. wondering if of suggest tabbed source editor ui? source code highlighting nice, tabs more important. you want geany sudo apt-get install geany raspberrypi

Thread: From mail.app to... kmail?

please don't consider message intending cause dispute. i'm asking assistance , opinions! attempting use kmail (kontact pim) , have switched on using mail.app since gave away laptop. i'm ubuntu user in linux department, , have switched on kde after 9.04. find myself on kmail , know if knows if possible have same pretty stationery mail.app in mac. if unfamiliar stationery please don't answer thinking it's header logo. mail.app had custom templates apply messages (i believe quasi-html) used greeting cards, pasting face border, etc. quite neat. possible, or there in kmail? if not, there mail application this? looked around it's hard formulate search google ton of junk responses. saw gnumail.app doesn't yet have html support in messages knocks off list now. reading, , (hopefully) answering! to clarify further, here site has samples of stationery mail.app, looking duplicate, make...

AppleScript to arduino

so have small project working on , need basic commands arduino. each command 1 character long. test have application turns on led if "l" character recieved. tryed serial monitor - wroks. but want turn led on applescript. found serialport x (applescript extension should enable serial communication). can open port arduino. can't figure out how turn led on it. if code: [select] serialport write "l" portref that should send l character arduino , turn on led - doesn't. see serial rx/tx leds blink on arduino , led blinks - doesn't stay on (it should stay on). why isn't working? edit: above script works if arduino ide in "serial monitor" mode. if arduino software isn't working thing wont work. edit2: tryed code: http://todbot.com/blog/2006/12/06/arduino-serial-c-code-to-talk-to-arduino/ and results same. thing works if arduino ide in "serial monitoring" if isn't led blinks when press enter. what hap...

Sinddsyg mange fejl W3-fejl på www.bryllup.dk - hvorfor??? - Joomla! Forum - community, help and support

hvor hulen er der så mange fejl på http://www.bryllup.dk når man evaluerer den forhold til w3s standarder? prøv @ se: http://validator.w3.org/check?uri=http% ... ype=inline det samme er gældende de andre joomlasites vi kører. jeg synes vi har gjort os umage med @ bruge gode templates, så jeg forstår ikke de mange fejl. er det reelt et problem vi skal se på eller kan vi bare konstatere, @ vi ikke overholder w3 og så er den "pot ude"? det ser godt nok vildt ud. der er mange gengangere såvidt jeg kan se er det ". men jeg har tidligere prøvet @ jeg havde en valideret template og så installerede jeg nogle komponenter/moduler og så skred det hele:-( /dan Board index Joomla! International Language Support International Zone Danish Forum Ældre versioner (disse vedligeholdes ikke længere fra officiel side) Joomla 1.0 (Udgået version, der blev afløst af 1.5 i 2008) ...

Design view goes blank [CS3]

i work split code + design view when working files , make change in code view(or in linked .css), , click in design view, design view goes totally or partially blank. either nothing appears @ all, or content appears point, , rest end blank. once happens, there absolutely no way make 'hidden' content visible. tried switch file, select code in code view, edit in code view or in design view - no go. have close / open file, , appears normally. indeed can't every minite, there solution known? there no stuff visibility set hidden or alike, if content displayed - it's displayed correctly. looks ok in major browsers. thanks this happens when have added such garbage code dw cannot figure out it. example, adding <body> or </body> tag in middle of page can such things. might what's happening for you? -- murray --- icq 71997575 adobe community expert (if *must* email me, don't laugh when so!) ================== http://www.dreamweavermx-templates.com ...

Help- using an arduino to make a midi controller

Image
hey everyone, i'm new forum i'm chris i'm having trouble getting head around many things, first ever time using arduino, , appreciate help so here goes: the project replicate mathew bellamays (from band muse) signature guitars have built in touch pad. http://www.mansons.co.uk/shopping/images/items/2375/2375_1_medium.jpg <--image here the touch pad controls piece of audio sampling hardware called http://www.kaosspad.co.uk/images/kaosspad_kp2.jpg <--(kaoss pad kp2 in case) , via http://en.wikipedia.org/wiki/midi <--midi, kaoss pad has touch pad built in, along other features wish place in guitar. point of access pads features via midi commands analogue inputs in guitar(the touch pad, momentary switch, , rotary encoder effect selection.) pad unusable guitarist in regular state. i not first want this, in fact know of 2 people have done this, here videos on youtube: " class="bbc_link" target="_blank">http://www.youtube.com/watch?v=1...

Dynamic allocation of memory

i have been looking bit "__malloc_heap_end" lately, , think there might me way malloc memory (responsibly). if curious , wants me this, start reading http://www.nongnu.org/avr-libc/user-manual/malloc.html . especially bit: " if __malloc_heap_end 0, allocator attempts detect bottom of stack in order prevent stack-heap collision when extending actual size of heap gain more space dynamic memory " if has done research on matter, please feel free post knowledge! hi invalidapple i've been looking heap management quite bit. i'll jump right in if that's ok. can start asking mean by quote there might me way malloc memory (responsibly) the reason ask can't see problem malloc. far i've looked, seems job both of not corrupting stack (if it's used correctly) , of managing freelist efficiently. (i havn't yet looked @ realloc). where see problem stack doesn't appear show same courtesy , respect heap. with regards __mal...