topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Saturday April 11, 2026, 2:20 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 91 92 93 94 95 [96] 97 98 99 100 101 ... 225next
2376
Living Room / Re: Script Add-On actions??
« Last post by 4wd on August 04, 2014, 01:39 PM »
You might like to provide links to the How-to-Geek page and the script.   ;)

Just so we don't have to go hunting for them.
2377
General Software Discussion / Re: Real RAM amount consumed
« Last post by 4wd on August 02, 2014, 01:19 PM »
Acer - 02_08_2014 , 16_20_37.png

According to TMD you have a 26GB pagefile ... is this correct or just the weird way it reports it?
2378
Finished Programs / Re: DONE: Removing zero length files recursively at command-line
« Last post by 4wd on August 02, 2014, 05:15 AM »
The problem I'm having trying to understand your scenario is you still haven't described the methodology you use before you run the command file.

ie.
a) Do you run this from a CLI open at the required path, (in which case put the command file in the command PATH somewhere, or add to the PATH, and call it without using a hotkey).
b) Do you run this from Explorer somehow, (in which case use my program here to copy the current path to the clipboard and then use GetClip in your command file to retrieve it when you run it via hotkey).
c) Running it from the Start->Run prompt, (in which case use a real CLI :) ).

Or the alternative is write something in a language that will let you do exactly what you want.

Addendum: qExClip, a slightly modified version of ExClip.

Code: AutoIt [Select]
  1. #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
  2. #AutoIt3Wrapper_UseUpx=n
  3. #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
  4. ; http://www.autoitscript.com/forum/topic/89833-windows-explorer-current-folder/page__st__40#entry973904
  5. #include <Array.au3>
  6.  
  7. Local $oErrorHandler = ObjEvent("AutoIt.Error", "_ComErrFunc")
  8.  
  9. If $CmdLine[0] = 1 Then
  10.         $sCmd = $CmdLine[1]
  11.         _ExClip(True)
  12.         _ExClip(False)
  13.  
  14.  
  15. Func _ExClip($temp)
  16.         $hExplr = WinActive("[REGEXPCLASS:(Explore|Cabinet)WClass]")
  17.         If $hExplr <> '' Then
  18.                 $aSelection = _ExplorerWinGetSelectedItems($hExplr)
  19. ;~              _ArrayDisplay($aSelection)
  20.                 If $aSelection[0] = 0 Then
  21.                         If StringLeft($aSelection[1], 2) <> '::' Then
  22.                                 If Not $temp Then
  23.                                         ClipPut($aSelection[1])
  24.                                 Else
  25.                                         ShellExecute($sCmd, $aSelection[1], $aSelection[1])
  26.                                 EndIf
  27.                         EndIf
  28.                 Else
  29.                         If Not $temp Then
  30.                                 ClipPut($aSelection[2])
  31.                         Else
  32.                                 ShellExecute($sCmd, $aSelection[2], $aSelection[2])
  33.                         EndIf
  34.                 EndIf
  35.         EndIf
  36. EndFunc   ;==>_ExClip
  37.  
  38.  
  39.  
  40. ; ==========================================================================================================================
  41.  
  42. ; Func _ObjectSHFolderViewFromWin($hWnd)
  43. ;
  44. ; Returns an 'ShellFolderView' Object for the given Window handle
  45. ;
  46. ; Author: Ascend4nt, based on code by KaFu, klaus.s
  47. ; ==========================================================================================================================
  48.  
  49. Func _ObjectSHFolderViewFromWin($hWnd)
  50.         If Not IsHWnd($hWnd) Then Return SetError(1, 0, 0)
  51.         Local $oShell, $oShellWindows, $oIEObject, $oSHFolderView
  52.  
  53.         ; Shell Object
  54.         $oShell = ObjCreate("Shell.Application")
  55.         If Not IsObj($oShell) Then Return SetError(2, 0, 0)
  56.  
  57.         ;   Get a 'ShellWindows Collection' object
  58.         $oShellWindows = $oShell.Windows()
  59.         If Not IsObj($oShellWindows) Then Return SetError(3, 0, 0)
  60.  
  61.         ;   Iterate through the collection - each of type 'InternetExplorer' Object
  62.  
  63.         For $oIEObject In $oShellWindows
  64.                 If $oIEObject.HWND = $hWnd Then
  65.                         ; InternetExplorer->Document = ShellFolderView object
  66.                         $oSHFolderView = $oIEObject.Document
  67.                         If IsObj($oSHFolderView) Then Return $oSHFolderView
  68.                         Return SetError(4, 0, 0)
  69.                 EndIf
  70.         Next
  71.  
  72.         Return SetError(-1, 0, 0)
  73. EndFunc   ;==>_ObjectSHFolderViewFromWin
  74.  
  75. ; ==========================================================================================================================
  76. ; Func _ExplorerWinGetSelectedItems($hWnd)
  77. ;
  78. ;
  79. ; Author: klaus.s, KaFu, Ascend4nt (consolidation & cleanup, Path name simplification)
  80. ; ==========================================================================================================================
  81.  
  82. Func _ExplorerWinGetSelectedItems($hWnd)
  83.         If Not IsHWnd($hWnd) Then Return SetError(1, 0, '')
  84.         Local $oSHFolderView
  85.         Local $iSelectedItems, $iCounter = 2, $aSelectedItems[2] = [0, ""]
  86.  
  87.         $oSHFolderView = _ObjectSHFolderViewFromWin($hWnd)
  88.         If @error Then Return SetError(@error, 0, '')
  89.  
  90.         ;   SelectedItems = FolderItems Collection object->Count
  91.         $iSelectedItems = $oSHFolderView.SelectedItems.Count
  92.  
  93.         Dim $aSelectedItems[$iSelectedItems + 2] ; 2 extra -> 1 for count [0], 1 for Folder Path [1]
  94.  
  95.         $aSelectedItems[0] = $iSelectedItems
  96.         ;   ShellFolderView->Folder->Self as 'FolderItem'->Path
  97.         $aSelectedItems[1] = $oSHFolderView.Folder.Self.Path
  98.  
  99.         ;   ShellFolderView->SelectedItems = FolderItems Collection object
  100.         $oSelectedFolderItems = $oSHFolderView.SelectedItems
  101.  
  102.         #cs
  103.                 ; For ALL items in an Explorer Window (not just the selected ones):
  104.                 $oSelectedFolderItems = $oSHFolderView.Folder.Items
  105.                 ReDim $aSelectedItems[$oSelectedFolderItems.Count+2]
  106.         #ce
  107.  
  108.         For $oFolderItem In $oSelectedFolderItems
  109.                 $aSelectedItems[$iCounter] = $oFolderItem.Path
  110.                 $iCounter += 1
  111.         Next
  112.  
  113.         Return SetExtended($iCounter - 2, $aSelectedItems)
  114. EndFunc   ;==>_ExplorerWinGetSelectedItems
  115.  
  116. Func _ComErrFunc($oError)
  117.         ConsoleWrite("COM Error occurred:" & @CRLF & _
  118.                         "Number: " & @TAB & $oError.number & @CRLF & _
  119.                         "Windescription:" & @TAB & $oError.windescription & @CRLF & _
  120.                         "Description is: " & @TAB & $oError.description & @CRLF & _
  121.                         "Source is: " & @TAB & $oError.source & @CRLF & _
  122.                         "Helpfile is: " & @TAB & $oError.helpfile & @CRLF & _
  123.                         "Helpcontext is: " & @TAB & $oError.helpcontext & @CRLF & _
  124.                         "Lastdllerror is: " & @TAB & $oError.lastdllerror & @CRLF & _
  125.                         "Scriptline is: " & @TAB & $oError.scriptline & @CRLF & _
  126.                         "Retcode is: " & @TAB & $oError.retcode & @CRLF & @CRLF)
  127. EndFunc   ;==>_ComErrFunc

Command file, preload.cmd
Code: Text [Select]
  1. @echo off
  2. echo.
  3. rem preload.cmd [folder]
  4. rem
  5. rem Where [folder] = optional folder to create subfolder in
  6. rem
  7. rem  If folder passed as arg, use it if it exists, assume it is run
  8. rem  from CLI in required folder if it does not.
  9. if "%~1"=="" goto :Request
  10. if not exist "%~1" (
  11.   echo Folder does not exist
  12.   echo.
  13.   goto :Request
  14. )
  15. pushd "%~1"
  16.  
  17. :Request
  18. rem There is a SPACE at the end of the follwoing line
  19. set /p newdir=Entername:
  20. if "%newdir%"=="" goto :END
  21. call :Extract "%newdir%"
  22. goto :END
  23.  
  24. :Extract
  25. set ndir="%~1"
  26. md %ndir%
  27. pushd %ndir%
  28. 7za.exe e preload.zip
  29. cd > path.txt
  30. goto :EOF
  31.  
  32. :END

Clavier+ setup:
Clavier.png

What it does:

ONLY works with Explorer, navigate to a folder or select one and then press the Clavier+ hotkey, (Alt+F5 in this case).

  • Clavier+ calls qExClip.exe with the command file as an argument.
  • qExClip.exe grabs either the path of the active Explorer window or the full path of the first selected item.
  • This path is then passed as an argument to the command file, (preload.cmd in this case), to be used however.  If no args were provided for qExClip then the path is copied to the clipboard.
  • preload.cmd can be run from the CLI also, (with or without args), if passed an arg it will pushd to the folder before continuing with asking folder name, extracting, etc.

OK, the WARNINGS bit:
  • Haven't bothered to check whether any item selected is a file - you can do this easily enough in the command file if really necessary.
  • Haven't bothered testing to see whether the arg passed to qExClip exists, (get it right).
  • Fix any paths to executables/archives in the command file as necessary.

It worked here, doesn't hold that it'll work for you.
2379
Finished Programs / Re: DONE: Removing zero length files recursively at command-line
« Last post by 4wd on August 01, 2014, 02:14 PM »
Instead of using a hotkey, why not just call it p.cmd and stick it in the path?

When run from CLI, still takes two keypresses, p then ENTER - probably takes the same amount of time to trigger also.
2380
I'm easily confused so please talk s...l.....oooo.......w!
I'm still looking for the "supposed" script to disable lazyload.
I just came from that site with over 137,000 scripts on over 5,000 pages.
I'll need a clue as to how we do business there.
Got any tips>

Slow version:

1) Do you use Internet Explorer?
No -> Proceed to Step 2
Yes -> Give up

2) Do you use Firefox, (or other Mozilla based browser, eg. Pale Moon, CyberFox)?
No -> Proceed to Step 3
Yes -> Install GreaseMonkey addon, proceed to Step 4

3) Do you use Chrome, (or other Chrome based browser, eg. Soft Iron, Comodo Dragon)?
No -> I give up
Yes -> Install TamperMonkey, proceed to Step 4

4) Go to this website: nolazyload @ Userscripts mirror

5) Click big green Install button on top right of page.
2381
Finished Programs / Re: DONE: Removing zero length files recursively at command-line
« Last post by 4wd on August 01, 2014, 06:04 AM »
It could be that because I located the batchfile (I just called it auto.bat) in c:\ so I would be in the default path no matter where I was when I pressed AltF5 that maybe I am stuck.  I was hoping it would use the location of my "cursor" a a reference point and create the subdirectory there.

Correct, the "home" directory becomes the location of the command file because of the way you are calling it.

AFAIK, there's no way to get the current directory from a new invocation of CMD when going via a third party program unless the current directory is passed as a parameter.  Which doesn't seem to be possible as Clavier+ doesn't provide for determining where it's been invoked from.

An alternative would be a small external program that provides the path of the current active CLI window when it's called.

BTW, are you calling this from an active CLI window or from Explorer, (or something else)?

Just mucking around:
Code: Text [Select]
  1. rem qf666.cmd [file]
  2. rem
  3. rem Where [file] = optional text file with one dir to create per line
  4. @echo off
  5. rem  If file passed as arg, use it if it exists, fall back to asking
  6. rem  if it does not.
  7. if "%~1"=="" goto :Request
  8. if not exist "%~1" (
  9.   echo File does not exist
  10.   echo.
  11.   goto :Request
  12. )
  13. for /f "usebackq tokens=*" %%a in (`type "%~1"`) do (call :Extract "%%a")
  14. goto :END
  15.  
  16. :Request
  17. set /p newdir=Entername  :
  18. if "%newdir%"=="" goto :END
  19. call :Extract "%newdir%"
  20. goto :END
  21.  
  22. :Extract
  23. set ndir="%~1"
  24. md %ndir%
  25. pushd %ndir%
  26. 7za.exe e C:\preload.zip
  27. cd > path.txt
  28. popd
  29. goto :EOF
  30.  
  31. :END
2382
OK, from here:

OK then kick me now while I'm down :) but I cannot get this next on to follow the focus of the calls.

to here:

Once I put it all together, I should be able to use a single hot key to setup the whole thing.

I'm going to sum up with  :huh:

I just need to take a 380x260 (or ?) pixel jpg photo and change it to a 742x350pixel png file and not lose so much resolution  cant ell what it was to start with.   :D  I usually end up looking for a similar but larger one I can shrink instead.

SmillaEnlarger v0.8.0 - last Windows version
2383
Living Room / Re: Gadget WEEKENDS
« Last post by 4wd on July 30, 2014, 06:54 AM »
I couldn't help but notice this:
 (see attachment in previous post)

Evidence of its hand-crafted nature.

It might be true, maybe it only half sh!ts itself when it dies  ;)
2384
Living Room / Re: Gadget WEEKENDS
« Last post by 4wd on July 29, 2014, 04:11 PM »
Picked up a GOAL ZERO Nomad 7 before I went OS, (I have V1 - previous version of the linked one), for charging the phone while I read ebooks.

IMG_1145.jpg

IMG_1146.jpg
2385
General Software Discussion / Re: diagnostic tool
« Last post by 4wd on July 29, 2014, 06:15 AM »
It always helps to mention what OS you're talking about ...

Resource Monitor, (7 onwards), will show what processes are using what resources.

For XP onwards, Process Monitor from SysInternals, (Microsoft).
2386
Finished Programs / Re: DONE: Need a Script to Move User Files Into a Subfolder
« Last post by 4wd on July 29, 2014, 05:27 AM »
It seems that if there is not adequate permissions to move the file, it will loop at 30 second intervals and stall on that file.

I noted the permissions aspect when I was playing with the robocopy /COPY: option - didn't get the 30 second loop though, possibly because I wasn't Admin.

Now I just have to point it at the 568GB of faculty files and I should be just about done with this part.

Is it about now I should mention the hidden format command?

Thanks Guys! You really saved my ass on this one.

No problem  :)

Probably get skwire to mark as DONE if your OK with it.
2387
Finished Programs / Re: DONE: Need a Script to Move User Files Into a Subfolder
« Last post by 4wd on July 28, 2014, 12:23 AM »
In that case it should be obvious that you should use the shorter versions rather than my original.   ;)

Thank Abterix for that  :Thmbsup:

And as Anthony Quayle used to say: "Pleasant dreams."  >:D
2388
Finished Programs / Re: DONE: Need a Script to Move User Files Into a Subfolder
« Last post by 4wd on July 27, 2014, 04:14 PM »
Okay first let me say thank you, I'd been hoping you'd show up here as I've seen your work and had a feeling you were the guy for the job. :)

Aw shucks  :-[

Thanks  :)

It was/is really close in that it did move all the files, but it didn't move any of the folders that were in the Student\ directories. It instead looped and created a documents folder inside of all the sub directories and moved the contents into them.

Ah yes, forgot that case  :-\

The structure you gave above, the \Student xxx, is that the literal structure or figurative?

ie. Is it really \Student 123 or was that just a way of describing the structure?

If it's the first case, then if you change:

for /f "usebackq tokens=*" %%a in (`dir /s /b /ad *.*`) do (call :MakeMove "%%a")

to:

for /f "usebackq tokens=*" %%a in (`dir /s /b /ad Student*`) do (call :MakeMove "%%a")

That'll list only the folders with Student in them and stop the creation of Documents in the sub-folders.


I've changed the move to robocopy because move didn't handle folders, besides which robocopy will do a verified copy before deleting the original.

Modified original command file.

4wd, isn't this recursive?

mkdir "%~1\Documents"
move "%~1\*.*" "%~1\Documents\"

Since "%~1\*.*" includes Documents already.

Didn't seem to be since the move command just ignores folders, which is what SJ mentioned.  I've switched to robocopy since it does it all in one hit and I can exclude the destination folder from the move.

I would try it this way...

Certainly a better way to create the folders since it takes into consideration non-uniform sub-dir names - might have to rejig that bit later  :)

Using robocopy obviated the need for recursive move commands ... I hope ... seems to work OK with my test structure.

Addendum:  The shorter version using some of Abterix' lines:

All versions are up there.

As before, try it on nuke-friendly structure first.

Modified my first post to add this version.
2389
Finished Programs / Re: DONE: Need a Script to Move User Files Into a Subfolder
« Last post by 4wd on July 27, 2014, 10:09 AM »
Try this, put the command file into the \Users directory, open a CLI and enter MoveIt.cmd

Original version removed because it was "clunky" and structure specific.  :(

Worked here on my limited test with your structure above but try it on something that can afford to be nuked first.

NOTE: Since the robocopy command will output results, you could redirect the output to a file if you want to keep a log in case of Murphy.

Using some of Abterix' info below, (THANKS!), here's a shorter version:

(Cleaned it up a little)
Code: Text [Select]
  1. REM start in the Users folder
  2. @echo off
  3. rem For each year starting 20 do:
  4. for /d %%Y in (20??) do (
  5.         rem Change to year folder
  6.         pushd "%%~Y"
  7.  
  8.         rem For each student folder do:
  9.         for /d %%U in (*) do (
  10.                 robocopy "%%~U" "%%~U\Documents" /e /move /xd "Documents"
  11.  
  12.         )
  13.         rem Return to parent folder (\Users)
  14.         popd
  15. )

One-liner command file, (lots of output since echo isn't turned off):
Code: Text [Select]
  1. for /d %%Y in (20??) do (for /f "usebackq tokens=*" %%U in (`dir /b /ad "%%~Y\*"`) do (robocopy "%%~Y\%%~U" "%%~Y\%%~U\Documents" /e /move /xd "Documents"))

And one-liner for use at command prompt, (same as above except no double % for variables):
Code: Text [Select]
  1. for /d %Y in (20??) do (for /f "usebackq tokens=*" %U in (`dir /b /ad "%~Y\*"`) do (robocopy "%~Y\%~U" "%~Y\%~U\Documents" /e /move /xd "Documents"))
2390
General Software Discussion / Re: Taming Windows 8's impolite Taskbar with DDMM
« Last post by 4wd on July 22, 2014, 02:42 AM »
I've used Taskbar Activate for years, works on 7 & 8.

Introduces an indicator and delay when you're in the Taskbar zone.
2391
General Software Discussion / Re: Lazyload
« Last post by 4wd on July 20, 2014, 03:11 PM »
You guys working nights on a weekend yet just to solve my petty little problems!

Well that's DoCo I guess.  :)

We're a Global Conglomeration - it's daylight where some of us are ;)

There's a bunch of us here with no personal lives. ;)  ;D

In my case you can add: No Job, No Stress, No Money  ;D
2392
General Software Discussion / Re: Lazyload
« Last post by 4wd on July 20, 2014, 04:34 AM »
You need to install:
GreaseMonkey for Mozilla based browsers (Firefox, Pale Moon, etc),
TamperMonkey for Chrome based browsers (Chrome, Opera Net, etc).

I don't think there's a version for current IE versions, (didn't spend much time looking though - I don't use IE).

Then you can go to the link 40hz posted,
  • copy all the script text into the Clipboard,
  • left-click the arrow next to the GreaseMonkey icon in your Firefox toolbar, (if you put it there), and choose New User Script, (might be different for Chrome based browser, don't have one installed atm),
  • choose Use Script from Clipboard,
  • choose File menu, Save and then close the editor window.

The script is installed.

There's probably one on Userscripts where you can just hit the Install button, but I can't access the site atm to search.

Found one at the mirror site: nolazyload - You just hit the green Install button there once you have GreaseMonkey/TamperMonkey installed.
2393
General Software Discussion / Re: Windows 8 Pro
« Last post by 4wd on July 19, 2014, 01:25 PM »
^ Neat ... off to do a little Googling ... thanks :)


Ahhh, change it to a Volume License version ... simples!
2394
General Software Discussion / Re: The art of finding
« Last post by 4wd on July 19, 2014, 02:44 AM »
@4wd do you know which file Advanced URL Builder uses for entries?  I'd like to just copy from FF to FF portable without entering the search engines again.

@MilesAhead: Sorry, didn't see your post until now.

AdvancedURLBuilder' prefs are stored in the pref.js file in your Firefox/Pale Moon profile directory.

If you open the file and do a search for one of your entries you'll see them, they'll have lines starting with:

user_pref("aub.<setting>", <value>);
2395
^ What he said.

I guess if you want to ensure that all machines are always at the same update "level" you could push them manually but I would have thought there was an easier way.
2396
Wouldn't this suffice?

dir /od /t:c /ad

You can add any wildcards you like.

It doesn't really cover the "Even choosing the subfolders i wish more details" bit.
2397
As an exercise in futility, (skwire's version will be much better), here's something in DOS, (XP+):

Code: Text [Select]
  1. @echo off
  2.  
  3. if "%PROCESSOR_ARCHITECTURE%"=="AMD64" goto X64
  4.  
  5. :X86
  6. echo.X86 Architecture
  7. echo.
  8. for /f "usebackq delims={,} tokens=2" %%a in (`reg.exe query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall`) do (call :testOffice %%a)
  9.  
  10. goto :END
  11.  
  12. :X64
  13. echo.X64 Architecture
  14. echo.
  15. for /f "usebackq delims={,} tokens=2" %%a in (`reg.exe query HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall`) do (call :testOffice %%a)
  16.  
  17. goto :END
  18.  
  19.  
  20. :testOffice
  21. set temp=%1
  22. set test=%temp:~24,12%
  23. set office=D000000FF1CE
  24. if %test%==%office% call :officeFound %temp%
  25. goto :EOF
  26.  
  27. :officeFound
  28. for /f "delims=- tokens=2,3" %%b in ("%~1") do (call :officeType %%b %%c)
  29. goto :EOF
  30.  
  31. :officeType
  32. set ctroff=008C
  33. set onedr=00BA
  34. if %1==%ctroff% echo.Click-to-Run MS Office
  35. if %1==%onedr% call :oneDrive %2
  36. goto :EOF
  37.  
  38. :oneDrive
  39. set salone=0000
  40. if %1==%salone% (
  41.         echo.Stand-alone OneDrive MS Office
  42. ) else (
  43.         echo.Office 2013 version of MS Office
  44. )
  45. goto :EOF
  46.  
  47. :END

Fixed and tested with some fake reg keys - seems to work.
2399
Non-Windows Software / Re: Android: Looking for true app data backup solution
« Last post by 4wd on July 15, 2014, 05:15 AM »
A question: Even after paying for ROM Toolbox Pro, you're still prompted to buy more within the program?

BTW, I know why you guys really bought it ;D

Clipboard Image.jpg
2400
Living Room / Re: Raspberry Pi's $35 Linux PC
« Last post by 4wd on July 14, 2014, 06:19 AM »
New Raspberry Pi Model B+

raspberry-pi-model-b-plus-raspberry-pi-australia_grande.jpg

What's the same:

  • Same Broadcom BCM2835 Chipset
  • Same 512MB RAM
  • Same full size HDMI port
  • Same 10/100 Ethernet port
  • Same CSI camera port and DSI display ports
  • Same micro USB power supply connection

What has changed:
  • Now comes with 4 USB ports so you can now connect more devices than ever to your Raspberry Pi.
  • There is a 40pin extended GPIO so you can build even bigger and better projects than ever before. The first 26 pins are identical to the Model B to provide 100% backward compatibility for your projects.
  • Micro SD slot instead of the full size SD slot for storing information and loading your operating systems.
  • Advanced power management:
  • You can now provide up to 1.2 AMP to the 4 USB ports – enabling you to connect more power hungry USB devices without needing an external USB hub. (This feature requires a 2Amp micro USB Power Supply)
  • The B+ board now uses less power (600mA) than the Model B Board (750mA) when running
  • Combined 4-pole jack for connecting your stereo audio out and composite video out

Please note: The Raspberry Pi Model B+ is laid-out differently to the previous Raspberry Pis and existing enclosures and crusts (daughter boards) may not fit. Checkout the data sheet downloads below.

Specifications:
  • Chip: Broadcom BCM2835 SoC
  • Core Architecture: ARM11
  • CPU: 700 MHz Low Power ARM1176JZFS Applications Processor
  • GPU
  •    Dual Core VideoCore IV® Multimedia Co-Processor
  •    Provides Open GL ES 2.0, hardware-accelerated OpenVG, and 1080p30 H.264 high-profile decode
  •    Capable of 1Gpixel/s, 1.5Gtexel/s or 24GFLOPs with texture filtering and DMA infrastructure
  • Memory: 512MB SDRAM
  • Operating System: Boots from Micro SD card, running a version of the Linux operating system
  • Dimensions: 85 x 56 x 17mm
  • Power: Micro USB socket 5V, 2A
  • Ethernet: 10/100 BaseT Ethernet socket
  • Video:
  •    HDMI (rev 1.3 & 1.4)
  • USB: 4 x USB 2.0 Connector
  • GPIO Connector:
  •    40-pin 2.54 mm (100 mil) expansion header: 2x20 strip
  •    Providing 27 GPIO pins as well as +3.3 V, +5 V and GND supply lines
  • Camera Connector: 15-pin MIPI Camera Serial Interface (CSI-2)
  • JTAG: Not populated
  • Display Connector: Display Serial Interface (DSI) 15 way flat flex cable connector with two data lanes and a clock lane
  • Memory Card Slot: SDIO
Pages: prev1 ... 91 92 93 94 95 [96] 97 98 99 100 101 ... 225next