Posts

sortie des data de vixenlight 2.1

bonjour tous, j'ai besoin de votre aide. je crée mes shows lumineux pour noel et j'ai enfin cloturer mon projet. j'aimerai maintenant savoir s'il est possible de sortir les datas que me sort vixen et par la meme occasion n'utiliser que l'arduino atmega 2560(donc sans passer par vixen tout en ayant la musique quand meme). si cela est possible, quelqu'un saurait il comment faire et quel code je dois utiliser pour configurer cela? pour cela je dispose d'une carte mp3, d'une atmega 2560, d'une carte 16 relais 12vdc. ou si besoin d'autre chose je me fournirai ;-) si quelqu'un connais une solution miracle, je lui en serai reconnaissant car cela n'est vraiment pas facile trouver , voila 1 que je cherche grrrrrr merci de votre aide et de m'avoir lu. vous voulez faire quoi comme show? vixen est plutôt très riche donc tout dépend de ce que vous voulez faire et de la configuration que vous souhaitez contrôler.....

Photoshop Cs4 Image display Messed up

okay purchased cs4 update cs3 , have installed without problem. when open images appear in different shapes , of them barely visible due crosshatch pattern on them. can't figure out wrong them not computer because never had problem cs3. can me need resolved asap. try turning off opengl. you'll find @ edit>preferences>performance. don't know if that's what's causing problem, if it's display related, go there first. More discussions in Photoshop Windows (read only) adobe

Thread: How can i get my bluetooth dongle up and running

Image
hi i'm on second dongle , cant , running- cant listed on lsusb. dad@dad-desktop:~$ lsusb bus 002 device 002: id 05a9:8519 omnivision technologies, inc. ov519 webcam bus 002 device 001: id 1d6b:0001 linux foundation 1.1 root hub bus 003 device 001: id 1d6b:0001 linux foundation 1.1 root hub bus 004 device 001: id 1d6b:0001 linux foundation 1.1 root hub bus 005 device 001: id 1d6b:0001 linux foundation 1.1 root hub bus 001 device 004: id 125f:1040 a-data technology co., ltd. bus 001 device 001: id 1d6b:0002 linux foundation 2.0 root hub dad@dad-desktop:~$ (ive got usb 4gb pendrive , webcam installed- both mount fine. tried pda phone ok- syncs issue thought- besides point... , when connect following error in sys logs. dec 20 21:05:24 dad-desktop kernel: [15108.996024] usb 4-2: new full speed usb device using uhci_hcd , address 17 dec 20 21:05:24 dad-desktop kernel: [15109.404024] usb 4-2: device not accepting address 17, error -71 dec 20 21:05:24...

Asset management and temperature logging

hi all, need little guidance on designing solution. problem: deep freezer manufacturing , ice cream distribution company requires solution manage it's freezers spread across whole country (on retailer shops). 3 requirements there: 1. real-time location of deep freezers on cloud server. 2. replace barcodes placed on dfs other thing sales team (order takers retail shops) not have use barcode scanners identify deep freezer. instead want smartphone based solution. 3. log temperature of deep freezers , on cloud server. each deep freezer's id, location , temperature log should available real-time on cloud server. question is, sort of sensors/controllers should used? how transmit data df on broadband? how establish communication between df , sales person's smartphone? any equipment can installed within df during it's manufacture. thanking in anticipation , looking forward nice discussions on possible approaches. what mean "deep freezers...

[gelöst] Beliebige Zeichen im TFT überschreiben

hallo, die von mir bisher genutzten lcd oder oled-displays haben es mir durch die eingesetzte library immer leicht gemacht, bestimmte zeichen auf dem display zu überschreiben. beispielsweise jede sekunde die sekunden der uhrzeit erneuern. das aktuell von mir genutzte tft-display mit den libraries ( adafruit_ili9341.h und adafruit_gfx.h ) bereitet mir probleme. da habe ich bisher keine einfache lösung gefunden. aktuell muss ich die zeichen, die ich neu setzen möchte, mit einem "kasten" schwärzen. code: [select]  // anzeige innentemperatur   tft.fillrect(110, 75, 70, 22, ili9341_black);   tft.setcursor(110, 75);   tft.print(i_temperatur, 1);   tft.setcursor(170, 75);   tft.write(247);   tft.print("c");   // ende anzeige innentemperatur einfaches Überschreiben geht nicht. hat evtl. jemand eine idee, wie ich das vereinfachen kann ? auch ist das beim zeichnen der "kästen" rec...

Thread: IBM 380XD 2635-FAU Kernal Panic

hello, got old thinkpad want install ubuntu on. first time poped in xubuntu disc had menu popedup choose install , got kernal panic. second time (on every ubuntu distro have) said may need bios upgrade. suggestions or support can give must appreciated. p.s here specs cpu-intel pii 300 mhz or so ram- 128 mb hdd- 4.25 gb bump* anyone? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [xubuntu] IBM 380XD 2635-FAU Kernal Panic Ubuntu

c programing logic for reading sensor over UART

i'm trying read data sensor connected mcu on uart. when powered sensor outputs continuously ascii capital "r", followed 4 ascii character digits representing distance in millimeters, followed carriage return (ascii 13). e.g. r9999cr for uart there 2 read functions blocking 1 , non-blocking: blocking code: [select] /**  * uart character data read.  *  * perform single character read uart interface.  * blocking synchronous call.  *  * @param[in] uart uart index.  * @param[out] data data read uart. must not null.  * @param[out] status uart specific status.  *  * @return standard errno return type qmsi.  * @retval 0 on success.  * @retval negative @ref errno possible error codes.  */ int uart_read(const uart_t uart, uint8_t *const data,          uart_status_t *const status); non_blocking code: [select] /**  * uart character data read.  *  * perform single character read uar...