Posts

Featured post

tcp client

i'm using arduino uno , w5100 ethernet shield. i'm trying connect ethernet shield software downloaded ( sockettest v3.00) communication between server (sockettest) , shield (client).the shield jack connected router. created server under ip address of laptop. uses telnet client example can't connect server on sockettest. first time i'm doing tcp/ip , had done similar project or guide me on this. sockettest - http://sockettest.sourceforge.net/ uno - https://store.arduino.cc/arduino-uno-rev3 ethernet shield - http://www.hobbytronics.co.uk/arduino-wiznet-shield here code -------------------- code: [select] #include <spi.h> #include <ethernet.h> byte mac[] = {   0xde, 0xad, 0xbe, 0xef, 0xfe, 0xed }; ipaddress ip(192, 168, 1, 220);// shield ip ipaddress server(192, 168, 1, 37); // computer ip ethernetclient client; void setup() {   // start ethernet connection:   ethernet.begin(mac, ip);// open serial communications , wait port open: ...

Is there an HTML component in Flex 2.0?

hi all   does flex 2.0 have html component? render html pages local hard disk , remote server. how achieve in flex 2.0?   thanks in advance...   regards prashanth i believe can air application, "uses open source webkit engine".  did come across component:   html component but not sure if available flex builder 2.0.  have price tag. More discussions in Flex (Read Only) adobe

Playing .mov video with flvPlayback

i have .mov files need play flvplayback component. when had them in actionscript not work. i've read allot , says component play mov video not me.   i running cs4 flashplayer 10 , as3.   any suggestions? there many different types of .mov files. think flvplayback can play .mov files have been encoded h.264 codec. if have quicktime open mov file , check information codec used on video stream. More discussions in ActionScript 3 adobe

Uh oh, where'd it go? - Joomla! Forum - community, help and support

Image
in cleaning site modules, have inadvertently deleted contact module. component still there collect contact information, it's not in site modules. how reinstall or recover. it's not in trash. of code still present thanks, adam i know joomla has default contact component, contact module, 1 made or 1 downloaded third party module extension? if go cms's installers section , , see if "contact module" there, click on radio button left of , click uninstall. then, reinstall module... if goes well, should work, although things when doesn't want behave extensions. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Help with codes to add 1 more shift register and add more to matrix LED

hi im working on 8x10 matrix leds , successful @ using guide http://www.instructables.com/id/810-led-matrix-with-4017/ using 4017 , 74hc595 now want expand matrix 16x10. i connected , worked added 74hc595 control second 8x10. my problem want display text using both 8x10 im using code guide , modified think doesnt work code: [select] #define someshape    {b0100001001000010,b1110011101000010,b0100001001000010,b0000000001000010,b0001100001000010,b0001100001000010,b1000000101000010,b1000000101000010,b0100001001000010,b0011110001000010  }    #define all     {b1111111111111111,b1111111111111111,b1111111111111111,b1111111111111111,b1111111111111111,b1111111111111111,b1111111111111111,b1111111111111111,b1111111111111111,b1111111111111111  }                        #define someshape2   {b0100001001000010,b1110011101000010,b0100001001000010,b0000000001000010,b000110000100001...

Images open in camera raw 4.6, not Photoshop?

since downloaded & installed camera raw 4.6 deal raw images nikon d90 have had following problem photoshop cs4 (on xp + sp3).   any images open within bridge or picasa or directly windows explorer opened in adobe raw 4.6. have open image photoshop. applies images, jpg, gif, tiff, psd etc. i've looked @ file associations & made sure photoshop selected & i've tried open & browsed photoshop directory & selecting photoshop.exe file open adobe raw.   how set default regular images open in photoshop & raw images open in camera raw?   lastly tried deleting ressetting prefferances, no good.   any appreciated. camera raw cs4 5.3 More discussions in Photoshop Windows (read only) adobe

How to read values from SD card txt into an array

Image
hi i need project: i want read values txt file on sd card , store them in array. the code reading values read seems cannot set array without knowing lenght/size. run code twice first count entries in txt , setting array counted size. but need declare array in code before size declare it. i output on lcd telling me values , counter position while reading txt , try store values using counter index myarray[counter] = valuefromtxt; but in end array remains empty. any idea? please, not advanced coder - please keep simple thanks lot! the easiest thing declare array maximum expected number of elements.  after all, if there number of entries in file if expand array or declare dynamically accommodate them, number of elements required. when reading file should ensure number of entries put array not exceed number of elements in array. as current solution, impossible sure without seeing code, how , declare array , have taken scope account ? please post code. ...