Posts

Featured post

TPE première S programme arduino

Image
bonjour,c'est la première fois que j'utilise une carte arduino , et c'est aussi la première fois que je programme tout cours.pour notre tpe nous avons choisi la mesure du temps et nous avons décider de travailler avec une carte arduino.on veut donc faire un chronomètre avec un pendule et un capteur qui va capter chaque passage du pendule et qui va envoyer un courant electrique jusque l'arduino, on cherche donc un programme qui transmettent ce courant electrique jusques l'affichage lcd pour que chaque courant electrique envoyer par le pendule l'affichage lcd affiche 1 seconde avez vous des suggestions ??    bonjour, avez-vous fait un cahier des charges pour votre projet ? une simple recherche avec votre "butineur" favori avec comme mots clef "programme arduino chronomètre", t'aurais déjà donné des prémisses de réponses. allez on cherche un peu Arduino Forum

Thread: Working in a Windows Network?

i have 1 ubuntu 9.10 machine on windows network of 10 computers. last half of hard drive in ubuntu machine set 1 partition , can shared rest of network. mount point pub-data. know can down need shove in right direction, how ubuntu machine share directory? security not concern, no 1 should meed login use it. ready read show me where. thanks, charles...... you need samba server installed , configured. configuring, swat decent web based tool doing it... Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [ubuntu] Working in a Windows Network? Ubuntu

Thread: Sound not working in Karmic

hello everyone, have dell inspiron 1501 laptop. upgraded 9.04 9.10. working except sound. used not have problem sound in ubuntu. 1 please me? while upgrading got same problem, i'm having dell vostro 1500 , here sound card code: fenzik@fenzik:~$ cat /proc/asound/card0/codec#* | grep codec codec: sigmatel stac9205 codec: conexant id 2c06 Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] Sound not working in Karmic Ubuntu

Printing to PDF adds printer margins

i have extremely frustrating problem. have large word doc full bleed border. need convert pdf printing, when try, "the footer/margins in section x outside printable area of page." if hit "ok," pdf created white border way around (as if printed on printer without bleed capabilities. doesn't happen me in windows. i've looked @ print settings , @ wits end. don't want have re-edit document in windows (the formatting changes quite bit, , it's 200-pager). have bleed edges in acrobat? fyi - i'm using word mac 2008, leopard os x 10.5.2 , acrobat pro 8.1.2 (part of cs3) More discussions in Acrobat Macintosh (read-only) adobe

Action Parameter on Form - Joomla! Forum - community, help and support

hi all: i creating custom form, in doing database insert. if test form outside of joomla looks following: i created static content item, have wysiwyg turned off, , pasted code in. page comes fine. i can see form , submit button. fill out form , click on submit button. http 406 not acceptable error. if @ url get http://www.myurl.com/ why url showing php code instead of running in standalone page? thanks, ray Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

[RESOLVED] JTable::addIncludePath bug, and clarification... - Joomla! Forum - community, help and support

first, thought forum being closed down?  no? second, have located believe bug in jtable::addincludepath. there usage of method designed retrieve $paths variables.  invoked not supplying parameter (i.e. jtable::addincludepath()). the default value assigned ''. then there check: code: select all if (!empty( $path ) && !in_array( $path, $paths )) this add specified path array if $path variable not empty, , if value not in array already. if $path '', should automatically fail our condition because $path should empty. but...  before have: code: select all settype($path, 'array'); this line force $path array (because $path should array directory elements). the problem forcing $path array, becomes non empty. i recommend 1 of 2 possible solutions: 1. change default value null.  in case, forced array empty. 2. move settype inside of if statement, $path gets checked beforehand , gets forced array. imo, important fix, because everytime addincludepath called without

Macht die Loop eine Pause ?

Image
ich spiele gerade mit mit meinem saleae clone. funktioniert ohne Änderung des eeproms sofort mit der orginal software, die chinesen lernen auch dazu  ein kleines simples testprogramm: code: [select] void setup() {  ddrd |=  (1<<2); } void loop() {      portd |= (1<<2);  portd &= ~(1<<2);   } bei diesem scope, ist das signal ist 0.125 high und 0,875 low.   die loop beginnt mit portd |= (1<<2); das bit setzt. dies setzt das bit dann zurück  portd &= ~(1<<2); nach meinem verständnis sollten aber die high und low zeiten hier in etwa identisch sein. oder macht die die main loop immer ende noch anderes, zeit kostet ? mit einem  portd ^= (1<<2);   in der loop sind die ergebnisse fast identisch.    quote from: rudirabbit on jan 23, 2015, 08:09 pm oder macht die die main loop immer ende noch anderes, zeit kostet ? was wirklich läuft ist das: code: [select] int main(void) {   init();   initvariant();   setup();       (;;