Showing posts with label Bluetooth. Show all posts
Showing posts with label Bluetooth. Show all posts

Thursday, May 12, 2016

More on the Lowrance Elite 7 Ti

I guess I'll start out with the undocumented web browser interface I found. If you use a device that supports WiFi and web browsing then you can access this webpage. First pair up your device via WiFi like you do when using it with the Android or Apple Lowrance Go Free App. Then start up a web browser and type in the IP address of your unit. You should then get a page that looks like this:


The upper section is for uploading and downloading your Waypoints. Routes, and Trials USR file which resides in a protected area of storage. If you click the download button you end up with this:


This allows wireless transfers of this file directly to your device of choice instead of transferring it to an SD card and transferring it from the SD card to your device .... sweet

Basically these units are set up just like a smart phone or tablet. It runs Embedded Linux for ARM CPU's as it's core OS just like Android does, Also like Android, Lowrance has it's own custom GUI which gives it it's character but the hardware and storage memory is all controlled by the Linux OS. So just like an "Unrooted" or "Unlocked" phone or tablet the OS'es core file storage is protected from user access and you have a "home" directory that allows access to a small portion of storage for logging files, custom wallpaper, downloads from the Go Free website, etc. That's what the Logs section gives you access to. It's basically a simple FTP file server and when you click the "Logs" link you can see it's an FTP port. You can also access it via a FTP program by typing in the same IP address you used before and enter 21 as the port


Those folders are where you can download (or upload with a FTP program) your Sonar logs files and AIS files for those who have that addition to their system. If you click the parent-directory link it takes you up to the userdata folder which looks like this:


This gives you access to additional folders of interest like screenshots. Here's a little tip on how this undocumented feature can be used to many people's advantage. I can take a screen shot of something interesting I see on the finder. and then access it via my smartphone's web browser and then transfer the screen shot to Google + or Facebook or any other place you upload pictures. No messing around with transferring stuff to a micro SD card and then to my phone or tablet which is still tricky depending on the device. 
If you go up one more to the pseudo-root directory (Really a user's Home directory root) all you see is a folder marked 'userdata' but if you have an SD card plugged in you see this:

For some reason only known to a Lowrance engineer (or perhaps an oversight) it always displays 0 bytes for the SD card but you can click on it and access the files. I haven't tried it yet but theoretically I could delete a map and upload a new one via FTP and have a new map. I suspect I'll have to unplug and replug in the card to get it to read it though. Still that's a lot easier than fumbling around with a bunch of micro SD cards in a rocking boat ...... in the wind .... possibly raining .... etc.


As far as I know I'm the first to find this undocumented feature and the first to document it in detail. It does raise some interesting possibilities. I have a Nexus 7 2013 (Still one of the brightest LCD's out there) which I will use to display and control the Elite Ti remotely and I use a file manager program called ES File Manager and it has an FTP client built in so I can store scan logs, and maps on the Nexus 7 and transfer them back and forth to the Elite Ti with a few swipes of a finger. How cool is that?
As I mentioned in the previous post using the internal GPS for map making creates a sizeable error in the data so I reworked the NMEA multiplexer/GPS/logger I made last year to act as just a GPS with multiple outputs. I also reprogrammed the GPS to send all the messages the Elite Ti does such as $GPZDA which is just date and time but is apparently used by the Elite Ti to set the date and time on the unit. Because the Arduino's are fairly slow (16MHz) and the way they transfer data to an SD card I had to limit the data to 1 Hz but my unit is capable of 5 Hz so I reprogrammed the GPS for the faster rate. The output of the GPS module goes to one of the UARTS on the Arduino Mega and also to the same RS232 converter I used before only reversed, it's now an output instead of an input for a finder. I send that to the Elite Ti's NMEA 0183 input and the Elite Ti picks it up automatically and uses it instead of the internal GPS, no muss no fuss. The GPS data is sent to the Mega and output to the USB port and to a Bluetooth Radio so it can still be used without the finder. Here's a couple of shots of the reworked unit. I also upped the baud rate to 38400 which is the same 'official' baud rate for AIS (I plan on whipping up a little AIS receiver in the near future to monitor barge traffic when I'm fishing the Mississippi River) 



  The cost on this was a wash, basically the new parts cost about the same as the parts I removed and will use in another project. 
Initially frustrated by not having the NMEA 0183 data bridge over to the Wifi I decided I was going to try to make my own using the NMEA 0183 RS-422 outputs. Just a note, although I used the existing RS-232 converter to drive the RS-422 inputs I wouldn't recommend that with the outputs. If you ground one of the differential inputs (I used only one input and ground to ground) it may or may not work but you won't hurt anything, however grounding one of the outputs is a different story. Outputs without a load (grounded) tend to go up in smoke and even though the Lowrance likely has opto-isolated I/O it's still not a good idea. Besides getting the proper RS-422/485 to TTL (0-5V) converter is about the same price. I got mine from Fasttech.com out of Hong Kong for $1.10 
About a year ago I came across a neat little device designed by a Chinese manufacturer that looked very promising based on their ESP8266 WIFi IC. At the time people were still trying to translate the Chinese only data sheet and were hooking them to Arduino's and programming them via AT modem codes ( it has a 32 bit processor core and 512k -1Mb eeprom but no one knew how to program it until the English datasheets came out) The manufacturer released official datasheets in English last summer and development really took off so I figured someone had tried something like this even if it was for WiFi control of a different RS-232/422/485 device. So I headed up to the best place I know for info on the ESP8266 www.esp8266.com (of course)  And there I found this neat little project that was just what the doctored order .... I hate having to "redesign the wheel"  which is what I love about Open Source. So most of the following is credited to KB7KMO Larry Littlefield who is on a boat somewhere in the Pacific I guess. You can find more details on his version on his blog .

I made some minor changes to Larry's original design. First I dropped the switches because I likely won't need to reprogram the unit and if I do I can just tack in temporary jumpers. I set up my circuit on a breadboard first and programmed everything and verified it's operation and then mounted everything to a prototyping PC board. Larry used a single transistor circuit (shrewd) to convert the bi-polar higher voltage RS-232 signal to 3.3V logic levels. RS-232 signals also need to be 'inverted' since -12v is a logic high and +12v logic low which this single transistor converter does just fine (Converting from 3.3v or 5v to -12v to +12v RS-232 levels is a little trickier) The speeds are slow enough that about any General Purpose NPN transistor can be used here. However in my case I'm using a RS422/485 to TTL (5v) converter but I still need to convert the 5v TTL levels down to the 3.3v levels the ESP8266 needs. I could use Larry's single transistor circuit to do that except it inverts the signal and I don't want that. Now I could use a series current limiting resistor and hope the ESP8266 has "Clamping Diodes" to protect the inputs (It likely does) or I could make a simple 2 resistor voltage divider but the big downside to that is as the frequency goes up (higher baud rate) the capacitance in the circuit and input capacitance of the EPS8266 and the resistors starts to act as a lowpass filter which 'rounds off' the corners of your square wave signal which is never good for reliability. So I modified Larry's single transistor converter so it wouldn't invert the signal. All you really have to do to accomplish that is take out the NPN and use a PNP instead and change the configuration from Larry's common emitter setup to a common collector setup. I also changed the value of the pull-up resistors from 4.7k to 3.9k since I have a lot more of them and the value used isn't all that critical anything from 2.2k to 10k will probably work fine. It's a good place to use more uncommon values that you usually have more of left over from that last resistor assortment you bought. 5.1k is another good 'uncommon' value to use and pull-up resistors are a good place to use up some of those more uncommon values you have piling up since the value isn't all that critical, the next closest value will work just fine in most circuits. Anyways here is my version built on a slightly used Radio Shack prototype PCB (I really miss being able to drive 5 minutes and get stuff like this at a Radio Shack)





At the top is the ESP-01 WiFi module and the RS-422/485 to TTL converter. Below the ESP-01 is the PNP level converter transistor and the upside down module is a 3.3V LDO voltage regulator module.



One addition not shown is I added a pair of screw terminals like on the RS-422 board for the power leads in the open area of the PCB. I'll use some 2 twisted pair plus drain shielded data cable that I have but an old USB cable should work just as well in this instance (Don't toss those bad USB cords, cut off the ends and use the cable in your projects). Here it is mounted in a enclosure I made on my 3D printer (I love that thing)




Costs;
ESP-01 module - $3.15
RS-422/485 converter - $1.10
3.3V Regulator module - $0.85
2N3906 Transistor and resistors - $0.10
3mm hardware - ~$1.00 (I buy in bulk)
3D printed enclosure - $0.40
Total - $5.60

I'll make another post on how I set up a NMEA network on my Windows tablet which I set up as a hotspot/router that I can also access with my Android devices and grab the NMEA depth and position data from the Elite 7 Ti. 

Wednesday, May 11, 2016

New Mapping Setup and Lowrance Elite 7 Ti Review

After the first of the year I had a $1000 in my "Boat Improvement Fund" and knowing the HDS Gen 3 units were out and Lowrance was getting ready to end new production on the Gen 2 Touch I decided to see if I could find a setup for under a grand. While searching for deals on the Internet I stumbled across the just released Elite 7 Ti which was not only cheaper than the Gen 2 Touch it uses a single transducer for CHIRP, downscan and sidescan. Having a 16ft by 48" modified jon boat it was problematic get 2 transducers on the right side in 'clean' water and spaced at least 12" apart which is part of the reason I hadn't invested in a side scan unit.

For all practical purposes an Elite 7 Ti is a HDS Gen 2 Touch 7 without the ethernet outputs but does have the built in Go Free WiFi allowing it to be viewed on an Android or Apple smartphone and viewed and controlled with an Android or Apple Tablet (Unfortunately nothing for Windows Tablets but I have a workaround for that later) It uses the same SoC (System on a Chip) as the Gen 2, a NXP i.MX6DL which has a dual core ARM Cortex A9 microprocessor and fairly powerful GPU core with dual display outputs (one for the LCD touchscreen and one for the WiFi output streaming to phone or tablet) and hardware video decoding, a 20 bit parallel camera interface, USB interfaces, UARTS (NMEA 0183), 2 CAN bus transceivers (NMEA 2000) and a gigabit LAN core (Although there are no ethernet outputs the WiFi still needs and uses this core) I wasn't able to determine the speed but it's either 800 MHz or 1 Ghz. Basically the same basic setup as the HDS Gen 2 Touch. It also has a WiFi/Bluetooth combo radio but currently the Bluetooth hasn't been enabled and there is no interface/screen for it until they update the firmware (They were saying early 2016 but I notice that disappeared a couple of weeks ago) It also has RS422/485 level NMEA 0183 Input/output and a NMEA 2000 protocol port. Frankly as an EE who worked for an industrial process control manufacturer in the late 90's  I find the pricing on NMEA 2000 networking gear to be ridiculously expensive for a modified CAN bus that was developed over 30 years ago. 30 bucks just for a 2ft cord with 5 freaking wires in it that probably didn't cost even 2 bucks to manufacture in large quantities (> 100,000)  Can I afford it? Yes .... Will I pay that much, no freaking way. At best I'll buy a couple of the cords for the finders if I can find them cheap enough and build my own backbone

All in all it's a pretty responsive unit (granted I've only tested it it "on the bench" and haven't had it out on the water yet) and I've been able to make some decent maps for it since it allows control of 2-3 layers. For instance I can easily convert existing photo maps by 'tiling' them in Garmin KML/KMZ format and running them through Insight Map Creator which I can use as a shaded relief background which I can do live sidescans over or I can use it in the foreground and adjust the transparency for the isolines and depth labels to show through a vector depth map. Now I'll be able to log more than just depth and position but also hardness, downscan and sidescan data. Then I can play back and see exactly what I saw (or missed) while I was out on the water and then mark waypoints in the comfort of my own home on my main PC (Or play logs back in the finder itself)

However there are a couple of minor drawbacks that I had to make work arounds for. First is a problem every combo Finder/Plotter has. You have an error due to the transducer and the GPS antenna being so far apart, in my case about 8 feet. So if I am going from east to west and object on the finder is going to be marked 8 feet west where the GPS antenna is located. Now if I turn around and go from west to east the same object is going to log 8 feet to the east which is a total error of 16 feet. Now that may be OK for general use but for making maps it's just unacceptable. My depth mapping software can compensate for the error in software but it's a real nightmare to get and keep calibrated. So the solution I came up with back in 2010 was first using a USB GPS puck and an extender cable to place it over the transducer on the back deck which proved to work well as far as calibration and accuracy but the USB could be flaky and would often glitch when I started the motor. so in 2012 I went over to amplified antenna that are in some of the photos I posted last summer. So I basically reworked the multiplexer/logger/GPS unit I made last year and am sending just the GPS to the NMEA 0183 inputs on the Elite 7 Ti which automatically picked it up and switches back to the internal GPS if I turn it off. (Nice job on that piece of programming by Lowrance) I'll detail that unit in the next post (It also outputs NMEA position data to the USB port and a Bluetooth radio)

Then the other minor drawback although likely not a big deal for the vast majority of people is they didn't bridge the NMEA 0183 data to the ethernet and then stream it out a UDP port like on the HDS Gen 2 Touch even though the WiFI still uses the ethernet LAN core built into the i.MX6DL SoC. Basically all it would take is a few lines of code for Embedded Linux to bridge it to the LAN core but I guess since they dropped the ethernet outputs they wrongly thought it wasn't still an option. I've been messing around with a little WiFi module based on the ESP8266 WiFi chip and when I went looking for a way to use it by transmitting the NMEA 0183 output of the Elite Ti I found that someone had already beat me too it so I slightly modified it and it sends NMEA depth and position data to my main Windows Tablet PC which is set up as an Access Point/Hotspot which other devices can connect to (Like my Nexus 7 tablet running Open CPN) I'll also go into more detail on that device (I have under $10 in it) in my next post in a day or two. I'll also detail an undocumented web browser interface I found when trying to port scan the Elite Ti looking for the NMEA over WiFi. that allows some files to be transferred to any device that has a web browser and WiFi

Tuesday, May 3, 2016

The W.A.S.P - Details

I haven't made any changes to the unit over the winter since I got a new Lowrance Elite 7 Ti which has Structure Scan (AKA sidescan) so I don't know yet how much I am still going to need this for depth sounding in the flooded trees out at Lost Grove Lake (I have some new maps I'll be posting soon on my other blog) So I'll just document what I have already which works well as is.

The main drive for the unit are standard RC/Drone parts. The motors are A2212-13T 1000KV Outrunner Brushless Motors driven by a pair of 30 Amp brushless DC speed controllers. These are connected to a standard 2.4 GHz RC receiver which is controlled by a standard RC dual joystick controller used for planes and drones. These are powered by a pair of 11.1 V 2200 mAH lithium batteries in parallel. (Not shown )






Mounted in the round enclosure mounted on the stand in the back is a GPS receiver. Just below it is a bluetooth radio to send data back to my boat's computer or a tablet. 



Mounted on the front is an Garmin Smart Transducer  which outputs serial NMEA depth, speed and temperature which along with the GPS NMEA position data is sent to an Arduino Mega microcontroller with micro SD shield running the same NMEA multiplexer/logging program as the unit I detailed last year. The depth data is sent to one UART the data from the GPS is sent to a second, the main UART sends the combined data out the USB for debugging and the 4th UART outputs the combined data to the SD card and the Bluetooth radio. I log the Depth and Position to the SD card and send Depth Temperature and Position data back to the boat via the Bluetooth link.




Next up will be a short review of the Lowrance Elite 7 Ti and a couple of additions I made to improve the versatility of the unit.


Thursday, October 8, 2015

Coming Soon: The W.A.S.P.

The Wireless Aquatic Science Platform based around a project out of Spain called the JALC Boat. I have modified the design and added GPS and depth logging capabilities and will be doing a final design over the winter and hopefully also add APM (auto pilot module) to make it autonomous or RC controlled

Here are some quick shots I took the other day and I'll have more details after the season is over and detail the final upgrades I will make over the winter






Wednesday, February 26, 2014

The Complete Package

The Netbook2chartplotter is really the central piece to a larger system but I've never really documented and detailed the rest of the system. Last year I did some upgrades including front and rear anchor winches, an aftermarket Tilt and Trim package,  an access door to the front battery and a Minnkota onboard charger. Also a new removable rack for my pole holders for fishing and new pole holders for traveling between spots.

My boat is a 1976 16 ft aluminum MonArk originally owned by the Wisconsin DNR and I'm the third owner. The second owner put a new Evinrude 25 HP motor and console package in it in 1998 but only used the boat a couple of times a year. I stripped out all the crud wood decking and flooring and built new decks and flooring using all aluminum and converted the storage box into a recirculating livewell. It not only has 2" ribs rather than the 1 1/2" common on this size boat it also has 2 more ribs than most aluminum boats this length. In the floor between the ribs is 2" foam sandwiched between the boat bottom and the aluminum sheet flooring which adds strength, quiets the boat considerably and adds a bit of extra floatation.






Here's some shots of "Control Central" I almost forgot I also upgraded my fishfinder from a Garmin 300C to a Lowrance Elite 7X HDI with a 7" widescreen display. The two switches with the red safety covers (ain't they kewl) are remotes for the front and rear anchor winches



I included this picture because it shows a couple of interesting things. On the left you see the Netbook2chartplotter running Winamp and beaming music via a Bluetooth link to my "mechless" stereo system. Although minimized there are two mapping program going one for each of the GPS receivers in the system.  On the right is the Elite 7x and on the color screen you see a diagonal line from the bottom leading to a bunch of blue near the surface. That's the rear anchor being dropped and the blue cloud is from the air bubbles.




Here's a shot of the front deck showing the new access panel for the battery, the new front anchor winch and the trolling motor that's in bad need of a paint job (Hopefully in a month or two)




A couple of shots looking back showing the new rod rack and pole holders, the new rear anchor winch and the livewell. In the background of the 2nd picture are the concrete posts for the infamous bicycle bridge I've blogged about the last two years






A couple of more detailed shots of the anchor winch and pulley mount






Here's a side shot of the rear which shows the 18" of chain attached to each anchor which gives me a convenient easy to reach spot to clip the safety cable. This model is a Free Fall type and all you have to do it bump the down switch and the anchors will drop so a safety cable is a necessity. Also note the cleat mounted close to the pulley. Not only is it a good idea to have a place to tie the anchor rope in case of an emergency it's good practice to use it in strong current so as not to burn up the clutch in the winch. You can also see the new tilt and trim (Sorry but this is the best shot I have of it) it lifts the motor up 2" and then sets it back 5" so it can grab 'clean water'.  You get a better ride, a bit more top end, and noticeably better gas mileage.


And now for the Nitty Gritty details ........

I'll start with some photos of the rough-in wiring from spring 2010 starting with the rear of the console





And here is something you don't see everyday, in fact you've probably never seen one before. Yes Virginia that is a slide out keyboard tray in the console of a 16ft aluminum Jon boat ......





Here is the side panel where all the control and steering cables and electrical wiring are run. Along the top I mounted a 1" aluminum square tube which gives me plenty of space to work and run stuff while taking away a minimal amount of space from the back section of the boat. The white wire is 16/3 dropcord and feeds the auxillary DC power plugs which I'll detail a little later in this post.


And with the cover on ..... sweet and neat





This shows the rear junction box that holds the 12V and Ground buss bars and a switchover relay for charging the front battery from the motor in case of an emergency (or a long weekend without access to AC power for the onboard chargers) Other than testing it for proper operation a couple of times a year I've never really used it but it's nice to know it is there. Also notable is feedthrough for the control/steering cables and wiring. The boat came with 6 of these ugly pole holders on the side so I cut them down, put some 3M 5200 Marine adhesive/sealant around the rim and stuck them in the holes I drilled on each side of the rear and middle bench seats. This not only protects the cables/wiring from the sharp metal edges it makes running the cables a lot easier. It made it easily possible for me to remove the steering cable and install a new one a foot longer after I installed the tilt and trim without having to remove everything or anything else. It's a lot busier in there now with the battery and relay box for the tilt and trim.





This is what it looks like today with the rack panel pulled out for easy repairs and additions. All I need to do is removal 4 screws and slide it back until it hits the stops to do any kind of servicing. The copper PCB holds the livewell timing circuit I designed and in the upper right corner is a 5V 1.5A linear regulator for the 4 port USB hub. Note also the 12V and Ground bus bars which are also mounted in the rear box and in the front deck panel, again to make easy replacement or additions to the system. On the right you'll see another one of the kind thing for a boat this size, a USB port built into the console and below it a switch for the keyboard LED lighting


And now from the rear access panel with the front panel in position. on the left you can see the 4 port hub, one port goes to the keyboard in the console,  another goes to the secondary GPS receiver, the third goes to the USB port in the front panel of the console and the final one feeds a USB to serial port converter that interfaces with the NMEA port on the fishfinder that feeds depth and temperature information to the Netbook2chartplotter. I have a surplus converter mounted directly to a USB plug end that I'll permanently wire to the fishfinder NMEA cable which will eliminate  the current serial converter and tidy up the compartment a bit. Just barely visible at the bottom are foot switches for the tilt and trim and on the left is the plug for the foot switches which are unplugged when on the trailor so they don't accidentally get tripped during hauling and burn up the TnT pump


A couple of shots of the access panel in the front nose of the boat. There are another pair of power buss bars, to the left are the switch mode current regulators for the LED navigation light in front (more details on that to follow) and on the front cover are the plug for the trolling motor and 2 12V dc power receptacles (More details on them next)




On to the auxiliary power ports. I just hate cigarette lighter style power receptacles. They are big and bulky, unreliable, corrode too easily, are unreliable, and the receptacles need too much depth behind them .... Did I mention they were unreliable? Well it bears repeating which is why I set out to find a better way and I believe I found exactly that. What I came up with is what you are probably most familiar with for the mics on two way radios. The particular 3 pin configuration I use were the standard for balanced Line and Mic connections in recording studios and sound stages before the XLR connector we used today became the standard around 1960. Although I only need 2 pins for power I went with 3 because they don't wiggles as easily as 2 pins and it's always nice to have an extra pin you can rewire to get you by until you get a new replacement (I also used 16/3 cord to feed power to them for the same reason). I get the receptacles ($0.60 each) and plugs ($0.70 each) from a place called Futurlec  which ships parts directly from China and Thailand so it takes a couple of weeks but have been otherwise reliable. The receptacles are extremely low profile and only need about a half inch of clearance but to be better safe than sorry I insulated them after soldering on the leads. What I used was an old can of liquid black tape which once you break the seal starts to slowly harden even with the lid on tight so after about a year it turns into a putty like substance most people throw away. Not me Brother, I use it to mold my own insulators and just scoop some out with a popsickle stick and pressed in in all around the solder connections and mold it into a nice shape. After it dries a day I follow up with a coat of Liquid Black Tape that is fresh



To illustrate how these work first I'll show you my old system for spot lighting. I took some USB LED light 'wands' and changed the dropping resistor for 12V instead of 5V operation and then I had 4 of these USB ports on the sides. Although the wands worked great (still do after 8 seasons) the receptacles would get loose and flaky after 2 or 3 years and need replacement. I had the right idea, just the wrong style receptacle which is what got me to searching for the better replacement





Same light with the new style power plug and a picture of it in action lighting the livewell. You can also see the control for the livewell automatic valve





And last year I added the caps which cost more than the other two parts put together and are harder to find so the best I could do was 2 bucks apiece but still well worth it. I have 3 of these receptacles on each side and two in the front nose panel. All my devices that had those crappy cigarette lighter style plugs now have these plugs on them and I even took one of the old lighter style and mounted one of these receptacles in there so I have an adapter and can still use these devices in my truck or other boats with the cigarette lighter style receptacles. BTW any pictures with the orange date tags are a year off, it was a then new camera with a bajillion features and I must had messed the year up playing around with them and didn't realize it for a couple of weeks so the year is really 2013 not 2012




Next up are the LED navigation lights I designed. The first I made was the rear 'all around' white light. I got ahold of 20 high brightness/high effriciency white LED's for a dollar on eBay and used the 16 that matched the closest for voltage drop. They are 25 degree viewing angle so 16 gives me 360 degrees with a couple of degrees overlap between LED's. I took a cracked globe off  an old nav light, sawed it off just above the threads and epoxied it to a 1" PVC cap I had the 16 LED's and the circuit mounted in. It has a 3 transistor switch mode current regulator circuit that's very efficient and doesn't overheat the LED junction which shortens the lifespan. It will operate down to 8V and still work on a 12V battery that's considered dead for most other purposes



Since incandescent bulbs aren't polarized and active circuits are I had to come up with a simple way to polarize the socket but I still wanted it to work with the standard bulb and globe easily and be replaceable 'on the water' so this is what I came up with





A month or so later (summer 2012) I decided I needed to do something similar with the red-green front navigation light. I had replaced the lens because the old one faded from UV rays and the glue had dried out and the two pieces had separated but I had saved the old lens so that's what I used mounting 10 LED's on each side in two rows. I made two more current regulators adapted for driving 10 LED's instead of 16 and mounted it in a 4x4 PVC electrical box with cover and mounted that behind the nose panel



The layout and build technique I used in the above photo deserves explaination. This is a common technique used in RF circuit design and prototyping. It uses a large ground plane with components that are grounded soldered directly to the ground plane with as short of leads as practical. They also now serve as standoffs for other components in the circuit lending rigidity. Small pieces of PCB material is superglued to the ground plane for attaching the wires. The reason I chose to use RF prototyping technique here is these oscillate in the 80K-100Khz frequency range which is the LF (Low Frequency) part of the RF band. By using this low inductance/resistance ground planes and short leads this keeps the LF radio noise this circuit inherently generates from getting into the boat's wiring system which can mess with the AM and Marine Band radios and even Wifi and Bluetooth.

Last spring after using both for the latter part of the 2012 season I decided all I needed was to make a final tweak and then damp proof the circuits. The tweak I had to make and is visible in the above photo was trimming the current down for the green LED's which were extremely bright compared to the red side (or even the white rear light) because green LED's are so efficient and brighter at the same current. Once again Liquid Black Tape to the rescue (I love this stuff)



And finally my light for night fishing. I had a pair of these mounted on guide posts on my trailer but the welding looked like it was done in 8th grade shop class (and that's probably an insult to 8th graders) so I tore it all out and went with submersible LED tail/brake/side lights that mount below the boat. After a couple of years sitting on a shelf I decided these were too good to waste and came up with 2 of these



  


I wouldn't recommend the in-cord white switches, I just happened to have a couple I found in a box of surplus electronics I bought years ago. The toggle switch is for switching between tail and brake brightness but the tail light brightness is too weak to be usable so I'll make it the power switch and remove the white ones. There is really no need for a low setting as the brake light brightness only draws 230 mA or less than 3 watts which means I can run this light for over 4 hours on 1 amp hour of battery.

How does it work? Well this picture doesn't really do it justice, especially at the ends of the poles but it's pretty bright, it doesn't attract bugs and doesn't mess up your night vision like white, green, and especially blue. Total out of pocket cost - about 5 bucks apiece











I have some more new toys, mainly Android devices that I've interfaced into the system and a hand full of upgrades I'll be performing as soon as it starts to warm up a bit (It's freaking 1 degree right now) and I'll blog about that next time.