Posts

Showing posts from January, 2011

error message/help with code.

error message , led messing code. z:\arduino\voltage\voltage.ino: in function 'long int rgb(int, int, int)': z:\arduino\voltage\voltage.ino:21:1: warning: no return statement in function returning non-void [-wreturn-type] } ^ code below. code: [select] #define analog_in_ch1 0 #define analog_in_ch2 1 #define analog_in_ch3 2 const int rgbred  = 2; const int rgbgrn  = 3; const int rgbblu  = 4; void setup(){   serial.begin(19200);   pinmode(analog_in_ch1,input);   pinmode(analog_in_ch2,input);   pinmode(analog_in_ch3,input);   pinmode(rgbred,output);   pinmode(rgbgrn,output);   pinmode(rgbblu,output); } long rgb(int red, int green, int blue) {   analogwrite(rgbred, (red));   analogwrite(rgbgrn, (green));   analogwrite(rgbblu, (blue)); } void loop(){   int val1 = analogread(analog_in_ch1);   int val2 = analogread(analog_in_ch2);   int val3 = analogread(analog_in_ch3);   int cnt = 0;   int v1 = map(val1,0,1023,0,5.0);   int v2 = map(val2,0,1023,0,5.0);   int v3 = map(val3,0

Thread: sudo dpkg-reconfigure xserver-xorg NOT WORKING

ubuntu 9.10 command didn't work in pc sudo dpkg-reconfigure xserver-xorg nothing figur up!!!!! code: root@ubuntu:~# sudo dpkg-reconfigure xserver-xorg root@ubuntu:~# i believe command has been deprecated. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Hardware [ubuntu] sudo dpkg-reconfigure xserver-xorg NOT WORKING Ubuntu

Problemi con lettore RFID ID-12LA

salve tutti, mi chiamo gabriele e mi sono da pochissimo tuffato nel magico mondo di arduino. premetto che ho scarsissime capacità elettroniche e software, mi sono letto il libro allegato allo starter kit arduino e fatto vari progetti del libro. adesso, però, sono alle prese con un progettino rfid che sto provando fare seguendo il libro "creare progetti per arduino dummies", e sinceramente non è proprio dummies.. o per lo meno, secondo me, da per scontate troppe cose che non conosco. il problema è questo: ho collegato il lettore con la breakout sparkfun, attaccato alla breadboard - controllato mille mila volte le connessioni e mi sembra che sia tutto ok. lanciando lo sketch, dal monitor seriale non accade niente quando passo il tag. code: [select] /* arduino projects dummies  * brock craft  *  * chapter 9: building rfid tag reader  * system reads , matches rfid tag trigger relay  *  * v0.1 30.04.2013  * adapted bildr.com */  const int relaypin = 11;      // pin relay

Thread: Problem with vista and samba

Image
ok ive checked on , read tons of how , followed step step, , ive started on many times im @ now. i've installed samba , shared folder in "my pictures" changed workgroup match vista machine (using workgroup) , jut doing should able see , acess file on windows machine ive read. getting error message , here screen shot of http://tinypic.com/r/iw3h3q/6 blank desktop u see there ubuntu machine belive error when try open , ive tried mapping network drive gotten error well have insight on problem plz , thx in advance i recall seeing somewhere might have encryption of passwords , way vista , windows 7 handles them. problem? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [SOLVED] Problem with vista and samba Ubuntu

Can I handle with this project?

hey guys! i´ve bought arduino uno, , i´ve been doing of projects included in book, i´m noob. like many others(i don´t know how lot of people came same idea) i´ve decided morse-type project the deal have 2 arduino´s, 1 led , other photoresistor , display. expect, led flash in dot or dash  (i can handle part) , photoresistor decode , print letter in display. for newbie me, it´s lot have do, right? i´m open if want make recommendations how tackle problem easiest way posible. thanks! it wont work in lit room single led wont change resistance of ldr Arduino Forum > Using Arduino > Project Guidance > Can I handle with this project? arduino

controling air cylinder with a joystick.

thank reading this. i having problems controlling air cylinder moving heavy weight joystick.  program below cylinder overshooting , undershooting desired positions in gradually decreasing amounts 3 or 4 times until reaches desired position.  part of must compressibility of air in cylinder (the cylinder reacts kind of spring).  love other ways of looking @ problem. code: [select] // control dual acting air cylinder (one way pushes/ 1 way pulls) joystick void setup() {   int joystickpot =0;   int aircylinderpot =0;   pinmode(5,output);  //retract cylinder valve   pinmode(6,output);  //extend cylinder valve } void loop() {   int joystickpot=analogread(a0);       //reads joystick potentionmeter   int aircylinderpot=analogread(a1);   //reads positional pototentionmeter on air cylinder   int diff=joystickpot-aircylinderpot;  //is difference between joystick , aircylinder positions   if (diff<-100){analogwrite(6,250);}   // open air cylinder extend valve fully if (diff<=-50 &a

tmp_log.bin file

hi there, i had been using great sdfat library , example lowlatencylogger. super powerful , efficient. however, sometime did not truncate , file cannot save properly, instead of getting proper .bin file, end getting temporary file (tmp_log.bin). if understanding correct, tmp_log.bin file still contain info sensors. sequence of lowlatencylogger should this: 1. create tmp_log.bin file 2. start logging data , store results in tmp_log.bin file 3. once reach size of tmp_log.bin file or truncate logging, tmp_log.bin file deleted , proper .bin file create. so if sequence correct, means part of data still in temporary file. how can read or convert tmp_log.bin file readable file? thank you. your sequence of steps correct. step three: if space in tmp_log.bin used or run terminated, tmp_log.bin truncated , renamed. if the logger not terminate correctly, data in tmp_log.bin plus unused space. with latest lowlatencylogger manually rename file , use new 'b' co

Switching (and wiring) a relay from Python - Raspberry Pi Forums

Image
hi guys i'm prototyping bmx start gate using python , breadboard. final version wait button press play wav "riders ready, watch gate" followed random delay , firing gatedrop() code sounds buzzer , leds in order. i've worked through camjam exercises , reworking buzzer, button , led examples own project. trying add relay switched when final green led lights up. have single channel 5v arduino relay operate 12v door magnet. green led on, magnet off, gate drops , off go. questions: 1: can wire relay straight off header on pi jumper wires , use relay gpio commands in python fire it? (it sounds simple me) 2: magnet energised (so relay closed) @ rest. case of dropping relay.on() in @ start of code? haven't checked relay commands yet. 3: can cut connector off 12v power supply , wire relay provide power magnet? (cost issue here, have loads of 12v adapters electrical items no longer posses!!!) 4: best way of testing 12v supply beyond relay? magnet £30+ want co

Thread: Flying Windows Plugin for Ubuntu Karmic?

i have latest version of ubuntu , have compiz working. wondering if screensaver/flying windows plugin. know how it? thanks. there’s flying gnome feet screensaver. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Desktop Environments [ubuntu] Flying Windows Plugin for Ubuntu Karmic? Ubuntu

Problems with the Ethernet Shield and LAN cable

hello. have tried possible. have 4 lan crossover cable. 2 of 10 meters, three-meter , 1 meter one. ten-flash cable connector etnernet shield, diodes on board, flash, server not work. when connecting three-meter cable connector not blink, blinks fulld diode, server not work. when connecting 1 meter works. magic? cable marking same. etnernet shield not allow connect lan cables longer 1 meter? the max cat5 cable length 100 meters. Arduino Forum > Using Arduino > Networking, Protocols, and Devices (Moderator: fabioc84) > Problems with the Ethernet Shield and LAN cable arduino

problem with putty - Raspberry Pi Forums

Image
hello, i'm using pi3 raspbian on it. it' connected via network pc , programm via putty. when connect pi via putty output: puttyerror.png (56.52 kib) viewed 132 times login works fine, after can execute commands. if connect again it's same problem. tried restart ssh-client, not work too. reboot of pi, solve problem. , after while error again. knows problem? thank are there scripts running on other machine logs pi ? port 22 forwarded on internet router pi ? https://discourse.osmc.tv/t/putty-and-s ... -pty/20937 raspberrypi

Thread: im new to ubuntu and i think i have a bug. i dont know what to do!!!

Image
i had downloaded 9.04 without problem! ive had 4 weeks. wanted upgrade 9.10 , found couple codes through upgrade-manager , took forever! didnt work! decided burn disk , re-repartition hard drive! , work! once got ubuntu interface had error message says "disk has many bad sectors" , have little icon "!" on , when click on it, takes me palimpsest **** utility , says same thing "disk has many bad sectors" -more information attached it. click more info , smart data window open , says have 215 bad sectors @ them on bottom , 1 thats in red , says warning is "reallocator sector count" gives me option run "self-test" , "update now" dont know do! please me....!! muchos thank yous! run self test , post Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades

Create a Countries Shipping List for PiZero and PiZeroW - Help needed - Raspberry Pi Forums

many days have passed since opened www.thepilocator.com , read in forums, social networks , more availability of pi 0 , not read positive things. despite great commitment of raspberry foundation find there lack of information availability of product. started inform me little more it, trying not stop @ referring page on community ( https://www.raspberrypi.org/products/ra ... -now-modal ). tried deepen speech sending mails distributors, found raspberry pi 0 can buyed @ reasonable price (not more pay in italy, in cases less) in whole world, (really, think there's every country in planet). have started creation of list, not stores have been exhaustive, here's why i'm here: can me complete list? status: canakit - completed modmypi - completed kiwielectronics - completed buyapi.ca - completed pishop.us - completed piaustralia - completed botland - completed core-electronics - completed melopero - completed jkollerup.dk- completed rpishop.cz (informations availabl

Parse HTTP Get Request

how can parse string code: [select] get /sta/id=helloworld/pass=testin123 http/1.1 first need check sta , if exists, continue scan string. put value of id in case helloworld should store in string data type ssid , value of pass , in case testin123 should store in string data type pass . it should confirm presence of sta in string first. if not present, not enter loop. if exits, search id , pass. store it. the code used, seems not working.  doesn't enter loop, because can't search sta, , if does, not search id , pass code: [select] #include <esp8266wifi.h> #include <esp8266webserver.h> char getstring[100]; string ssid; string pass; string s = "http/1.1 200 ok\r\nconnection: close\r\ncontent-length: 0\r\n\r\n"; wifiserver server(80); //initialize server on port 80 void setup() {   serial.begin(115200); //start communication between esp8266-12e , monitor window   wifi.mode(wifi_ap); //our esp8266-12e accesspoint   wifi.softap("hello_iot&quo

Baud rate on Raspberry Pi /dev/ttyACM0 wrong on boot up.

first off, can state, don't know if arduino problem or rpi problem, posted on raspberry pi forums, cross-posting here measure. i building cricket scoreboard, rpi sends signal via usb arduino webpage input, have arduino ide installed on rpi , when power reset everything, baud rate of /dev/ttyacm0 gets reset 9600 baud, i've read says default baud rate should 115,200, sketch on arduino has serial.begin(115200); in setup, should override anyway i'd have thought. soon rpi booted, following: code: [select] pi@scoreboard:~ $ stty -f /dev/ttyacm0 speed 9600 baud; line = 0; -brkint -imaxbel if open arduino ide (v2.1.0) , go straight serial monitor, get code: [select] pi@scoreboard:~ $ stty -f /dev/ttyacm0 speed 115200 baud; line = 0; min = 0; time = 0; -brkint -icrnl -imaxbel -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echoke and scoreboard work until next reboot. i have added init_uart_baud=115200 /boot/config.txt see if helped, didn't (and stat

Thread: Noobie installing AvView

Image
the avview install instructions includes this: to compile: ./configure --with-ffmpeg=/path/to/compiled/ffmpeg/tree make note: mean *** compiled *** ffmpeg tree, i.e. compiled ffmpeg, not installed. it. avview not rely on installed ffmpeg binaries. how h*ll know ffmpeg compiled? installed using synaptic package manager. installation of prerequisites went swimmingly, including gatos. not sure go here, though. adthanksvance dan posted shortmort37 the avview install instructions includes this: to compile: ./configure --with-ffmpeg=/path/to/compiled/ffmpeg/tree make note: mean *** compiled *** ffmpeg tree, i.e. compiled ffmpeg, not installed. it. avview not rely on installed ffmpeg binaries. how h*ll know ffmpeg compiled? to find file: application > accessories > search files...

cannot find class table in file - Joomla! Forum - community, help and support

Image
hi there, i've got problem (otherwise not post here  ) i want store data form in database-table (not in admin-interface). when form sent error occurs: table class tableexercises not found in file. i've created directory tables in component's directory , in there file called exercises.php: code: select all <?php // no direct access //defined('_jexec') or die('restricted access'); class tableexercises extends jtable {     /**      * primary key      *      * @var int      */     var $id = null;     /**      * @var string      */     var $name = null;     var $userid = null;     var $datum = null;     var $was = null;     var $bereich = null;     var $ziel = null;     var $beschreibung = null;     var $durchfuehrung = null;     var $mittel = null;     var $li_saetze = 0;     var $li_wdhs = 0;     var $li_zeit = 0;     var $li_gzeit = 0;     var $mi_saetze = 0;     var $mi_wdhs = 0;     var $mi_zeit = 0;     var $mi_gzeit = 0;     var $hi_saetze = 0;     var

ขอคำแนะนำเรื่อง Components - Joomla! Forum - community, help and support

Image
มีคอมโพเน้น ที่ใช้สำหรับทำ พวก document ที่มีการให้ download file ที่แต่ละ บทความต้องมีให้ดาวโหลดไฟล์ได้สองไฟล์มั่งหรือเปล่าคะ ช่วยแนะนำหน่อยค่ะ ขอบคุณค่ะ ทำลิ้งในข้อความเลยมะได้รึหรือจะใช้แบบคอมโพเนนดาวน์โหลดรึครับมีหลายอันลองไปใช้ดู แล้วจะต้องระบุกลุ่มที่โหลดด้วยรึป่าว ที่ใช้อยู่ใช้ remository342 อันอื่นลองใช้แล้วจะยากตรงอับโหลดไฟล์อันนี้มันบาว์ไฟล์ได้ ลองๆหาดูละกัน Board index Joomla! International Language Support International Zone Thai Forum

registration e-mails are being blocked and marked as SPAM .. Help!! - Joomla! Forum - community, help and support

when testing user registration on site automated emails activation link , thank signing page marked spam , blocked on receiving end. tested on hotmail, yahoo , goggle account. there way change this. www.mediacenterhelp.com ??? something (probably server's ip address) triggering spam filters. if ip has been linked in past spamming - can tough removed... i'd talk host different ip, , if won't or can't - new host. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Illustrator CS3 saved as PDF, when rasterized in PS C2, will not save as jpeg

if save file pdf illustrator cs3, raster in photoshop cs2, resultant not save jpeg (i "could not complete request because of program error" message). no problem if raster in photoshop cs3. first thing hear use ps cs3, there reason not doing so. anyone has idea? thanks, richard have both cs2 , cs3 open simultaneously , re-open file in cs3 make jpeg if thing works. but problem staying in cs3 anyway? More discussions in Photoshop Macintosh (read only) adobe

Bluetooth Modules & Windows 10 - SOLUTION FOUND

further call below (https://forum.arduino.cc/index.php?topic=412958.0) i've found great fix may applicable using windows follows: toshiba year identified lot of issues bluetooth on windows 10 , produced download known "bluetooth stack windows toshiba"  81mb download available here - http://www.driverscape.com/download/csr-bluecore-bluetooth - various downloads available used following option:      driver version: 8.1.4222.0      release date: 2014-06-22      file size: 81.17m      supported os: windows 10 32 & 64bit, windows 8.1 32 & 64bit, windows 7 32 & 64bit, windows vista   32 & 64bit, windows xp run program , excellent there mention 30 day trial. did more searching , discovered site providing solution 'trial' follows downloading small .dll file , overwriting previous tosbtchk.dll : http://www.wiinupro.com/tutorials/toshiba-stack apparently 30 evaluation period meant developers make sure hardware works toshiba bluetooth stack , there

can not run Linux ARM 1.6.9 on raspberry pi 7 (wheezy)

hi guys, i excited see linux arm version coming out. till used old version of 1.0.6 not support lot of things. i downloaded package file, unfortunately can not run , can not find on net on how resolve it. tried latest nightly builds. i getting below error message : # # fatal error has been detected java runtime environment: # #  sigill (0x4) @ pc=0xab78ed58, pid=3850, tid=3055506544 # # jre version: java(tm) se runtime environment (8.0_91-b14) (build 1.8.0_91-b14) # java vm: java hotspot(tm) client vm (25.91-b14 mixed mode linux-arm ) # problematic frame: # c  [liblistserialsj.so+0x1d58] # # failed write core dump. core dumps have been disabled. enable core dumping, try "ulimit -c unlimited" before starting java again # # error report file more information saved as: # /home/pi/downloads/arduino-nightly/hs_err_pid3850.log # # if submit bug report, please visit: #   http://bugreport.java.com/bugreport/crash.jsp # crash happened outside java virtual machine in native c

Went sailing again...

just got week @ whidbey island race week.<br /><br />this should in "wenches" thread...<br /><br /><img src=http://xs129.xs.to/xs129/08306/coolbeans522.jpg</img <img src=http://xs129.xs.to/xs129/08306/hoist148.jpg</img><br /><br /><img src=http://xs129.xs.to/xs129/08306/kites707.jpg</img><br /><br /><img src=http://xs129.xs.to/xs129/08306/melgesstart620.jpg</img> More discussions in Photoshop Lounge Basement adobe

Photoshop into Web (all 3 questions)

somehow posted first question inadvertently. these 3 related queries use of photoshop create or modify elements used strictly in web site. 1. told not aware of typesetting controls in photoshop cs 2 or 3. (the manuals have little or nothing.) can manual kerning in photoshop--that can adjust space subtly between 2 characters? note not want each character separate unit. 2. let's have graphic element, rectangle (for purposes of illustration) 1 x 4 inches, rounded corners. in middle of unit word, let's say, "features" (could word). word meant part of graphic unit--it not meant text search engines might find. can word typeface in world, part of graphic element, or must typeface found on computers? (we debating century gothic versus avant garde gothic. think not matter, long word part of graphic unit , not discrete word.) 3. matter in way whether graphic unit above--a rounded rectangle word embedded--is created in indesign, saved pdf, , saved web within photoshop? or wh

Thread: Network manager strange behaviour

Image
hi all! have been ubuntu user 2 years, , face following problem last 2 weeks. have searched forums, haven't found similar problem 1 facing... network manager says wireless card , mobile broadband card disconnected. temporary solution problem consists on running following commands: code: sudo apt-get remove network-manager code: sudo apt-get install network-manager afterwards, reboot , works perfectly. when reboot 1 more time, network manager reports again wireless card , mobile broadband card disconnected. however, wlan0 interface seems up... running ubuntu 9.10 64 biton dell e6400, wireless card intel wifi link 5300 , mobile broadband card dell 5530 (i believe ericsson mbm f3705g). should do? in advance help! hello patrida!!! kostis, had similar problems network manager in ubuntu , unfortunately had many more that. recommend give wicd try. it's on repos, can install s

Automatisk 'Approve user' (i Community Builder) - Joomla! Forum - community, help and support

når en bruger registrerer så bliver brugeren ikke automatisk "approved"...? hvorfor ikke? jeg bruger joomlas login til registreringer, og community builder til profilerne... marckchr wrote: når en bruger registrerer så bliver brugeren ikke automatisk "approved"...? hvorfor ikke? jeg bruger joomlas login til registreringer, og community builder til profilerne... nu er det lang tid siden jeg har rodet med cb, men er der ikke noget med @ man skal bruge cb login modulet @ det spiller? 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) Komponenter, Moduler og Mambots

Reading a pin Multiple times and storing the average value to a constant

hello, i'm working on project involving reading photoresistor , great, except 1 thing want add: this project has baseline reading, , preforms action if reading drops level. however, lighting in room can different time time, if have set baseline value in code, useless later. so, thought in void setup() read value 7 times , find average, , use value baseline. then, @ different time of day, can reset arduino if want newer baseline. here code, minus baseline thing - code: [select] #include <servo.h> servo blocker; int entrancesensor = a0; int baselineval; void setup() {   baselineval = 0; // read sensor 7 times , find average     serial.begin(9600);   serial.print("************baseline value:");   serial.print(baselineval);   serial.println("************");   blocker.attach(5);   } void loop() {   int sensorval = analogread(entrancesensor);   if (sensorval <= baselineval - 100) {     blocker.write(160);       }   else {     blocker.write(0);      

Thread: Apparently, "Politics are not permitted"...

Image
... hence this thread locked. question mods: how can of debate licensing without bringing equation 'freedom' means (which saw libman attempting do)? or 'debate' licensing permitted unquestioning fawning on rms/the gpl/fsf -- i've not noticed threads here containing such onanism being locked? posted the top of page discussions on religion , politics not allowed, except politics directly related free , open source issues. ... Forum The Ubuntu Forum Community Ubuntu Community Discussions Forum Feedback & Help Apparently, "Politics are not permitted"... Ubuntu

Color cast in B&W

i getting color cast when have b&w images printed. can see effect when soft-proof, don't know how correct it. i have images in srgb hue/saturation changes have no effect. suggestions appreciated. thanks. > getting color cast when have b&w images printed printed how? inkjet? offset? > can see effect when soft-proof is color cast same in soft proof print? calibrated, color-managed, etc? (edit) one more question: info palette readings file. b/w, readings tones should r=g=b. More discussions in Photoshop Macintosh (read only) adobe

Transmission gear indicator - Switching & programming advice requested

i [somewhat] installed short-ratio transmission in vehicle and, after 11 years of ownership, find myself forgetting gear i'm in. (i.e., going upshift when i'm in 5th, not knowing if i'm in 3rd or 4th without looking/touching shift knob position) in order minimize distractions , keep eyes on road decided build gear indicator. there few indicators on market, they're either big/bulky, expensive, or designed sequential transmissions. i'm using arduino uno base. indicator adafruit 16-segment display . issue lies in switching device. unimaginative idea utilize 4 lever-style micro switches , arranged in square around shift lever underneath shift boot. allow shift lever depress 1-2 switches @ time, providing input arduino, determine gear display. indicator display "n" when lever in neutral , no switches depressed. it suggested colleague use engine speed , vehicle speed, , determine ratio each gear. ratio can used arduino determine chosen gear. suppose r

Thread: Attack of the coffee!

just spilled coffee on wacom bamboo , think she's dead. lights still on when unplugged & turned upside down immediately, compressed air'd out , let dry , it's not turning on. i'm wondering if else has had coffee attack periphs , have them frankstein on (come life after day). i'm hoping wacom isn't gone because of it's cost, @ least don't use as used to. rice! quick! no really, drop in bowl of (uncooked, seriously) rice. Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Attack of the coffee! Ubuntu

Looking for help/examples of using the UART grove connector of the Motor Shield

Image
hi all. been searching , not finding , seeed website wiki kinda..useless i have arduino mega 2560 board, , on right seeed motor shield (v1.2).  want use uart grove connector on board right now, bought wifi grove connector it, , having issues finding: - example code on how interface grove connector uart on motor shield (heck, need it, can use grove connector else on mega instead?) - example code on interfacing wifi module...i see examples wifi shield arduino, not sure how works in conjunction grove connector seems wifi shield. basically setting mini display detects movement in close proximity , tells person approaching (by way of output lcd board) either i'm busy  (e.g. on conference call) or i'm free , please come on by. i have code working movement detection , display want use wifi grove connector fetch local file local home lab web server (or alternatively push command or have check google calender current meetings or if i'm free), , go there. alas, hitting dead

What to do if you can't port forward rasperry pi? - Raspberry Pi Forums

hello, i'm in need use university ip access applications or data require on campus connection when i'm not on campus , university doesn't offer vpn service. bought rasperry pi , installed pptp vpn on it. don't have access university router port forwarding, can plug in rj45 port availble on every room in dormitory. options have here? there possibility access rasperry pi outside university without port forwarding? thanks. jason323 wrote: ↑ sat oct 07, 2017 3:56 am hello, i'm in need use university ip access applications or data require on campus connection when i'm not on campus , university doesn't offer vpn service. bought rasperry pi , installed pptp vpn on it. don't have access university router port forwarding, can plug in rj45 port availble on every room in dormitory. options have here? there possibility access rasperry pi outside university without port forwarding? thanks. https://www.raspberrypi.org/blog/get-ba ... c-connect/ r

Can I combine two separate paths into one in the paths area?

windows cs2 psd i have 2 separate path in paths window. can combine them 1 path? use direct selection tool copy 1 path another, or both third. paths selected (again using direct selection tool), choose "add paths area" button in paths options panel (you'll have switch pen tool). <br /> <br /> <a href="http://www.pixentral.com/show.php?picture=1fefidvdbrsyuzvsiqfkvpjeghasgp1" /></a> <img alt="picture hosted pixentral" src="http://www.pixentral.com/hosted/1fefidvdbrsyuzvsiqfkvpjeghasgp1_thumb.gif" border="0" /> More discussions in Photoshop Windows (read only) adobe

PiSerialixed from reference designer makes life easy. - Raspberry Pi Forums

using raspberry pi or pi 0 requires cumbersome set - hdmi tv, hdmi cable , keyboard. piserialixed reference designer makes life easy. simple usb uart board hooks laptop on 1 end , 5 of 40 pin on pi. boot messages , console appears on laptop. project on kickstarter righ now. https://www.kickstarter.com/projects/17 ... ref=14u0ok it should stated on web site serial works text based console , not work gui desktop (startx). in many cases usb extension cable needed usb ports on laptop , desktop may not convenient. raspberrypi

Related Items Bot XTD problem: Notice: Undefined property - Joomla! Forum - community, help and support

hello i have problem with: related items bot xtd when im logged in have following error: notice: undefined property: intro_only in /usr/local/www/data-dist/mydomain/mambots/content/relateditems.php on line 159 notice: undefined variable: metakey in /usr/local/www/data-dist/mydomain/mambots/content/relateditems.php on line 303 notice: undefined variable: metakey in /usr/local/www/data-dist/mydomain/mambots/content/relateditems.php on line 305 when im not logged in, error not exists. can tell me why? Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Plugins/Mambots

Nextion example dont work

i'm trying upload example nextion folder arduino. but comes error. code: [select] arduino: 1.6.8 (windows 7), board: "arduino nano, atmega328" comppage:19: error: 'nexpage' not name type  nexpage page0    = nexpage(0, 0, "page0");  ^ comppage:20: error: 'nexpage' not name type  nexpage page1    = nexpage(1, 0, "page1");  ^ comppage:21: error: 'nexpage' not name type  nexpage page2    = nexpage(2, 0, "page2");  ^ comppage:22: error: 'nexpage' not name type  nexpage page3    = nexpage(3, 0, "page3");  ^ comppage:24: error: 'nextouch' not name type  nextouch *nex_listen_list[] =  ^ c:\users\uno\desktop\iteadlib_arduino_nextion-master\examples\comppage\comppage.ino: in function 'void page0popcallback(void*)': comppage:35: error: 'dbserialprintln' not declared in scope      dbserialprintln("page0popcallback");                                        ^ comppage:36:

Articles not Ordering Properly - Joomla! Forum - community, help and support

content items not displaying according how set them in content item manager. when use arrows make article first, goes first, doesn't display first on front page. i searched , found thread said problem had been fixed. what mean? is there patch somewhere? do have upgrade? my copy of 1.5 installed third party few days ago. ric hi, you need @ menu item parameters. actual ordering how articles show, set on menu item leading content. the ordering in end someting totally different. as more of question, i'm moving q&t 1.5 general forum. Board index Joomla! Older Version Support Joomla! 1.5 General Questions/New to Joomla! 1.5

Streaming video from raspi-cam embedded on a webpage - Raspberry Pi Forums

hello, i'm working on project able view video raspi-cam on webpage. i'm using raspicam , gstreamer take video , send tcp server: code: select all raspivid -n -t 999999 -h 480 -w 640 -fps 25 -hf -b 2000000 -o - | gst-launch-1.0 fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! gdppay ! mp4mux ! tcpserversink host=192.168.0.17 port=5000 if use tcpclientsrc-based pipeline on machine, can view camera stream. that's , good, i'd embed video in webpage i'm using html file threw together. i'm extremely new html/css/web-programming in general. code: select all <!doctype html> <html> <head> <title>camera</title> </head> <body> <video width=640 height=480 autoplay> <source src="http://192.168.0.17:5000" type="video/ogg"> browser not support video tag </video>

Thread: Not entirely sure if Im adding new hdd properly

hi, im adding new hdd using tutorial - https://help.ubuntu.com/community/in...ganewharddrive seems well, seems. drive sdc used that, fine. when came using this line in tutorial: code: sudo mkfs -t ext3 /dev/sdc1 i dont it. used: code: sudo mkfs -t ext3 /dev/sdc because have no idea '1' comes from. gave me warning using whole device. when went code: sudo lshw -c disk again, there still no '1' showing on it. can please tell me relevance of '1' , can type in see labelled that. should again , use '1'? the 1 first partition on drive believe. yes use 1. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Hardware [ubuntu] Not entirely sure if Im adding new hdd properly Ubuntu

IDE not opening after launch. Splash screen crashes after "starting..."

here error after running debugger in cmd loading configuration... initializing packages... preparing boards... starting... java.lang.abstractmethoderror         @ processing.app.editor.addtools(editor.java:945)         @ processing.app.editor.buildtoolsmenu(editor.java:802)         @ processing.app.editor.buildmenubar(editor.java:551)         @ processing.app.editor.<init>(editor.java:256)         @ processing.app.base.handleopen(base.java:869)         @ processing.app.base.handleopen(base.java:854)         @ processing.app.base.handleopen(base.java:850)         @ processing.app.base.handlenew(base.java:745)         @ processing.app.base.<init>(base.java:459)         @ processing.app.base.guardedmain(base.java:223)         @ processing.app.base.main(base.java:136) does know might causing , how fix it? i've been looking online while , i've seen people have had similar problems solutions haven't been working me. thanks in advance. ha

Intranet issue - Joomla! Forum - community, help and support

Image
hey! i have been working joomla on year now, & installing on intranet 1st time.. kindly assist me => have installed joomla on windows xp using xampp proxy ip : 172.16.1.14 computer name : campusvani when try access site other computers on lan have use http://campusnet/joomla (for reason http://172.16.1.14/joomla doesnt work me) now, page loads on remote host doesnt carry images.. (as if css file missing) i understand other threads problem solved editing config $mosconfig_live_site = '172.16.1.14'; but didnt work me  additional info (that might / might not uselful) - main server i.e 172.16.1.1 has iis running on it what doing wrong?? this domain name resolving issue. can ping 172.16.1.14 computer on lan? ip address camputnet resolve to? the live_site setting needs able resolved computer accessing site (ip address of domain name). Board index Joomla! Older Version Support Joomla! 1.0 Installation - 1.0.x

please change this in to millis() (means without delay 1s on time and 0.1s off )

Image
void setup() { // initialize digital pin 13 output. pinmode(13, output); } // loop function runs on , on again forever void loop() { digitalwrite(13, high);   // turn led on (high voltage level) delay(1000);              // wait second digitalwrite(13, low);    // turn led off making voltage low delay(100);              // wait second } this = millis();   or if not mean, @ blinkwithoutdelay in example folder. Arduino Forum > Using Arduino > Programming Questions > please change this in to millis() (means without delay 1s on time and 0.1s off ) arduino

Clone SD card on Windows but multiple devices appear - Raspberry Pi Forums

Image
i wanted clone raspberry pi card on windows. found many easy instructions on how win32 disk imager. put card in windows, select device, read , save. easy. win32 disk imager. insert sd card. 3 devices show 1 named recovery. other 2 devices/partitions unreadable on windows. searched answer , can't find 1 yet. there no way clone entire card/devices/partitions single image on windows? thank help. the pl os creates multiple partitions. easier , faster copy os on pi ising card reader , sdcopuer on te desk top or piclone using command line. both adjust partitions needed copy lager sdcard yo smaller card lo g smaller card has enough space actual data. on windows need program can read unix/linux file system , copy large or larger size of sorce sd card. raspberrypi

New RTC-Library for the Due [Now inside the Library Manager too] Version 1.1.0

hello, i have rewritten rtc-library [now version 1.1.0] due function-calls similar or more other rtc-librarys (like ds1307 or rtczero), , btw. add support timezone-library jchristensen kapyaar idea, cleaned code , grab lines rtczero , add more comments , new examples. i hope can enjoy new version old 1 still available, wouldn't neat after this. my impulse rewrite make easyer migrate or due. link home of new lib, direct link. now inside library manager too. br markus sorry bad named zip. have checked , verified library returns time_t correctly unixtime? here's problem i've encountered.   i'm using rtc_clock library in data logger.   i push collected data database , join sets of data based on unixtime stamps.   i noticed there large time shift between data various boards.   the due rtc library "rtc_clock.unixtime()"  returns value 35 days future.!!! here example comparison: **** time: 19:19:27.406   date: 14/8/2016  fix: 1 qualit