Posts

Showing posts from September, 2014

Aufbau steht unter Strom

hallo. ich habe folgendes aufgebaut:  schema . die 12v kommen von einem trafo, der sowohl die schrittmotoren als auch den mega (über eine diode) versorgt. unangenehm ist, dass die metallischen teile meines aufbaus (also die motoren und alle elekt. leitend angeschlossenen teile) unter strom stehen. man merkt es, wenn man beispielsweise mit empfindlichen hautarealen diese metallischen teile berührt. was läuft da schief?   quote from: phthalo on jan 31, 2015, 08:22 pm die 12v kommen von einem trafo ... was läuft da schief? deine beschreibung hört sich gewaltig danach als wenn dein "trafo" ein sogenannter "spartrafo" ohne galvanische netztrennung ist und kein "trenntrafo". dann hängst du wegen der fehlenden galvanischen trennung immer auch netz. solche spartrafos dürfen gemäß vde0100 nur dann zum einsatz kommen (z.b. in geschlossenen gehäusen, die vom benutzer auch nicht geöffnet werden können), wenn absolut sichergestellt ist, d

Rasp Pi2 help, 4x4 keypad problems - Raspberry Pi Forums

like many on forum i'm new rasp pi's / coding , i'm having trouble. i've been working on project lately in i'm trying hookup 4x4 keypad pi. i'm attempting print out pins active once press 1 of buttons. know keypad has 4 rows , 4 collums , figure out pins buttons. sake of project want able plug in random keypad don't know configuration of , still read out pins being used once press button. don't have experience pi's or coding i've came far. please excuse how bad is, i'm sure looks awful , redundant knows looking at. i'm trying cycle 1 output pin rest being input. once reach max number of pins keypad being used (which 8 in case) loop it. code: select all import rpi.gpio gpio, time gpio.setmode(gpio.bcm) gpio.setwarnings(false) #step 1 of 8 def main_1(channel): gpio.setmode(gpio.bcm) pin_1 = 4 #output pin_2 = 17 pin_3 = 27 pin_4 = 22 pin_5 = 5 pin_6 = 6 pin_7 = 13 pin_8 = 26 gpio.setup(pin_1, gpio.out,true) gpio.s

Merging PDF / Page Numbers / Acrobat SDK V9 & LiveCycle

hello everyone, i use adobe livecycle create forms, visual studio 2005 , acrobat sdk application i'm programming fill in these forms. application fills in forms , merges them no issues. the problem have these pages have page numbers in upper right. use page n of m object on these forms in livecycle. pdf page numbers filled in correctly when filling in forms, when merge pdfs, pages keep original page numbers. i've looked @ windows - interapplication communications using templates no avail. how can merge these pdf's , have program renumber these pages correctly , how can insert pages anywhere want in merge document? below code use merge pdf's. posted in forum. sub mergepdf(byval thepath string, byval outfilename string) on error goto serror dim dpddocmerge new acrobat.acropddoc dim dpddoc new acrobat.acropddoc dim strfiles() string dim numpage integer dim totalpage integer dim objthisfile io.fileinfo 'get fileinfo object file string strfiles = system.io.directo

Enable pdf tool from javascript

hi, i'm developing air application load pdf , want interact pdf through application user interface. i'm able change page, change zoom value , zoom type have problem activate "hand tool" , "dynamic zoom tool". consulted adobe "javascript acrobat api reference" , "developing acrobat applications using javascript" guides didn't find nothing about. could me? no if it's possible enable/disable hand , dynamic zoom tools pdf javascript? thanks francesca sorry terrible english. you can try executemenuitem(), don't believe works in external applications air. More discussions in Acrobat SDK adobe

LED soll leuchten während ich am poti drehe

hallo zusammen, ich positioniere mit einem poti einen servo und lasse mir das pwm signal mit dem seriellen monitor ausgeben. zusätzlich dazu hätte ich gerne als visuelle anzeige, dass der poti/servo gerade bewegt wird eine leuchtende led. quasi so: sobald poti gedreht wird--> led=high; sobald nicht mehr poti gedreht wird --> led = low kann mir hier bitte jemand mit dem code helfen? danke sehr! code: [select] #include <servo.h>   const int servopin = 11;          // digital pin 11 connected servo const int potpin = a0;            // analog pin connected potentiometer const int led = 7; int val;    // variable read value analog pin servo myservo;  // create servo object control servo   void setup() {   myservo.attach(11);  // attaches servo on digital pin 11 servo object   serial.begin(9600); // initializes serial monitor @ baudrate 9600  pinmode (led,output); }   void loop() {   int val = analogread(potpin);   val = map(val, 0, 1023, 549, 2390);     // remaps poti

[SOLUCIONADO] HC-05 Bluetooth - Lectura siempre -1

buenos días, actualmente estoy probando un módulo bluetooth basando en un código de internet en el cual dependiendo de la cadena enviada ( toda ella almacenada en un array de char ) habilita el estado de 3 diferentes led. el problema reside en que siempre que leo cualquier carácter mandado por parte del bluetooth, me retorna -1 (con independencia de que botón pulse ). adjunto código: code: [select]   #include <softwareserial.h> //librería que permite establecer comunicación serie en otros pins   //aquí conectamos los pins rxd,tdx del módulo bluetooth. softwareserial bt(10,11); //10 rx, 11 tx.   int green=4; int yellow=5; int red=6; char cadena[255]; //creamos un array de caracteres de 256 cposiciones int i=0; //tamaño actual del array   int estado = 0; void setup() {   bt.begin(9600);   serial.begin(9600);   pinmode(green,output);   pinmode(yellow,output);   pinmode(red,output); }   void loop() {   //cuando haya datos disponibles   if(bt.available())   {           seria

Form fields rotate after copying/pasting

hello all, first post forums. i created form template in word/mac, saved pdf , brought acrobat 8 pro/mac add form fields. want replace 1 of underlying pages. whenever replace page, form fields rotate 270 degrees. in addition, if open field properties , switch orientation 0 degrees, text orientation changes size of form field remains shifted (a vertical vs. horizontal landscape), meaning have resize every field. i've tried every way can think of make change, same results...i've inserted new page , copied , pasted fields, i've copied , pasted 1 document another...i've replaced pages of form instead of 1 page. same results on different computers , different versions of acrobat (tried 7 , 8). can help? according acrobat documentation, there shouldn't restrictions on moving or coping form fields , certainly, 270 shift can't normal behavior. tried rotating whole document see if work around bug no matter page orientation, fields rotate 270 degrees in relation. if o

Thread: Can't seem to run super_pi on my new i7. what's up?

i trying run super_pi on new i7 retuning "segmentation fault" find , work out? thanks powel this thread has info i7 in ubuntu. http://ubuntuforums.org/showthread.php?t=1305455 Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] Can't seem to run super_pi on my new i7. what's up? Ubuntu

Toslink Audio Input Board or HAT for RPI 2 - Raspberry Pi Forums

Image
i have searched , searched , not find board toslink input connect toslink cable tv rpi2. know if such board available. thanks cheers i searching same thing project. not in existence? need card take digital audio input of kind, preferably optical. know of anything? may have cirrus , use optical rca 3.5 mm line in... raspberrypi

PMI data from Pro/ENGINEER

hi i using adobe acrobat v8. i trying see geometric tolerances , geometric tolerance datums within pro/engineer models pmi features in adobe. i have used models wildfire2 , wildfire3, no joy. i created pro/engineer notes, , these did import in adobe acrobat, these not pmi features. i read pmi supported pro/engineer. has manged geometric tolances adobe? layer issue, or must geoemtric tolerances nd datume created in special way? thanks in advance dave hello dave, can please indicate way use create these pmi data or send sample file? pmi supported proe format when created pmi module of proe weldfire. as mentionned notes supported. i guess talking information displayed when editing feature, dimensions gd&t etc...are visible that kind of nformation not supported acrobat 3d 8 pmi created module pmi supoprted a3d. i hope helpful please keep me updated best regards william gallego qe team More discussions in Rich Media & 3D adobe

Odd things happen when you're headles (SOLVED: OpenGL) - Raspberry Pi Forums

so 1 have googled , come nothing. reset pi2b stock image using. set up. ran updates etc. , when machine plugged out monitor won't allow access ssh. if plug monitor in , unplug after boot starts snow can ssh no problem. far have gone raspi-config , told enable ssh, , ran "update-rc ssh default" "update-rcssh enabled" etc nothing works unless monitor plugged in. fyi i'm not logging in monitor plugged in. returning ssh on version of "stock image" are? on recent raspbian (jessie 2016-02-09) ? did changed entries on config.txt ? happen virgin recent official raspbian (ssh enabled default) ? raspberrypi

problema con los Pololus

hola chicos. me fabricado un eje xy para mover cds de un lugar otro y pesar que todo me funciona correctamente cuando enciendo arduino o le cargo el programa me sucede lo que os relato abajo. alguien saber el por que cuando cargo programa en arduino durante ese pequeño transcurso de tiempo hasta que esta cargado,  los drivers pololus que gobiernan los correspondientes motores en el eje xy  se mueven ciertos pasos de manera lenta pesar de que en el inicio de programa mandado la orden de tenerlos desabilitados con la patilla enable. una vez que esta cargado codigo todo me funciona correctamente y los finales de carrera ordenan correctamente el paro de dichos motores, es decir si estan en la posicion cero no actuan y estan parados hasta nueva orden. gracias hola: no se, pero diría que el problema esta en el código, o en el tuyo o en las librerías. deberías publicar el código para poder ayudarte. también podes probar de ir anulando partes del código hasta det

Swap FrameBuffer Images without gaps - Raspberry Pi Forums

hi, trying display image while calculating/preparing new one. once calculations completed , new image in memory, change display framebuffer location point new image localtion. trying change 1 image (or video) without gaps or blanking screen. have suggestions on how achieve this? in advance, fabio how writing framebuffer? way (in c/c++) create offline buffer in memory , copy framebuffer required. if updating framebuffer frequently, may want wait vsync before copying offlline buffer framebuffer raspberrypi

Thread: "ls | glade-3" not working

if i'm correct following script should open of glade files me... works if type them in hand... code: ls | glade-3 in glade-3 man-page there's no mention of accepting filelist standard input. secondly accepts 1 file argument according synopsis, you'll have run loop start once each file. code: for file in *.glade; glade-3 "$file" done if doesn't automatically background (i.e. stops @ first invocation of glade-3), can add & @ end. code: for file in *.glade; glade-3 "$file" & done oh , can on 1 line, handy interactive shells code: for file in *.glade; glade-3 "$file"; done # or file in *.glade; glade-3 "$file" & done Forum The Ubuntu Forum Community Ubuntu Specialised Support Development & Programming Programming Talk [SOLVED] "ls | glade-3&qu

[svn] 3810: Add samples for FxAnimate, FxAnimateColor, FxFade, FxMove, FxResize, and FxRotate.

revision: 3810 author: mfinitz@adobe.com date: 2008-10-22 09:05:01 -0700 (wed, 22 oct 2008) log message: ----------- add samples fxanimate, fxanimatecolor, fxfade, fxmove, fxresize, , fxrotate. added paths: ----------- flex/sdk/trunk/frameworks/projects/flex4/asdoc/en_us/mx/effects/ flex/sdk/trunk/frameworks/projects/flex4/asdoc/en_us/mx/effects/fxanimatecoloreffectexamp le.mxml flex/sdk/trunk/frameworks/projects/flex4/asdoc/en_us/mx/effects/fxanimateeffectexample.mx ml flex/sdk/trunk/frameworks/projects/flex4/asdoc/en_us/mx/effects/fxfadeeffectexample.mxml flex/sdk/trunk/frameworks/projects/flex4/asdoc/en_us/mx/effects/fxmoveeffectexample.mxml flex/sdk/trunk/frameworks/projects/flex4/asdoc/en_us/mx/effects/fxresizeeffectexample.mxm l flex/sdk/trunk/frameworks/projects/flex4/asdoc/en_us/mx/effects/fxrotateeffectexample.mxm l More discussions in Commits adobe

Thread: Defining a new file type

Image
i looking defining new file type use in specific application. want specifically: create zip file structure like zip ackage.xml //to describe contents , them :<directory> // 0 or more times :<file> // 1 or more times questions: 1) have assign new mime type have given specific program handle this, or file extension affect in given way? 2) different mime type affect library libgsf recognising zip file? 3) know of way change mime types, googling has given me few answers, drowned out problems mime type associations? if answer 1 or of these questions appreciate it, until time continue searching. regards, stephen. first of afaik mime types detected magic number , not extensions! don't need assign new mime type, mime type needed identify , via network can choose program can handle file (ex video totem if site return mime type etc) create own file, , open , handle program, in linux/ubu

App-get command not found - Raspberry Pi Forums

i installed debian 8.1.0 jessie downloads page. when tried app-get update (or app-get) says command not found. there thread says sudo may not installed default. tried following suggestions @ https://www.privateinternetaccess.com/f ... by-default however, got stuck @ step 1 login in root user 'su'. password not 'raspberry'. i've searched other default passwords can't find works. doing wrong here? khstapp wrote: doing wrong here? use apt-get instead. , use sudo superuser privilege. raspberrypi

very noob question about button tutorial

hi, i'm testing button code examples, , works, obviusly. now i'm trying use high state of button. if led low, , button high, turn on led, , keep on. if led if high, , button high, turn off led, , keep off. the problem (i think) 2 cases simultaneously. please me. first need implement edge detector, trigger when button changes being low being high. means remembering previous state of button, last thing in loop function make copy of current button state in variable called lastbuttonstate. change state of led when last state low , current state high. have variable track last state set led to. Arduino Forum > Using Arduino > Programming Questions > very noob question about button tutorial arduino

Element14 warranty through Ebay seller - Raspberry Pi Forums

hello bought rpi 2 b on ebay india in aug. 2015, through seller gave 1 year "manufacturer warranty" of element14. link which, of today, active http://www.ebay.in/itm/raspberry-pi-2-m ... oc:in:3160 worked fine till dec. 2015, when tried switching monitor (which connected set top box of cable tv). setup didn't work out well, went earlier working monitor, , found hdmi input not displaying , monitor went sleep mode. rpi running ok red , green leds glowing. no display @ all. contacted ebay seller, , got reply elementz engineers guild ( http://elementzonline.com ) asking me changes config.txt. had tried combinations hdmi display of config.txt, persisted asking change or setting. in dec. 2015, during which, ebay rules, have raised issue on ebay , go ebay buyer/seller guidelines. these elementz people kept me hanging on configuration till jan. 2016 , then, voila, nothing. no reply ebay messages, emails, nothing. in jan. 2016, ebay order went "archive" , un

Starting Omxplayer from cold - Raspberry Pi Forums

Image
i'm wanting use pi play videos on tv. have not yet decided how going control it, moment logging in via ssh , working there. if log in , launch omxplayer, comes "have nice day ". however, if "startx" first, works fine, if shutdown x-server. assume starting x , stopping leaves running omxplayer needs, presumably need set running: , how do it? sorry if 1 of obvious questions has been asked hundreds of times, have not yet found answer. can give complete omxplayer command try run ssh, parameters , filename ? raspberrypi

Beginner project idea

hello. i have not used arduino , have no experience electronics. love have go. i have idea clock works having circle of 60 leds, circle of 60 leds inside first circle , circle of 12 leds inside that. outer circle seconds, middle minutes , inner hours. work lighting next led every second outer circle, next led every minute middle , on. each circle display second, minute , hour respectively. hope makes sense. what know whether possible arduino , whether beginner friendly. thank in advance, ~perronicus so want control 132 leds.  yes, arduino can it, additional hardware.   you treat leds 16x9 matrix using 2 8-bit shift registers 16 rows , 9 i/o pins 9 columns. you use addressable led strips more expensive plain leds.  if use rgb strip need 60 leds , use colors (red, green, , blue) hours, minutes, , seconds. in either case need real time clock (rtc) keep accurate time or gps receiver view of sky. Arduino Forum

santa detector not working in python - Raspberry Pi Forums

i want create motion detector .i tried in scratch -in scratch create brodcast programme , not seeing gpio4 option in sensor block. try in python using command this ************************************************************* import rpi.gpio gpio import time sensor = 4 gpio.setmode(gpio.bcm) gpio.setup(sensor, gpio.in, gpio.pud_down) previous_state = false current_state = false while true: time.sleep(0.1) previous_state = current_state current_state = gpio.input(sensor) if current_state != previous_state: new_state = "high" if current_state else "low" print("gpio pin %s %s" % (sensor, new_state)) *********************************************************** run programme . python showing this >>> traceback (most recent call last): file "/home/pi/hi.py", line 7, in <module> gpio.setup(sensor, gpio.in, gpio.pud_down) runtimeerror: no access /dev/mem. try running root!

JPG Bild in JPG Bild einfügen

hi liebe forumsmitglieder, ich habe ein jpg bild geladen . in dieses bild möchte ich ein weiteres jpg bild einfügen. dies gelingt mir nicht. wenn ich das 2 te bild vorher umwandle in ein pdf bild dann geht es über plazieren. nun die frage. kann ich nicht direkt ein 2 tes. jpg bild ohne der umwandlung in das erste einfügen. wenn bitte wie mache ich das. mit dank im voraus josef offnen sie das bild einfach in eine zweites fenster, dann unter auswahl,- alles auswählen anklicken, nun auf bearbeiten und kopieren. jetzt wieder auf das ursprungsfenster vom ersten bild. dort unter bearbeiten einfügen. fertig mfg peter More discussions in Deutsche Foren adobe

VB6 und Objekterstellungsfehler

hallo, mit vb6 ich pdf-dateien öffnen und bestimmte informationen filtern. nun scheiter ich bereits beim einfachen verbinden von vb6 mit adobe acrobat library. die acrobat sdk (sdkinstaller.exe) habe ich natürlich installiert. folgendes habe ich bisher getan: 1. verweis auf adobe acrobat 5.0 type library im vb gesetzt. 2. in vb-form eingefügt: private sub form_load() dim app acrobat.cacroapp dim doc acrobat.cacropddoc set app = createobject("acroexch.app") set doc = createobject("acroexch.pddoc") end sub nach dem vb-start kommt die fehlermeldung: laufzeitfehler '429': objekterstellung durch activex-komponente nicht möglich. trotz vieler versuche und auf zwei verschiedenen pc´s habe ich den fehler nicht gefunden. muß noch ein verweis gesetzt werden? wer kann mir helfen? danke. hartmut callies projekt -> verweise -> adobe acrobat type library eingebunden?! btw: wenn du hier wirklich hilfe suchst, bist du falschen ort. das forum ist der grösste mü

Frage zu Serial.find()

hallo, ich habe meinen mega auf der serial1 mit meinem neuen spielzeug (esp8266 wifi-modul) gekoppelt. wenn ich einen at-befehl raus sende, dann bekomme ich auch wieder eine antwort zurück. ich benutze jetzt die serial1.find funktion, um abhängig von der antwort etwas zu steuern also in etwa so: code: [select]    if(!serial1.find("ok")) {       serial.print ("error");       }    else       {        serial.print ("ok");       } kann ich jetzt aber noch die empfangenen daten auf der debug-schnittstelle ausgeben? ein hintergeschobenes code: [select]   while (serial1.available()) {     serial.write(serial1.read()); } gibt nichts mehr aus, da vermutlich der puffer schon wieder leer ist. als einzige lösung sehe ich, dass ich nicht mit der find-funktion arbeite, sondern nur das serial-read verwende, die bytes in einem string sammle, und dann den string nach meinem suchstring parse. gehts irgendwie besser? ich meine: den serial.find befehl zu verwenden f

pulsante grande per arduino

Image
ciao tutti, sono un neofita per quanto riguarda il mondo di arduino e purtroppo molto poco di elettronica. ho realizzato un piccolo progetto. una serie di tasti sono collegati alla breadboard. quando l'omino schiaccia un pulsante l'arduino invia un messaggio al computer dicendogli che un determinato tasto è tasto premuto. sulla base di questo il computer esegue determinate azioni. ora, per passare dalla protipazione alla messa in funzione, dovrei avere la possibilità di avere dei bottoni più grandi. pulsanti forniti con arduino sono molto piccoli, mentre io avrei necessità di tasti grossi da poter premere con molta facilità, ad esempio questo: quindi la domanda, forse sciocca, è: va bene un qualsiasi pulsante o è necessario avere dei pulsanti appositi per arduino? benché io abbia cercato parecchio su internet non ho trovato nulla al riguardo... ringrazio in anticipo per la vostra disponibilità... e mi scuso per l'ovvietà della domanda, ma come ho specificato di el

Thread: New Ubuntu Update

the current version of ubuntu seems be... filled bugs. crashes. when more stable release of ubuntu going released? nice if updated sound drivers, don't work on computer. click Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] New Ubuntu Update Ubuntu

A banner ads component that works? - Joomla! Forum - community, help and support

Image
hi all, does out there have experience of banner ad module / component works? i've tried artbannersplus  , flexadvert - both recommended in forums.  both fail miserably on 1.011 site. flexadvert doesn't - ie think i've set - nothing shows. artbannersplus - can single text banner show - else - breaks ie try image - nothing shows.  try 2 banners - 1 image , 1 text - nothing shows. i've been trying past day these work. any suggestions?  please. cheers! mike with flexadvert, if nothing shows, it's either missing location id in module setup, or error in size selection banner. make sure you've worked through step-by-step guide in sig (it's not 100% relevant latest release, i've not got round updating yet - difference in manual size selection drop down instead of automatically happening. Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

/etc/default/keyboard no longer executes - Raspberry Pi Forums

for reason when booted raspbian jessie morning, caps lock key no longer performed control key. further testing showed couldn't end desktop session ctrl-alt-backspace. i'm assuming /etc/default/keyboard file no longer run on startup (it has performed correctly on jessie before today). can around (sort of) executing line: "sudo udevadm trigger --subsystem-match=input --action=change". have 3 questions: 1. made change? 2. can put command execute whenever start desktop "startx"? 3. there better workaround (or fix)? thanks, , happy new year! -geo if work after gui starts put in here.....~/.config/lxsession/lxde-pi/autostart raspberrypi

Costruzione funzione

ho cercato parecchio ma non ho trovato una soluzione: code: [select] #define ina 4 #define outa 8 int lastbs = high; void setup(){ pinmode(ina, input_pullup); pinmode(outa,output);   serial.begin(9600); } void loop(){   // invio comandi   int lettura = digitalread(ina);                    // leggo lo stato dell' ingresso   if (lettura == high && lastbs == low){       // se è alto   serial.print('>');      // delimitatore per comando serial.print('a');      // invio segnale off                              lastbs=lettura } if(lettura == low && lastbs == high){        // se basso serial.print('>');    // delimitatore per comando serial.print('a');                  // invio segnale on lastbs=lettura; } delay(50); } questo è uno spezzone di uno sketch più articolato e per snellirlo vorrei realizzare una funzione esterna  da richiamare quando serve. la funzione dovrebbe

Building A Site - Joomla! Forum - community, help and support

hi, my current website, http://www.gardenlistings.com built using html files. i'm thinking joomla might more suitable. since joomla sites created online possible work on switching site on joomla while original html based site still online. joomla included host's cpanel. thanks in advance, t yes, can build in subdirectory , move root directory when completed. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Arduino robotics, arduino boards

so i'm new arduino world. i'm working on prototype robotic arm want programmed assembly robot i'm not sure start off at. wanting know boards , attachments need? how starting existing arm , modifying electronics have arduino control switches? see owi-535 arms http://www.owirobots.com/store/index.php Arduino Forum > Topics > Robotics (Moderator: fabioc84) > Arduino robotics, arduino boards arduino

Issues Connecting With Ethernet - Raspberry Pi Forums

i've bought raspberry pi 2 model b starter pack. i'm having issues getting connect internet. did work 2 days ago perfectly, after ethernet came unplugged , plugged in day later, seems periodically go on , off. running raspbian jessie on what's been reinstalled using noobs. changes have made overclocking 1mhz , enabling ssh. pi connect website or able ping 8.8.8.8, 90% of time says destination unreachable. in cases can ping 8.8.8.8 or pi's local ip says unknown host. if needs more information ask, , i'll provide it. in advance advice! 1. turn off overclocking 2. try new sdcard fresh copy of noobs 1.7 (or scrub existing sdcard , use that) raspberrypi

Gstreamer 1.0 network mp4 streaming - Raspberry Pi Forums

i'm trying stream hd mp4 files on ethernet between multiple raspberry pi 2's. video files preconverted ffmpeg. don't think want encoding. raspberry server starts streaming file, , multiple clients play file synchronously. semi-working pipelines: code: select all // server gst-launch-1.0 -v filesrc location=video.mp4 ! qtdemux ! video/x-h264 ! rtph264pay ! udpsink host=192.168.0.255 port=5000 -or gst-launch-1.0 -v filesrc location=video.mp4 ! qtdemux ! queue ! rtph264pay ! udpsink host=192.168.0.255 port=5000 // client gst-launch-1.0 -v udpsrc port=5000 caps = 'application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)h264, sprop-parameter-sets=(string)"z2qah6zzqfafuhaaaamaeaaaawpa8ymzya\=\=\,aovssiw\=", payload=(int)96, ssrc=(uint)36838312, timestamp-offset=(uint)1359991347, seqnum-offset=(uint)58019' ! rtpjitterbuffer latency=1000 ! rtph264depay ! decodebin ! videoconvert ! eglglessink -or gst-launch-1.0 -v udpsrc port=5000

virtue mate contrassegno + xx € - Joomla! Forum - community, help and support

qualcuno usa  il metodo di pagamento contrassegmo + xx € avete notato che non fa bene calcoli dell iva su quel importo es prodotto                          12  iva inclusa trasporto                          12  iva inclusa supplementi( contrassegno) 1.2 totale              25.2 e fin qui giusto iva                4.24 e qui è sbagliato dovrebbe essere 4.20 a parte creare  un metodo di spedizione con già incluso il contrassegno ed escludere il metodo di pagamnetio contrassegno qualcuno ha trovato una soluzione grazie Board index Joomla! International Language Support International Zone Italian Forum Componenti - Moduli - Plugins

Xbox One controller causing a kernel panic - Raspberry Pi Forums

...or believe. whenever try connect xbox 1 controller raspberry pi 2 via usb hub, following error gets printed nigh-immediately. error shows in boot sequence, , causes handlers freeze, showing waiting time counts on infinitely. given log below, there known solution this, or out of luck on one? code: select all feb 18 20:51:21 <hidden> kernel: [ 597.566370] usb 1-1.3.1: new full-speed usb device number 7 using dwc_otg feb 18 20:51:21 <hidden> kernel: [ 597.679847] usb 1-1.3.1: new usb device found, idvendor=045e, idproduct=02dd feb 18 20:51:21 <hidden> kernel: [ 597.679874] usb 1-1.3.1: new usb device strings: mfr=1, product=2, serialnumber=3 feb 18 20:51:21 <hidden> kernel: [ 597.679891] usb 1-1.3.1: product: controller feb 18 20:51:21 <hidden> kernel: [ 597.679906] usb 1-1.3.1: manufacturer: microsoft feb 18 20:51:21 <hidden> kernel: [ 597.679921] usb 1-1.3.1: serialnumber: 7eed87437426 feb 18 20:51:21 <hidden> systemd-udevd[769]:

Thread: rational application developer 7.5 on ubuntu 9.10 karmic koala 64bit

Image
this quick writeup of had rad 7.5 running on ubuntu 9.10 64bit. latest rad 7.5.4. install ubuntu 9.10 karmic koala 64bit , update everything install java 1.6 download jaunty libstdc++5 (both 32bit & 64bit) - http://packages.ubuntu.com/jaunty/libs/libstdc++5 install libstdc++5 64bit debi (just doubleclick on , install) extract libstdc++5 32bit , copy files manually /usr/lib32/ change dash bash with: sudo dpkg-reconfigure dash install rad 7.5 install kit if using subclipse version 1.6 seems give "unable load default svn client" - use version 1.4 instead. think all. hope save other people time installing. far running well. regards corep installed libstdc++5 64 , 32 bit. installed sun java 6 ensured bash default shell launch installer , check radio button accept license agreement. next button becomes available clicking nothing. have launched installer -log l

Distiller Server 6 or 8.1.0 for Sparc issue

a postscript file not process thru either version on sparc. nor on distiller 7 or 8 on os x mac. file distill on distiller 4 on os 9 mac! , process in ghostscript , onevision asura. messages below distiller 8.1.0 on sparc. file hangs forever eating additional mamory along way.... tried different job options no avail. initializing graphic libraries. inspecting font directories. initializing postscript interpreter. cid support library initialization completed. initializing font cache. postscript interpreter 3016.102 process id: 5590 to obtain status, type in separate shell: kill -urg 5590 to abort job, type in separate shell: kill -abrt 5590 to pause job, type in separate shell: kill -tstp 5590 to resume job, type in separate shell: kill -cont 5590 distilling: ps file: /tmp/f16z_30_0d_x.ps (22,137,134 bytes) pdf file: /tmp/f16z_30_0d_x.pdf log file: /tmp/f16z_30_0d_x.log job file: +dna.joboptions generating pdf version 1.4 *** distill warning: current memory usage: 21 mbytes ***

problema compilazione sketch controllo stufa in remoto arduino uno e gsm shield

buonasera, stavo provando studiare un pò questo sketch ma provando verificarlo con l'ide mi restituisce una serie di errori e non riesco capire se è colpa della libreria (anche se non penso visto che è quella che si installa insieme all'ide), lo sketch lo scaricato dal sito quindi penso che sia ok. allego sketch ed errori, me interessa sapere solo se è un problema di sketch, se è così provero ad arrivarci da solo anche se già che mi fumerà la testa, nel caso fosse invece un problema di libreria vi chiedo la cortesia di darmi una dritta altrimenti rischio di fondere..... code: [select]  sms heather remote control    this sketch, designed gsm shield, allows remotely control any  device connected arduino. sending sms, through keywords,  it's possible, in case, turn on or off simple heater.    the gsm module, mounted on arduino board, processes message , executes action.  then, sends notification message containing state of device.  if message doesn't contain vali

Baudrate

hello guys, know "baudrate" didn´t change in arduino uno, in program tryed change 9600 more ou less, when print apear letter or symbol, "baudrat" on arduino uno fixed? if yes, there arduino can change others ranges of "baudrate"? thanks guys baud rate set serial.begin. you have remember set same bit rate @ other end of serial link, i.e. serial monitor. Arduino Forum > Using Arduino > Storage > Baudrate arduino

Problem with Output to Relay

Image
so i've been working on project while, , has been working (mostly). then, made changes last night, , uploaded code today , output on pin 7 (groupheadvalve) has stopped responding. don't think it's hardware related (i measured output on pin multimeter). , of course, don't remember changes made sketch last night.  ethan cannot open ino file on ipad can put in code tags? Arduino Forum > Using Arduino > Programming Questions > Problem with Output to Relay arduino

Extension points at compiler

hi folks, i need add validation @ custom metadata. let me start beginning. swiz framework (http://code.google.com/p/swizframework/) uses metadatas made ioc. one metadata this: [autowire(bean="hellocontroller")] but, if made miss-spell, [autowire(bean="helocontroler")] (forgot second l) produce errors @ runtime. what wanna create validation, validate @ compile time. i saw on flex-sdk bindableextension, "changes" actionscript code make bindable. there way register 1 extension @ flex-config.xml or using command line parameter? btw, extension right path follow? velo is there documentation available how write extensions? velo More discussions in Developers adobe

how to add sensor with this type of code ?

//this code wanted attach ldr sensor act switch if ldr sensor detected rgb led strip program run if not detected nothing happen ..how add switch or sensor in code ? //hope can me .. thank you #include <fastspi_led.h> #define num_leds 60 // chipsets wire in backwards sort of way struct crgb { unsigned char b; unsigned char r; unsigned char g; }; // struct crgb { unsigned char r; unsigned char g; unsigned char b; }; struct crgb *leds; #define pin 11 void setup() {   fastspi_led.setleds(num_leds);   fastspi_led.setchipset(cfastspi_led::spi_lpd6803);   fastspi_led.setpin(pin);   fastspi_led.init();   fastspi_led.start();   leds = (struct crgb*)fastspi_led.getrgbdata(); } void loop() {   for(int j = 0; j < 3; j++) {     for(int = 0 ; < num_leds; i++ ) {       memset(leds, 0, num_leds * 3);       switch(j) {         case 0: leds.r = 255; break;         case 1: leds.g = 255; break;         case 2: leds.b = 255; break;       }       fastspi_led.show();       delay(50);  

[svn] 3144: Bug fixes.

revision: 3144 author: dloverin@adobe.com date: 2008-09-08 11:53:01 -0700 (mon, 08 sep 2008) log message: ----------- bug fixes. qe: yes doc: checkintests: yes reviewer: alex bugs: sdk-15909, sdk-16368 projects/airframework/src/mx/managers/windowedsystemmanager.as projects/framework/src/mx/managers/systemmanager.as sdk-16368. clip visible rect?\226?\128?\153s top, left coordinate @ 0 since negative coordinates not visible. projects/framework/src/mx/controls/menubar.as sdk-15909. use sandbox root instead of toplevelsystemmanager when calling globaltolocal(pt). position menu inside sandbox root?\226?\128?\153s visible rect instead of screen property. ticket links: ------------ http://bugs.adobe.com/jira/browse/sdk-15909 http://bugs.adobe.com/jira/browse/sdk-16368 http://bugs.adobe.com/jira/browse/sdk-16368 http://bugs.adobe.com/jira/browse/sdk-15909 modified paths: -------------- flex/sdk/branches/3.0.x/frameworks/projects/airframework/src/mx/managers/windowedsystemma nager.

[svn] 1040: compiler: Part two of adding Java generics to the compiler

revision: 1040 author: jspiro@adobe.com date: 2008-03-31 15:05:23 -0700 (mon, 31 mar 2008) log message: ----------- compiler: part 2 of adding java generics compiler * apologize (profusely!) if causes lot of merge conflicts * compiler unit tests pass * if classcastexceptions or rtes please report them me; unnecessary casts have been removed, expose bugs, , may cause rtes. bugs: no qa: yes, if gaurav feels should re-test differently. otherwise no. doc: no modified paths: -------------- flex/sdk/trunk/modules/compiler/src/java/flash/css/fontfacerule.java flex/sdk/trunk/modules/compiler/src/java/flash/css/rulelist.java flex/sdk/trunk/modules/compiler/src/java/flash/css/styledeclaration.java flex/sdk/trunk/modules/compiler/src/java/flash/svg/spritetranscoder.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/api.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/assetinfo.java flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/assets.java flex/sdk/trunk/