DIY boat electronics devices with open source code
Posted by bearthesailor@reddit | sailing | View on Reddit | 51 comments
Bil
Posted by bearthesailor@reddit | sailing | View on Reddit | 51 comments
Bil
JimBobUK456@reddit
I’ve been trying to build something similar using an esp32 cam. But the main requirements are to;
-monitor temp, heel, gps location, and snap a pic from the top of the mast. - send it over mobile signal using a sim module - ultra low power, run from say a 5ah 12v battery for weeks or months..
So wants to go into a deep sleep.
I found a nice timer module that powers up the esp every X minutes. But the problem is thats 5v module and it needs a buck converter from 12v and it’s power consumption is high
bearthesailor@reddit (OP)
Esp32 can go to sleep and wake up by built-in watchdog timer. You do not need external hardware for that
JimBobUK456@reddit
But can it also power down its peripherals? The sim module and the gps module, as they will be powered externally not via the esp pins
bearthesailor@reddit (OP)
They have power off commands which you issue from esp32 before sleep
JimBobUK456@reddit
Ah ok I’ll look into that. The only other problem would be running it off 12v, any converter is going to have a draw .. not sure how much
bearthesailor@reddit (OP)
Make them run of small battery instead and add small solar panel
snowdrone@reddit
Very cool. Love it! I was just thinking about the need for such open source projects.
EddieVedderIsMyDad@reddit
I appreciate and applaud your efforts. I cannot tell you how much I do not want to experiment with electronics on my own boat, because I’m a lazy Luddite.
pima-trev@reddit
I so wish I could make this make sense to me. It is all exactly what I would like to do but I have absolutely no understanding of it.
Trabuk@reddit
As soon as I can but a boat, I'll get all your products. Awesome work!
slosh_baffle@reddit
That's awesome, I just put an esp32 in that same enclosure for a magnetometer, IMU, and GPS over Bluetooth. I put a little OLED screen in there too so I can watch my heading from the cabin.
sedatedruler@reddit
I was thinking about dipping my toes into custom electronics and wanted to build a simple compass for my boat. Is there a tutorial you’d recommend?
slosh_baffle@reddit
Not really. Ive been doing it for a long time, so I don't have to look at tutorials. Just get a drone gps with a compass like an HGLRC M10 and pass the values through bluetooth. It's already in NMEA format, so you dont have to build packets. You'll just need a UART and an I2C bus on an esp32 or something. Or just use USB and an arduino if you don't need bluetooth. Too many fine details to explain here, but if you have a goal in mind it's easy enough to get started in the practice of DIY electronics.
bearthesailor@reddit (OP)
Also did you implement magnetometer calibration using spherical fit?
M5stack atomS3R and gps unit from m5stack could be a good combo for that type of device.
slosh_baffle@reddit
I have done that before, and Ive tested a lot of IMUs with mags for a very involved augmented reality drone project I am working on. I settled on the USFSMAX because it self-calibrates the mag continuously. It's petty incredible, and it's made by a guy in the Bay Area.
https://github.com/gregtomasch/USFSMAX/blob/master/ST_USFS_MAX_ESP32_Simple_Host_Utility_HI_v0.1/IMU.h
bearthesailor@reddit (OP)
He didn’t seem publish the code for his algorithms mentioned. Only the code for host software
slosh_baffle@reddit
Yeah all of that is on his ASIC. There are some handles in the interface firmware, and you can get in there and mess with the filtering to some degree.
slosh_baffle@reddit
Here's the product page.
https://www.tindie.com/products/onehorse/usfsmax-module-and-carrier/
bearthesailor@reddit (OP)
Did you do Kalman filter for fusion GPS and IMU to get better speed over ground and course over ground?
slosh_baffle@reddit
I use the USFSMAX IMU/mag that has filtering built in. It's really amazing because of the way it self calibrates the mag.
https://github.com/gregtomasch/USFSMAX/blob/master/ST_USFS_MAX_ESP32_Simple_Host_Utility_HI_v0.1/IMU.h
For GPS I use an M10, same as I use in all my drones. I could implement a simple high pass on that, but I probably wont.
HotMountain9383@reddit
Fantastic work man
MadRelaxationYT@reddit
This is so cool
light24bulbs@reddit
Nice. I don't know if you have tried printed circuit board design but it's pretty addicting once you get into it and you can level up pretty fast with YouTube's like Phil's lab
bearthesailor@reddit (OP)
Custom PCB makes sense for large volumes of the devices. And creates a bit of vendor lock-in.
light24bulbs@reddit
It doesn't create any vendor lock in if you share the designs
bearthesailor@reddit (OP)
If PCB breaks a user would have to request a new one from the vendor. Making own would require to order many PCBs manufactured and that doesn’t make sense for an individual user.
millijuna@reddit
Nah, you can order onesies and twosies for like $1/square inch these days. PCB manufacturing has become comodity and dirt cheap
bearthesailor@reddit (OP)
Im not interested in PCB without assembly
millijuna@reddit
Ok, but that's going to be far more reliable than whatever breadboard design or deadbug stuff you put together without it.
bearthesailor@reddit (OP)
Without assembly it will be even less reliable and more labor intensive to put together. People would need to solder
light24bulbs@reddit
Have you looked into it recently? It's like $7
bearthesailor@reddit (OP)
I would think it would vary wildly depending on PCB design and components soldered to it.
light24bulbs@reddit
It really doesn't unless you're looking for assembly. 4 layer boards are like $7 up to relatively large sizes, more than large enough for what you're doing. JLCPCB is selling 50x50mm 8 layer boards for $2. And these prices are for 5 boards. It's absurdly inexpensive.
Assembly services are surprisingly cheap for what they are, too, but I agree they are more for batches of at least two. And it's definitely some work to design around the components that JLCPCB or pcbway have in house without up charges. Anyway, that isn't what I was talking about.
Again though, I'm saying that if you want to have designs broadly used, spitting out a PCB is an awesome and breathtakingly cheap way to do it. The end product is much easier to assemble, more compact, usually more reliable, and often the same price or cheaper as wiring. You might enjoy looking into it.
bearthesailor@reddit (OP)
It’s not my cup of tea at least at the moment to do it myself. But thanks for the ideas
bearthesailor@reddit (OP)
Project Home Page:
https://bareboat-necessities.github.io
duggatron@reddit
The openNewWindow command on the links for the projects is pretty annoying. I would remove that.
fragglerock@reddit
yeh that is pretty horrible.
Double-Masterpiece72@reddit
Awesome stuff. Love open source hardware.
Mobely@reddit
This is very cool. Why did you choose to diy the chartplotter vs using opencpn?
Info sent to smartphone, is that over the users existing system? I didn’t see anything about SIM card modules. There’s a good data only company for this, Hologram. I got some of their SIM cards for free a while back.
bearthesailor@reddit (OP)
OpenCPN is DIY chartplotter and it is in Linux version. Alert messages are sent via your boat router. It already would have SIM card.
KCJwnz@reddit
Lightning strike sensor? Worried you might sleep through it?
bearthesailor@reddit (OP)
It tracks distance to the weather font. Quite useful
KCJwnz@reddit
Ahh gotcha. That's pretty cool
jjmy12@reddit
The Barometer is inside the sealed case?
bearthesailor@reddit (OP)
Once you know how you mount it you can drill a small hole on bottom if you think it’s sealed tight. Or it really supports many i2c sensors (barometers too) via grove connector outside of the box.
deceased_parrot@reddit
Out of curiosity, why is there no cockpit device based on one of those cheap Chinese head units for motorcycles? The hardware seems like a perfect match: waterproof, temperature resistant, 800 nits and cheap.
bearthesailor@reddit (OP)
Which head units?
rap4food@reddit
I have been wanting to do something like this! Thanks.
masterjack-0_o@reddit
Great work! thank you for sharing.
alfpope@reddit
Very cool. I've been thinking about setting up a really simple ESPhome based system for power monitoring. I might have to look into this as an alternative.
ahhh_just_huck_it@reddit
I love seeing this sort of thing. Nerd up!