Posts

NeoPixels: Sketch funktioniert leider nicht

Image
hallo zusammen, leider klappt es mit dem unten angegebenen scatch nicht wie gewünscht. konkret bedeutet es, dass er im ersten if noch auf bewegung colorwipeup durchläuft, danach tut sich leider nichts mehr.  hab schon erdenklich varianten durchgespielt, aber keine lösung gefunden. bin für jede art von hilfe dankbar! viele grüße! code: [select] #include <adafruit_neopixel.h> adafruit_neopixel strip = adafruit_neopixel(150, 13, neo_grb + neo_khz800); int motionpin = 8; int sensemotion = 0; void setup() {   pinmode(motionpin, input);   strip.begin();   strip.show(); }   void loop() {     sensemotion = digitalread (motionpin);   if (sensemotion == high) {     colorwipeup(strip.color(255, 0, 0), 50);     strip.show();     rainbowcycle(20);   }   else {      digitalwrite (motionpin, low);      colorwipe(strip.color(0, 0, 0), 20);         strip...

Neopixel All Flash

i'm trying head around how neopixel library works, , have 4 gems want blink @ same time. put each gem on it's own pin, , put them in array. my question because i'm learning how harness power of neopixels! code wasn't sloppy. example, should messing brightness turn off, or set rgb 0,0,0? code: [select] #include <adafruit_neopixel.h> #define pin2 2                          // cyclotron upper left light #define pin3 3                          // cyclotron upper right light #define pin4 4                          // cyclotron lower left light #define pin5 5                          // cyclotron lower left light #define cyc_led_num 8                   // #...

Thread: sshfs connection reset by peer

Image
i using ssh public keys , 1 user unable mount shared partition. able mount same directory remotely locally , on internet other user keeps getting same error every time attempts mount partition using sshfs, locally or outside internet. user can log in file server remotely , internet using ssh , has access directory sshfs gives same error: sshfs connection reset peer possible firewall denying access through sshfs? have given user permission mount local drives on file server , added user "fuse" group. why user unable mount shared partition? command fails: sshfs 192.168.1.100:/media/hd /media/shared_drive below sshd_config: package generated configuration file # see sshd(8) manpage details # ports, ips , protocols listen for #port 22 # use these options restrict interfaces/protocols sshd bind to #listenaddress :: #listenaddress 0.0.0.0 protocol 2 # hostkeys protocol version 2 hostkey /etc/ssh/ssh_host_rsa_key hostkey /etc/ssh/ssh_hos...

Error

i keep getting error message on , on again... hell this..... please help!!! avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x06 avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x06 avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x06 avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x06 avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x06 avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x06 avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x06 avrdude: stk500_recv(): programmer not responding avrdude: stk500_getsync() attempt 8 of 10: not in sy...

Why do cropped images are included when exported to PDF

hi,   illustrator cs3 on mac 10.5.6.   everytime save or use distiller create pdf file print items outside artboard including cropped images , path objects included in pdf. instance, if use dl size ad , have large object inside clipping path clipped object included in final pdf make pdf larger actual document size. see attached.     thanks   mic when go print menu on illustrator artwork, in sub-menu "setup" settings using in "crop artwork to" section?   btw  attachment isn't working properly More discussions in Illustrator adobe

Joomla e Tiscali ! - Joomla! Forum - community, help and support

Image
salve, ho un sito su un server di tiscali, vorrei chiedervi se joomla gira su questi server...vi risulta ?  la pagina hosting di tiscali non da' molte spiegazioni.... prova chiedere loro, se ti hanno dato almeno un db mysql (e credo te lo abbiano dato) non dovresti avere problemi  Board index Joomla! International Language Support International Zone Italian Forum

Send AT commands to Iridium 9600

Image
hello, i've started arduino programming today. want send @ commands arduino mega iridium 9600 (satellite modem). if connect iridium directly computer, can send him @ commands via serial port (software hterm) , works! iridium sends emails. wrote programm arduino , connected iridium arduino. i'm sending same commands, modem doesn't send message via. can me? i'm new arduino, modems, electronic, this. my programm: code: [select] string inputstring; void setup() {   serial.begin(9600);     // usb   serial1.begin(19200);   // iridium 9600   inputstring.reserve(200);   while (!serial) {     ; // wait serial port connect. needed native usb   }   while (!serial1) {     serial.println("serial1 not ready!");   } } void loop() {     if (serial.available() > 0) {     inputstring = serial.readstring();    ...