@rhizomatics/signalk-boat-tech-directory-plugin 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/LICENSE +121 -0
  2. package/README.md +33 -0
  3. package/package.json +39 -0
  4. package/public/404.html +41 -0
  5. package/public/CNAME +1 -0
  6. package/public/_astro/MobileTableOfContents.astro_astro_type_script_index_0_lang.BcSo_yiZ.js +1 -0
  7. package/public/_astro/Search.astro_astro_type_script_index_0_lang.BimJz4th.js +1 -0
  8. package/public/_astro/TableOfContents.astro_astro_type_script_index_0_lang.Csloo1VZ.js +1 -0
  9. package/public/_astro/common.3y5H_jd2.css +3 -0
  10. package/public/_astro/ec.0vx5m.js +3 -0
  11. package/public/_astro/ec.w36nc.css +1 -0
  12. package/public/_astro/page.LAbJoB63.js +1 -0
  13. package/public/_astro/print.ehPL0gv-.css +1 -0
  14. package/public/_astro/social-preview.BBl0e1iQ_Z4TTY1.webp +0 -0
  15. package/public/_astro/starlight-toc.CTCQXEge.js +1 -0
  16. package/public/_astro/ui-core.DRcs-CYs.js +2 -0
  17. package/public/charts/index.html +82 -0
  18. package/public/contributing/index.html +86 -0
  19. package/public/education/index.html +110 -0
  20. package/public/google7178e7397e075bbe.html +1 -0
  21. package/public/images/logo.jpg +0 -0
  22. package/public/images/social-preview.jpg +0 -0
  23. package/public/index.html +91 -0
  24. package/public/llms.txt +9 -0
  25. package/public/open-source-projects/index.html +162 -0
  26. package/public/pagefind/fragment/en_2d3d407.pf_fragment +0 -0
  27. package/public/pagefind/fragment/en_2d4d5cb.pf_fragment +0 -0
  28. package/public/pagefind/fragment/en_2d9b862.pf_fragment +0 -0
  29. package/public/pagefind/fragment/en_37a1fdf.pf_fragment +0 -0
  30. package/public/pagefind/fragment/en_8a9e3aa.pf_fragment +0 -0
  31. package/public/pagefind/fragment/en_dab882d.pf_fragment +0 -0
  32. package/public/pagefind/fragment/en_e485af9.pf_fragment +0 -0
  33. package/public/pagefind/fragment/en_e8bd411.pf_fragment +0 -0
  34. package/public/pagefind/index/en_e111613.pf_index +0 -0
  35. package/public/pagefind/pagefind-component-ui.css +1509 -0
  36. package/public/pagefind/pagefind-component-ui.js +56 -0
  37. package/public/pagefind/pagefind-entry.json +1 -0
  38. package/public/pagefind/pagefind-highlight.js +1070 -0
  39. package/public/pagefind/pagefind-modular-ui.css +214 -0
  40. package/public/pagefind/pagefind-modular-ui.js +8 -0
  41. package/public/pagefind/pagefind-ui.css +1 -0
  42. package/public/pagefind/pagefind-ui.js +2 -0
  43. package/public/pagefind/pagefind-worker.js +6 -0
  44. package/public/pagefind/pagefind.en_15b6453621.pf_meta +0 -0
  45. package/public/pagefind/pagefind.js +6 -0
  46. package/public/pagefind/wasm.en.pagefind +0 -0
  47. package/public/pagefind/wasm.unknown.pagefind +0 -0
  48. package/public/protocols/index.html +108 -0
  49. package/public/robots.txt +3 -0
  50. package/public/sitemap-0.xml +1 -0
  51. package/public/sitemap-index.xml +1 -0
  52. package/public/social-media/index.html +125 -0
  53. package/public/vendors/index.html +233 -0
@@ -0,0 +1,125 @@
1
+ <!DOCTYPE html><html lang="en" dir="ltr" data-theme="dark" data-has-toc data-has-sidebar class="astro-vdxcvpsm"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>Social Media | Boat Tech Directory</title><link rel="canonical" href="https://boat-tech-directory.rhizomatics.org.uk/@rhizomatics/signalk-boat-tech-directory-plugin/social-media/"/><link rel="sitemap" href="/@rhizomatics/signalk-boat-tech-directory-plugin/sitemap-index.xml"/><link rel="shortcut icon" href="/@rhizomatics/signalk-boat-tech-directory-plugin/favicon.svg" type="image/svg+xml"/><meta name="generator" content="Astro v7.1.4"/><meta name="generator" content="Starlight v0.41.5"/><meta property="og:title" content="Social Media"/><meta property="og:type" content="article"/><meta property="og:url" content="https://boat-tech-directory.rhizomatics.org.uk/@rhizomatics/signalk-boat-tech-directory-plugin/social-media/"/><meta property="og:locale" content="en"/><meta property="og:description" content="Blogs, vlogs, video channels and forums."/><meta property="og:site_name" content="Boat Tech Directory"/><meta name="twitter:card" content="summary_large_image"/><meta name="description" content="Blogs, vlogs, video channels and forums."/><script>
2
+ window.StarlightThemeProvider = (() => {
3
+ const storedTheme =
4
+ typeof localStorage !== 'undefined' && localStorage.getItem('starlight-theme');
5
+ const theme =
6
+ storedTheme ||
7
+ (window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark');
8
+ document.documentElement.dataset.theme = theme === 'light' ? 'light' : 'dark';
9
+ return {
10
+ updatePickers(theme = storedTheme || 'auto') {
11
+ document.querySelectorAll('starlight-theme-select').forEach((picker) => {
12
+ const select = picker.querySelector('select');
13
+ if (select) select.value = theme;
14
+ /** @type {HTMLTemplateElement | null} */
15
+ const tmpl = document.querySelector(`#theme-icons`);
16
+ const newIcon = tmpl && tmpl.content.querySelector('.' + theme);
17
+ if (newIcon) {
18
+ const oldIcon = picker.querySelector('svg.label-icon');
19
+ if (oldIcon) {
20
+ oldIcon.replaceChildren(...newIcon.cloneNode(true).childNodes);
21
+ }
22
+ }
23
+ });
24
+ },
25
+ };
26
+ })();
27
+ </script><template id="theme-icons"><svg aria-hidden="true" class="light astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M5 12a1 1 0 0 0-1-1H3a1 1 0 0 0 0 2h1a1 1 0 0 0 1-1Zm.64 5-.71.71a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l.71-.71A1 1 0 0 0 5.64 17ZM12 5a1 1 0 0 0 1-1V3a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1Zm5.66 2.34a1 1 0 0 0 .7-.29l.71-.71a1 1 0 1 0-1.41-1.41l-.66.71a1 1 0 0 0 0 1.41 1 1 0 0 0 .66.29Zm-12-.29a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.71-.71a1.004 1.004 0 1 0-1.43 1.41l.73.71ZM21 11h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-2.64 6A1 1 0 0 0 17 18.36l.71.71a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.76-.66ZM12 6.5a5.5 5.5 0 1 0 5.5 5.5A5.51 5.51 0 0 0 12 6.5Zm0 9a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 3.5a1 1 0 0 0-1 1v1a1 1 0 0 0 2 0v-1a1 1 0 0 0-1-1Z"/></svg><svg aria-hidden="true" class="dark astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.64 13a1 1 0 0 0-1.05-.14 8.049 8.049 0 0 1-3.37.73 8.15 8.15 0 0 1-8.14-8.1 8.59 8.59 0 0 1 .25-2A1 1 0 0 0 8 2.36a10.14 10.14 0 1 0 14 11.69 1 1 0 0 0-.36-1.05Zm-9.5 6.69A8.14 8.14 0 0 1 7.08 5.22v.27a10.15 10.15 0 0 0 10.14 10.14 9.784 9.784 0 0 0 2.1-.22 8.11 8.11 0 0 1-7.18 4.32v-.04Z"/></svg><svg aria-hidden="true" class="auto astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg></template><link rel="stylesheet" href="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/print.ehPL0gv-.css" media="print"><link rel="stylesheet" href="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/common.3y5H_jd2.css"><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/page.LAbJoB63.js"></script></head><body class="astro-vdxcvpsm"><a class="sl-skip-link astro-vxeigawq" href="#_top">Skip to content</a><div class="page sl-flex astro-gqpr5s5a"><header class="header astro-gqpr5s5a"><div class="header astro-nczgtkxc"><div class="title-wrapper sl-flex astro-nczgtkxc"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" class="site-title sl-flex astro-clw6ags5"><span class="astro-clw6ags5" translate="no">Boat Tech Directory</span></a></div><div class="sl-flex print:hidden astro-nczgtkxc"><site-search class="astro-nczgtkxc astro-r5ar4xm7" data-translations="{&quot;placeholder&quot;:&quot;Search&quot;}"><button data-open-modal disabled aria-label="Search" aria-keyshortcuts="Control+K" class="astro-r5ar4xm7"><svg aria-hidden="true" class="astro-r5ar4xm7 astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.71 20.29 18 16.61A9 9 0 1 0 16.61 18l3.68 3.68a.999.999 0 0 0 1.42 0 1 1 0 0 0 0-1.39ZM11 18a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z"/></svg><span class="sl-hidden md:sl-block astro-r5ar4xm7" aria-hidden="true">Search</span><kbd class="sl-hidden md:sl-flex astro-r5ar4xm7" style="display: none;"><kbd class="astro-r5ar4xm7">Ctrl</kbd><kbd class="astro-r5ar4xm7">K</kbd></kbd></button><dialog style="padding:0" aria-label="Search" class="astro-r5ar4xm7"><div class="dialog-frame sl-flex astro-r5ar4xm7"><button data-close-modal class="sl-flex md:sl-hidden astro-r5ar4xm7">Cancel</button><div class="search-container astro-r5ar4xm7"><div id="starlight__search" class="astro-r5ar4xm7"></div></div></div></dialog></site-search><script>
28
+ (() => {
29
+ const openBtn = document.querySelector('button[data-open-modal]');
30
+ const shortcut = openBtn?.querySelector('kbd');
31
+ if (!openBtn || !(shortcut instanceof HTMLElement)) return;
32
+ const platformKey = shortcut.querySelector('kbd');
33
+ if (platformKey && /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)) {
34
+ platformKey.textContent = '⌘';
35
+ openBtn.setAttribute('aria-keyshortcuts', 'Meta+K');
36
+ }
37
+ shortcut.style.display = '';
38
+ })();
39
+ </script><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/Search.astro_astro_type_script_index_0_lang.BimJz4th.js"></script></div><div class="sl-hidden md:sl-flex print:hidden right-group astro-nczgtkxc"><div class="sl-flex social-icons astro-nczgtkxc"><a href="https://github.com/rhizomatics/boat-tech-directory" rel="me" class="sl-flex astro-cg55etiy"><span class="sr-only astro-cg55etiy">GitHub</span><svg aria-hidden="true" class="astro-cg55etiy astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M12 .3a12 12 0 0 0-3.8 23.38c.6.12.83-.26.83-.57L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.09-.73.09-.73 1.2.09 1.83 1.24 1.83 1.24 1.08 1.83 2.81 1.3 3.5 1 .1-.78.42-1.31.76-1.61-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 0 1 1.23 3.22c0 4.61-2.8 5.63-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .31.2.69.82.57A12 12 0 0 0 12 .3Z"/></svg></a></div><starlight-theme-select><label style="--sl-select-width: 6.25em" class="astro-r2p65idu"><span class="sr-only astro-r2p65idu">Select theme</span><svg aria-hidden="true" class="icon label-icon astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg><select autocomplete="off" class="astro-r2p65idu"><option value="dark" class="astro-r2p65idu">Dark</option><option value="light" class="astro-r2p65idu">Light</option><option value="auto" selected class="astro-r2p65idu">Auto</option></select><svg aria-hidden="true" class="icon caret astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z"/></svg></label></starlight-theme-select><script>
40
+ StarlightThemeProvider.updatePickers();
41
+ </script><script type="module">var e=`starlight-theme`,t=e=>e===`auto`||e===`dark`||e===`light`?e:`auto`,n=()=>t(typeof localStorage<`u`&&localStorage.getItem(e));function r(t){typeof localStorage<`u`&&localStorage.setItem(e,t===`light`||t===`dark`?t:``)}var i=()=>matchMedia(`(prefers-color-scheme: light)`).matches?`light`:`dark`;function a(e){StarlightThemeProvider.updatePickers(e),document.documentElement.dataset.theme=e===`auto`?i():e,r(e)}matchMedia(`(prefers-color-scheme: light)`).addEventListener(`change`,()=>{n()===`auto`&&a(`auto`)});var o=class extends HTMLElement{constructor(){super(),a(n()),this.querySelector(`select`)?.addEventListener(`change`,e=>{e.currentTarget instanceof HTMLSelectElement&&a(t(e.currentTarget.value))})}};customElements.define(`starlight-theme-select`,o);</script><script type="module">var e=class extends HTMLElement{constructor(){super();let e=this.querySelector(`select`);e&&(e.addEventListener(`change`,e=>{e.currentTarget instanceof HTMLSelectElement&&(window.location.pathname=e.currentTarget.value)}),window.addEventListener(`pageshow`,t=>{if(!t.persisted)return;let n=e.querySelector(`option[selected]`)?.index;n!==e.selectedIndex&&(e.selectedIndex=n??0)}))}};customElements.define(`starlight-lang-select`,e);</script></div></div></header><nav class="sidebar print:hidden astro-gqpr5s5a" aria-label="Main"><starlight-menu-button class="print:hidden astro-vvx7mffu"><button aria-expanded="false" aria-label="Menu" aria-controls="starlight__sidebar" class="sl-flex md:sl-hidden astro-vvx7mffu"><svg aria-hidden="true" class="open-menu astro-vvx7mffu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M3 8h18a1 1 0 1 0 0-2H3a1 1 0 0 0 0 2Zm18 8H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2Zm0-5H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2Z"/></svg><svg aria-hidden="true" class="close-menu astro-vvx7mffu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="m13.41 12 6.3-6.29a1.004 1.004 0 1 0-1.42-1.42L12 10.59l-6.29-6.3a1.004 1.004 0 0 0-1.42 1.42l6.3 6.29-6.3 6.29a1 1 0 0 0 0 1.42.998.998 0 0 0 1.42 0l6.29-6.3 6.29 6.3a.999.999 0 0 0 1.42 0 1 1 0 0 0 0-1.42L13.41 12Z"/></svg></button></starlight-menu-button><script type="module">var e=class extends HTMLElement{btn=this.querySelector(`button`);constructor(){super(),this.btn.addEventListener(`click`,()=>this.toggleExpanded());let e=this.closest(`nav`);e&&e.addEventListener(`keyup`,e=>this.closeOnEscape(e)),matchMedia(`(min-width: 50em)`).addEventListener(`change`,()=>this.setExpanded(!1))}setExpanded(e){this.setAttribute(`aria-expanded`,String(e)),document.body.toggleAttribute(`data-mobile-menu-expanded`,e),document.querySelectorAll(`.main-frame, .sl-skip-link`).forEach(t=>{t.toggleAttribute(`inert`,e)})}toggleExpanded(){this.setExpanded(this.getAttribute(`aria-expanded`)!==`true`)}closeOnEscape(e){e.code===`Escape`&&(this.setExpanded(!1),this.btn.focus())}};customElements.define(`starlight-menu-button`,e);</script><div id="starlight__sidebar" class="sidebar-pane astro-gqpr5s5a"><div class="sidebar-content sl-flex astro-gqpr5s5a"><sl-sidebar-state-persist data-hash="0fyqcw0" class="astro-f5yvicm7"><script aria-hidden="true">
42
+ (() => {
43
+ try {
44
+ if (!matchMedia('(min-width: 50em)').matches) return;
45
+ /** @type {HTMLElement | null} */
46
+ const target = document.querySelector('sl-sidebar-state-persist');
47
+ const state = JSON.parse(sessionStorage.getItem('sl-sidebar-state') || '0');
48
+ if (!target || !state || target.dataset.hash !== state.hash) return;
49
+ window._starlightScrollRestore = state.scroll;
50
+ customElements.define(
51
+ 'sl-sidebar-restore',
52
+ class SidebarRestore extends HTMLElement {
53
+ connectedCallback() {
54
+ try {
55
+ const idx = parseInt(this.dataset.index || '');
56
+ const details = this.closest('details');
57
+ if (details && typeof state.open[idx] === 'boolean') details.open = state.open[idx];
58
+ } catch {}
59
+ }
60
+ }
61
+ );
62
+ } catch {}
63
+ })();
64
+ </script><ul class="top-level astro-ojxuodky"><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Home</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/social-media/" aria-current="page" class="large astro-ojxuodky"><span class="astro-ojxuodky">Social Media</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/charts/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Charts</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/open-source-projects/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Open Source Projects</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/protocols/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Protocols</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/vendors/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Vendors</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/education/" class="large astro-ojxuodky"><span class="astro-ojxuodky">News, Education and Reference</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/contributing/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Contributing</span></a></li></ul><script aria-hidden="true">
65
+ (() => {
66
+ const scroller = document.getElementById('starlight__sidebar');
67
+ if (!window._starlightScrollRestore || !scroller) return;
68
+ scroller.scrollTop = window._starlightScrollRestore;
69
+ delete window._starlightScrollRestore;
70
+ })();
71
+ </script></sl-sidebar-state-persist><div class="md:sl-hidden"><div class="mobile-preferences sl-flex astro-b5gddk54"><div class="social-icons astro-b5gddk54"><a href="https://github.com/rhizomatics/boat-tech-directory" rel="me" class="sl-flex astro-cg55etiy"><span class="sr-only astro-cg55etiy">GitHub</span><svg aria-hidden="true" class="astro-cg55etiy astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M12 .3a12 12 0 0 0-3.8 23.38c.6.12.83-.26.83-.57L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.09-.73.09-.73 1.2.09 1.83 1.24 1.83 1.24 1.08 1.83 2.81 1.3 3.5 1 .1-.78.42-1.31.76-1.61-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 0 1 1.23 3.22c0 4.61-2.8 5.63-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .31.2.69.82.57A12 12 0 0 0 12 .3Z"/></svg></a></div><starlight-theme-select><label style="--sl-select-width: 6.25em" class="astro-r2p65idu"><span class="sr-only astro-r2p65idu">Select theme</span><svg aria-hidden="true" class="icon label-icon astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg><select autocomplete="off" class="astro-r2p65idu"><option value="dark" class="astro-r2p65idu">Dark</option><option value="light" class="astro-r2p65idu">Light</option><option value="auto" selected class="astro-r2p65idu">Auto</option></select><svg aria-hidden="true" class="icon caret astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z"/></svg></label></starlight-theme-select><script>
72
+ StarlightThemeProvider.updatePickers();
73
+ </script></div></div></div></div></nav><div class="main-frame astro-gqpr5s5a"><script type="module">var e=document.getElementById(`starlight__sidebar`),t=e?.querySelector(`sl-sidebar-state-persist`),n=`sl-sidebar-state`,r=()=>{let r=[],i=t?.dataset.hash||``;try{let e=sessionStorage.getItem(n),t=JSON.parse(e||`{}`);Array.isArray(t.open)&&t.hash===i&&(r=t.open)}catch{}return{hash:i,open:r,scroll:e?.scrollTop||0}},i=e=>{try{sessionStorage.setItem(n,JSON.stringify(e))}catch{}},a=()=>i(r()),o=(e,t)=>{let n=r();n.open[t]=e,i(n)};t?.addEventListener(`click`,e=>{if(!(e.target instanceof Element))return;let t=e.target.closest(`summary`)?.closest(`details`);if(!t)return;let n=t.querySelector(`sl-sidebar-restore`),r=parseInt(n?.dataset.index||``);isNaN(r)||o(!t.open,r)}),addEventListener(`visibilitychange`,()=>{document.visibilityState===`hidden`&&a()});</script><div class="lg:sl-flex astro-abfeecmu"><aside class="right-sidebar-container print:hidden astro-abfeecmu"><div class="right-sidebar astro-abfeecmu"><div class="lg:sl-hidden astro-q5mffni3"><mobile-starlight-toc data-min-h="2" data-max-h="3" class="astro-5ulgm6bh"><nav aria-labelledby="starlight__on-this-page--mobile" class="astro-5ulgm6bh"><details id="starlight__mobile-toc" class="astro-5ulgm6bh"><summary id="starlight__on-this-page--mobile" class="sl-flex astro-5ulgm6bh"><span class="toggle sl-flex astro-5ulgm6bh">On this page<svg aria-hidden="true" class="caret astro-5ulgm6bh astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1rem;"><path d="m14.83 11.29-4.24-4.24a1 1 0 1 0-1.42 1.41L12.71 12l-3.54 3.54a1 1 0 0 0 0 1.41 1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.24-4.24a1.002 1.002 0 0 0 0-1.42Z"/></svg></span><span class="display-current astro-5ulgm6bh"></span></summary><div class="dropdown astro-5ulgm6bh"><ul class="isMobile astro-cxyftcne" style="--depth: 0;"><li style="--depth: 0;" class="astro-cxyftcne"><a href="#_top" style="--depth: 0;" class="astro-cxyftcne"><span style="--depth: 0;" class="astro-cxyftcne">Overview</span></a></li><li style="--depth: 0;" class="astro-cxyftcne"><a href="#social-media" style="--depth: 0;" class="astro-cxyftcne"><span style="--depth: 0;" class="astro-cxyftcne">Social Media</span></a><ul class="isMobile astro-cxyftcne" style="--depth: 1;"><li style="--depth: 1;" class="astro-cxyftcne"><a href="#blogs" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Blogs</span></a></li><li style="--depth: 1;" class="astro-cxyftcne"><a href="#vlogs" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Vlogs</span></a></li><li style="--depth: 1;" class="astro-cxyftcne"><a href="#forums" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Forums</span></a></li></ul></li></ul></div></details></nav></mobile-starlight-toc><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/MobileTableOfContents.astro_astro_type_script_index_0_lang.BcSo_yiZ.js"></script></div><div class="right-sidebar-panel sl-hidden lg:sl-block astro-q5mffni3"><div class="sl-container astro-q5mffni3"><starlight-toc data-min-h="2" data-max-h="3"><nav aria-labelledby="starlight__on-this-page"><h2 id="starlight__on-this-page">On this page</h2><ul class="astro-cxyftcne" style="--depth: 0;"><li style="--depth: 0;" class="astro-cxyftcne"><a href="#_top" style="--depth: 0;" class="astro-cxyftcne"><span style="--depth: 0;" class="astro-cxyftcne">Overview</span></a></li><li style="--depth: 0;" class="astro-cxyftcne"><a href="#social-media" style="--depth: 0;" class="astro-cxyftcne"><span style="--depth: 0;" class="astro-cxyftcne">Social Media</span></a><ul class="astro-cxyftcne" style="--depth: 1;"><li style="--depth: 1;" class="astro-cxyftcne"><a href="#blogs" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Blogs</span></a></li><li style="--depth: 1;" class="astro-cxyftcne"><a href="#vlogs" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Vlogs</span></a></li><li style="--depth: 1;" class="astro-cxyftcne"><a href="#forums" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Forums</span></a></li></ul></li></ul></nav></starlight-toc><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/TableOfContents.astro_astro_type_script_index_0_lang.Csloo1VZ.js"></script></div></div></div></aside><div class="main-pane astro-abfeecmu"><main data-pagefind-body class="astro-vdxcvpsm" lang="en" dir="ltr"><div class="content-panel astro-oil7k7jf"><div class="sl-container astro-oil7k7jf"><h1 id="_top" class="astro-2sm4b3ln">Social Media</h1></div></div><div class="content-panel astro-oil7k7jf"><div class="sl-container astro-oil7k7jf"><div class="sl-markdown-content"><!-- Generated from ../../../../README.md by scripts/sync-readme.mjs — do not edit directly. -->
74
+ <div class="sl-heading-wrapper level-h2"><h2 id="social-media">Social Media</h2><a class="sl-anchor-link" href="#social-media"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Social Media”</span></a></div>
75
+ <div class="sl-heading-wrapper level-h3"><h3 id="blogs">Blogs</h3><a class="sl-anchor-link" href="#blogs"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Blogs”</span></a></div>
76
+ <p>Personal sites for sailors and their boats with their tech projects. These are all reasonably live as of 2026.</p>
77
+ <ul>
78
+ <li><a href="https://bergie.iki.fi">Bergie</a> - Baltic sailor, boat projects and SignalK plugin developer (<a href="https://github.com/meri-imperiumi">meri-imperiumi</a>) and <a href="https://handbook.lille-oe.de">boat handbook with checklists</a>.</li>
79
+ <li><a href="https://boathackers.com">BoatHackers</a> - Leopard 45, projects with Home Assistant, Starlink, NMEA2000, Victron.</li>
80
+ <li><a href="https://www.yachtslog.com">Catalina 320 Log</a> - Raspberry Pi, NMEA, SignalK, VBA.</li>
81
+ <li><a href="https://www.cricalix.net">Cricalix</a> - Ireland, Victoria 34, NMEA, Python, Solar, Shipmodul Miniplex.</li>
82
+ <li><a href="https://hackingfamily.com/Cruise_Info/Equipment/Equipment.htm">Hacking Family</a> - Long term world cruisers on Wauquiez-designed catamaran with advice on electronics, software, mapping.</li>
83
+ <li><a href="https://lille-oe.de/boat/">Lille Ø</a> - German owner (English language site), Amigo 40, open source software and hardware projects, LoRa, videos.</li>
84
+ <li><a href="https://www.navigation-mac.fr">Navigation Mac &amp; Co</a> - French, with English translation. News and articles, focus on weather data, macOS and iPad navigation.</li>
85
+ <li><a href="https://www.nick-hayward.co.uk/category/narrowboat/">Nick Hayward</a> - Narrowboat projects including Home Assistant, ESPHome, Victron.</li>
86
+ <li><a href="https://www.homelinux.no">Ole W. Saastad</a> - Raspberry Pi boat integration.</li>
87
+ <li><a href="https://pysselilivet.blogspot.com">Pyssel</a> - Boat projects and news, including Home Assistant, OpenPlotter, ESP32.</li>
88
+ <li><a href="https://www.projectbob.xyz">Project Bob</a> - Autonomous boat circumnavigation project.</li>
89
+ <li><a href="https://seabits.com">Seabits</a> - Pacific North West, Kristen 50 and Symbol Pilothouse motor yachts, SignalK, dashboards, Victron.</li>
90
+ <li><a href="https://corbin39.org/wp-content/uploads/2025/06/BOCKRA-nav-system-notes-Spring-2025-DS-06-06-25.pdf">SY Bockra</a> - 1981 Corbin 39, OpenCPN, Open Boat Projects, AvNav. One-off summary document of experiences.</li>
91
+ <li><img src="https://github.com/favicon.ico" width="16" height="16"> <a href="https://sy-sea-jade.github.io/boatstuff/">SY Sea Jade Boatstuff</a> - Checklists, equipment choices, passage planning templates and other tabular data.</li>
92
+ <li><a href="https://www.thelowcostsailor.com">The Low Cost Sailor</a> - Boat tech news and articles. English, French, Spanish. Also <img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@TheLowCostSailor">Spanish</a> and <img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@lowcostsailor">English</a> YouTube channels.</li>
93
+ <li><a href="https://zappedmyself.com/projects/nmea2000/">Zapped Myself</a> - NMEA2000, AIS, ESP32 projects.</li>
94
+ </ul>
95
+ <div class="sl-heading-wrapper level-h3"><h3 id="vlogs">Vlogs</h3><a class="sl-anchor-link" href="#vlogs"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Vlogs”</span></a></div>
96
+ <p>Video channels from YouTube and elsewhere for boat tech projects.</p>
97
+ <ul>
98
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@8bitsailing/">8-bit Sailing</a> - Raspberry Pi, OpenPlotter and Raymarine.</li>
99
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@BoatingwiththeBaileys">Boating with the Baileys</a> - Electrical and electronics projects on a 2000s Bavaria 36, including SignalK, KIP, Node-RED, OpenPlotter and SensESP.</li>
100
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@boatsandbits">Boats and Bits</a> - DIY boat tech, Raymarine networking, electrics, 3D printing.</li>
101
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@DIYonboard-e4i">DIY Onboard</a> - Raspberry Pi and OpenPlotter.</li>
102
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@garrywoodruff960">Gary Woodruff</a> - Boat projects and HowTo guides for boat electrics and electronics, focus on Lowrance equipment.</li>
103
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@OutChasingStars">Out Chasing Stars</a> - OpenCPN and general boat electrics, electronics.</li>
104
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@PacificYachtSystems">Pacific Yacht Systems</a> - Last active in 2023, large back catalogue of instructional videos on marine electrics, electronics and networking.</li>
105
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@Sir-Real">Raspberry for Sailing</a> - OpenPlotter, SignalK, KIP projects on Raspberry Pi.</li>
106
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@SmartBoatInnovations">Smart Boat Innovations</a> - Raspberry Pi, HomeAssistant and SignalK boat projects.</li>
107
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/playlist?list=PLqHa5JFKHBLwxeCuc6uaa5TzAXVeqTyiD">SV Apres</a> - OpenPlotter, NMEA2000 and general boat tech.</li>
108
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@TheFloridaCaptain">The Florida Captain</a> - Open source boat network and apps.</li>
109
+ <li><img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@Tom-seahorse/videos">Tom Seahorse</a> - UK. Catamaran. Raspberry Pi, OpenCPN, Home Assistant.</li>
110
+ </ul>
111
+ <div class="sl-heading-wrapper level-h3"><h3 id="forums">Forums</h3><a class="sl-anchor-link" href="#forums"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Forums”</span></a></div>
112
+ <p><em>All active as of 2026</em></p>
113
+ <ul>
114
+ <li><a href="https://www.boatdesign.net/forums/onboard-electronics-controls/">boatdesign.net</a> - Electronics and Controls forum.</li>
115
+ <li><img src="https://www.facebook.com/favicon.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/5844662375630348">Boat Electrical and Electronic Q&amp;A</a> - Private Facebook group, &gt;70k members, avg post per day.</li>
116
+ <li><img src="https://www.facebook.com/favicon.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/380510566227511/">NMEA 2000 Support Group</a> - Public Facebook group.</li>
117
+ <li><img src="https://www.facebook.com/favicon.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/699562237256639/">NMEA 2000 Technical Forum</a> - Private Facebook group.</li>
118
+ <li><img src="https://www.facebook.com/favicon.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/2405863179652854/">OpenCPN Users</a> - Private Facebook group, &gt;12k members, dozen or two posts a month.</li>
119
+ <li><a href="https://forum.openmarine.net">OpenMarine</a> - Marine electronics and networking, focus on Macarthur HAT, PyPilot, OpenPlotter and Node RED.</li>
120
+ <li><a href="https://panbo.com/marineelectronicsforum/">Panbo</a> - Marine electronics and networking.</li>
121
+ <li><img src="https://www.facebook.com/favicon.ico" width="16" height="16"> <a href="https://www.facebook.com/groups/1666364153609573/">Raspberry Pi for Boats</a> - Private Facebook group, &gt;17k members, couple dozen posts per month.</li>
122
+ <li><a href="https://groups.google.com/g/signalk">SignalK Google Group</a> - Active as of end 2025.</li>
123
+ <li><a href="https://www.thehulltruth.com/marine-electronics-forum-19/">The Hull Truth</a> - Marine electronics forum.</li>
124
+ </ul>
125
+ </div><footer class="sl-flex astro-xhxjzfa7"><div class="meta sl-flex astro-xhxjzfa7"></div><div class="pagination-links print:hidden astro-jgq3vlii" dir="ltr"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" rel="prev" class="astro-jgq3vlii"><svg aria-hidden="true" class="astro-jgq3vlii astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1.5rem;"><path d="M17 11H9.41l3.3-3.29a1.004 1.004 0 1 0-1.42-1.42l-5 5a1 1 0 0 0-.21.33 1 1 0 0 0 0 .76 1 1 0 0 0 .21.33l5 5a1.002 1.002 0 0 0 1.639-.325 1 1 0 0 0-.219-1.095L9.41 13H17a1 1 0 0 0 0-2Z"/></svg><span class="astro-jgq3vlii">Previous<br class="astro-jgq3vlii"><span class="link-title astro-jgq3vlii">Home</span></span></a><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/charts/" rel="next" class="astro-jgq3vlii"><svg aria-hidden="true" class="astro-jgq3vlii astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1.5rem;"><path d="M17.92 11.62a1.001 1.001 0 0 0-.21-.33l-5-5a1.003 1.003 0 1 0-1.42 1.42l3.3 3.29H7a1 1 0 0 0 0 2h7.59l-3.3 3.29a1.002 1.002 0 0 0 .325 1.639 1 1 0 0 0 1.095-.219l5-5a1 1 0 0 0 .21-.33 1 1 0 0 0 0-.76Z"/></svg><span class="astro-jgq3vlii">Next<br class="astro-jgq3vlii"><span class="link-title astro-jgq3vlii">Charts</span></span></a></div></footer></div></div></main></div></div></div></div></body></html>
@@ -0,0 +1,233 @@
1
+ <!DOCTYPE html><html lang="en" dir="ltr" data-theme="dark" data-has-toc data-has-sidebar class="astro-vdxcvpsm"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><title>Vendors | Boat Tech Directory</title><link rel="canonical" href="https://boat-tech-directory.rhizomatics.org.uk/@rhizomatics/signalk-boat-tech-directory-plugin/vendors/"/><link rel="sitemap" href="/@rhizomatics/signalk-boat-tech-directory-plugin/sitemap-index.xml"/><link rel="shortcut icon" href="/@rhizomatics/signalk-boat-tech-directory-plugin/favicon.svg" type="image/svg+xml"/><meta name="generator" content="Astro v7.1.4"/><meta name="generator" content="Starlight v0.41.5"/><meta property="og:title" content="Vendors"/><meta property="og:type" content="article"/><meta property="og:url" content="https://boat-tech-directory.rhizomatics.org.uk/@rhizomatics/signalk-boat-tech-directory-plugin/vendors/"/><meta property="og:locale" content="en"/><meta property="og:description" content="Hardware and software vendors, and specialist consultants."/><meta property="og:site_name" content="Boat Tech Directory"/><meta name="twitter:card" content="summary_large_image"/><meta name="description" content="Hardware and software vendors, and specialist consultants."/><script>
2
+ window.StarlightThemeProvider = (() => {
3
+ const storedTheme =
4
+ typeof localStorage !== 'undefined' && localStorage.getItem('starlight-theme');
5
+ const theme =
6
+ storedTheme ||
7
+ (window.matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark');
8
+ document.documentElement.dataset.theme = theme === 'light' ? 'light' : 'dark';
9
+ return {
10
+ updatePickers(theme = storedTheme || 'auto') {
11
+ document.querySelectorAll('starlight-theme-select').forEach((picker) => {
12
+ const select = picker.querySelector('select');
13
+ if (select) select.value = theme;
14
+ /** @type {HTMLTemplateElement | null} */
15
+ const tmpl = document.querySelector(`#theme-icons`);
16
+ const newIcon = tmpl && tmpl.content.querySelector('.' + theme);
17
+ if (newIcon) {
18
+ const oldIcon = picker.querySelector('svg.label-icon');
19
+ if (oldIcon) {
20
+ oldIcon.replaceChildren(...newIcon.cloneNode(true).childNodes);
21
+ }
22
+ }
23
+ });
24
+ },
25
+ };
26
+ })();
27
+ </script><template id="theme-icons"><svg aria-hidden="true" class="light astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M5 12a1 1 0 0 0-1-1H3a1 1 0 0 0 0 2h1a1 1 0 0 0 1-1Zm.64 5-.71.71a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l.71-.71A1 1 0 0 0 5.64 17ZM12 5a1 1 0 0 0 1-1V3a1 1 0 0 0-2 0v1a1 1 0 0 0 1 1Zm5.66 2.34a1 1 0 0 0 .7-.29l.71-.71a1 1 0 1 0-1.41-1.41l-.66.71a1 1 0 0 0 0 1.41 1 1 0 0 0 .66.29Zm-12-.29a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.71-.71a1.004 1.004 0 1 0-1.43 1.41l.73.71ZM21 11h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-2.64 6A1 1 0 0 0 17 18.36l.71.71a1 1 0 0 0 1.41 0 1 1 0 0 0 0-1.41l-.76-.66ZM12 6.5a5.5 5.5 0 1 0 5.5 5.5A5.51 5.51 0 0 0 12 6.5Zm0 9a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0 3.5a1 1 0 0 0-1 1v1a1 1 0 0 0 2 0v-1a1 1 0 0 0-1-1Z"/></svg><svg aria-hidden="true" class="dark astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.64 13a1 1 0 0 0-1.05-.14 8.049 8.049 0 0 1-3.37.73 8.15 8.15 0 0 1-8.14-8.1 8.59 8.59 0 0 1 .25-2A1 1 0 0 0 8 2.36a10.14 10.14 0 1 0 14 11.69 1 1 0 0 0-.36-1.05Zm-9.5 6.69A8.14 8.14 0 0 1 7.08 5.22v.27a10.15 10.15 0 0 0 10.14 10.14 9.784 9.784 0 0 0 2.1-.22 8.11 8.11 0 0 1-7.18 4.32v-.04Z"/></svg><svg aria-hidden="true" class="auto astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg></template><link rel="stylesheet" href="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/print.ehPL0gv-.css" media="print"><link rel="stylesheet" href="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/common.3y5H_jd2.css"><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/page.LAbJoB63.js"></script></head><body class="astro-vdxcvpsm"><a class="sl-skip-link astro-vxeigawq" href="#_top">Skip to content</a><div class="page sl-flex astro-gqpr5s5a"><header class="header astro-gqpr5s5a"><div class="header astro-nczgtkxc"><div class="title-wrapper sl-flex astro-nczgtkxc"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" class="site-title sl-flex astro-clw6ags5"><span class="astro-clw6ags5" translate="no">Boat Tech Directory</span></a></div><div class="sl-flex print:hidden astro-nczgtkxc"><site-search class="astro-nczgtkxc astro-r5ar4xm7" data-translations="{&quot;placeholder&quot;:&quot;Search&quot;}"><button data-open-modal disabled aria-label="Search" aria-keyshortcuts="Control+K" class="astro-r5ar4xm7"><svg aria-hidden="true" class="astro-r5ar4xm7 astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21.71 20.29 18 16.61A9 9 0 1 0 16.61 18l3.68 3.68a.999.999 0 0 0 1.42 0 1 1 0 0 0 0-1.39ZM11 18a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z"/></svg><span class="sl-hidden md:sl-block astro-r5ar4xm7" aria-hidden="true">Search</span><kbd class="sl-hidden md:sl-flex astro-r5ar4xm7" style="display: none;"><kbd class="astro-r5ar4xm7">Ctrl</kbd><kbd class="astro-r5ar4xm7">K</kbd></kbd></button><dialog style="padding:0" aria-label="Search" class="astro-r5ar4xm7"><div class="dialog-frame sl-flex astro-r5ar4xm7"><button data-close-modal class="sl-flex md:sl-hidden astro-r5ar4xm7">Cancel</button><div class="search-container astro-r5ar4xm7"><div id="starlight__search" class="astro-r5ar4xm7"></div></div></div></dialog></site-search><script>
28
+ (() => {
29
+ const openBtn = document.querySelector('button[data-open-modal]');
30
+ const shortcut = openBtn?.querySelector('kbd');
31
+ if (!openBtn || !(shortcut instanceof HTMLElement)) return;
32
+ const platformKey = shortcut.querySelector('kbd');
33
+ if (platformKey && /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)) {
34
+ platformKey.textContent = '⌘';
35
+ openBtn.setAttribute('aria-keyshortcuts', 'Meta+K');
36
+ }
37
+ shortcut.style.display = '';
38
+ })();
39
+ </script><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/Search.astro_astro_type_script_index_0_lang.BimJz4th.js"></script></div><div class="sl-hidden md:sl-flex print:hidden right-group astro-nczgtkxc"><div class="sl-flex social-icons astro-nczgtkxc"><a href="https://github.com/rhizomatics/boat-tech-directory" rel="me" class="sl-flex astro-cg55etiy"><span class="sr-only astro-cg55etiy">GitHub</span><svg aria-hidden="true" class="astro-cg55etiy astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M12 .3a12 12 0 0 0-3.8 23.38c.6.12.83-.26.83-.57L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.09-.73.09-.73 1.2.09 1.83 1.24 1.83 1.24 1.08 1.83 2.81 1.3 3.5 1 .1-.78.42-1.31.76-1.61-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 0 1 1.23 3.22c0 4.61-2.8 5.63-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .31.2.69.82.57A12 12 0 0 0 12 .3Z"/></svg></a></div><starlight-theme-select><label style="--sl-select-width: 6.25em" class="astro-r2p65idu"><span class="sr-only astro-r2p65idu">Select theme</span><svg aria-hidden="true" class="icon label-icon astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg><select autocomplete="off" class="astro-r2p65idu"><option value="dark" class="astro-r2p65idu">Dark</option><option value="light" class="astro-r2p65idu">Light</option><option value="auto" selected class="astro-r2p65idu">Auto</option></select><svg aria-hidden="true" class="icon caret astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z"/></svg></label></starlight-theme-select><script>
40
+ StarlightThemeProvider.updatePickers();
41
+ </script><script type="module">var e=`starlight-theme`,t=e=>e===`auto`||e===`dark`||e===`light`?e:`auto`,n=()=>t(typeof localStorage<`u`&&localStorage.getItem(e));function r(t){typeof localStorage<`u`&&localStorage.setItem(e,t===`light`||t===`dark`?t:``)}var i=()=>matchMedia(`(prefers-color-scheme: light)`).matches?`light`:`dark`;function a(e){StarlightThemeProvider.updatePickers(e),document.documentElement.dataset.theme=e===`auto`?i():e,r(e)}matchMedia(`(prefers-color-scheme: light)`).addEventListener(`change`,()=>{n()===`auto`&&a(`auto`)});var o=class extends HTMLElement{constructor(){super(),a(n()),this.querySelector(`select`)?.addEventListener(`change`,e=>{e.currentTarget instanceof HTMLSelectElement&&a(t(e.currentTarget.value))})}};customElements.define(`starlight-theme-select`,o);</script><script type="module">var e=class extends HTMLElement{constructor(){super();let e=this.querySelector(`select`);e&&(e.addEventListener(`change`,e=>{e.currentTarget instanceof HTMLSelectElement&&(window.location.pathname=e.currentTarget.value)}),window.addEventListener(`pageshow`,t=>{if(!t.persisted)return;let n=e.querySelector(`option[selected]`)?.index;n!==e.selectedIndex&&(e.selectedIndex=n??0)}))}};customElements.define(`starlight-lang-select`,e);</script></div></div></header><nav class="sidebar print:hidden astro-gqpr5s5a" aria-label="Main"><starlight-menu-button class="print:hidden astro-vvx7mffu"><button aria-expanded="false" aria-label="Menu" aria-controls="starlight__sidebar" class="sl-flex md:sl-hidden astro-vvx7mffu"><svg aria-hidden="true" class="open-menu astro-vvx7mffu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M3 8h18a1 1 0 1 0 0-2H3a1 1 0 0 0 0 2Zm18 8H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2Zm0-5H3a1 1 0 0 0 0 2h18a1 1 0 0 0 0-2Z"/></svg><svg aria-hidden="true" class="close-menu astro-vvx7mffu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="m13.41 12 6.3-6.29a1.004 1.004 0 1 0-1.42-1.42L12 10.59l-6.29-6.3a1.004 1.004 0 0 0-1.42 1.42l6.3 6.29-6.3 6.29a1 1 0 0 0 0 1.42.998.998 0 0 0 1.42 0l6.29-6.3 6.29 6.3a.999.999 0 0 0 1.42 0 1 1 0 0 0 0-1.42L13.41 12Z"/></svg></button></starlight-menu-button><script type="module">var e=class extends HTMLElement{btn=this.querySelector(`button`);constructor(){super(),this.btn.addEventListener(`click`,()=>this.toggleExpanded());let e=this.closest(`nav`);e&&e.addEventListener(`keyup`,e=>this.closeOnEscape(e)),matchMedia(`(min-width: 50em)`).addEventListener(`change`,()=>this.setExpanded(!1))}setExpanded(e){this.setAttribute(`aria-expanded`,String(e)),document.body.toggleAttribute(`data-mobile-menu-expanded`,e),document.querySelectorAll(`.main-frame, .sl-skip-link`).forEach(t=>{t.toggleAttribute(`inert`,e)})}toggleExpanded(){this.setExpanded(this.getAttribute(`aria-expanded`)!==`true`)}closeOnEscape(e){e.code===`Escape`&&(this.setExpanded(!1),this.btn.focus())}};customElements.define(`starlight-menu-button`,e);</script><div id="starlight__sidebar" class="sidebar-pane astro-gqpr5s5a"><div class="sidebar-content sl-flex astro-gqpr5s5a"><sl-sidebar-state-persist data-hash="0fyqcw0" class="astro-f5yvicm7"><script aria-hidden="true">
42
+ (() => {
43
+ try {
44
+ if (!matchMedia('(min-width: 50em)').matches) return;
45
+ /** @type {HTMLElement | null} */
46
+ const target = document.querySelector('sl-sidebar-state-persist');
47
+ const state = JSON.parse(sessionStorage.getItem('sl-sidebar-state') || '0');
48
+ if (!target || !state || target.dataset.hash !== state.hash) return;
49
+ window._starlightScrollRestore = state.scroll;
50
+ customElements.define(
51
+ 'sl-sidebar-restore',
52
+ class SidebarRestore extends HTMLElement {
53
+ connectedCallback() {
54
+ try {
55
+ const idx = parseInt(this.dataset.index || '');
56
+ const details = this.closest('details');
57
+ if (details && typeof state.open[idx] === 'boolean') details.open = state.open[idx];
58
+ } catch {}
59
+ }
60
+ }
61
+ );
62
+ } catch {}
63
+ })();
64
+ </script><ul class="top-level astro-ojxuodky"><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Home</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/social-media/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Social Media</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/charts/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Charts</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/open-source-projects/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Open Source Projects</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/protocols/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Protocols</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/vendors/" aria-current="page" class="large astro-ojxuodky"><span class="astro-ojxuodky">Vendors</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/education/" class="large astro-ojxuodky"><span class="astro-ojxuodky">News, Education and Reference</span></a></li><li class="astro-ojxuodky"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/contributing/" class="large astro-ojxuodky"><span class="astro-ojxuodky">Contributing</span></a></li></ul><script aria-hidden="true">
65
+ (() => {
66
+ const scroller = document.getElementById('starlight__sidebar');
67
+ if (!window._starlightScrollRestore || !scroller) return;
68
+ scroller.scrollTop = window._starlightScrollRestore;
69
+ delete window._starlightScrollRestore;
70
+ })();
71
+ </script></sl-sidebar-state-persist><div class="md:sl-hidden"><div class="mobile-preferences sl-flex astro-b5gddk54"><div class="social-icons astro-b5gddk54"><a href="https://github.com/rhizomatics/boat-tech-directory" rel="me" class="sl-flex astro-cg55etiy"><span class="sr-only astro-cg55etiy">GitHub</span><svg aria-hidden="true" class="astro-cg55etiy astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M12 .3a12 12 0 0 0-3.8 23.38c.6.12.83-.26.83-.57L9 21.07c-3.34.72-4.04-1.61-4.04-1.61-.55-1.39-1.34-1.76-1.34-1.76-1.08-.74.09-.73.09-.73 1.2.09 1.83 1.24 1.83 1.24 1.08 1.83 2.81 1.3 3.5 1 .1-.78.42-1.31.76-1.61-2.67-.3-5.47-1.33-5.47-5.93 0-1.31.47-2.38 1.24-3.22-.14-.3-.54-1.52.1-3.18 0 0 1-.32 3.3 1.23a11.5 11.5 0 0 1 6 0c2.28-1.55 3.29-1.23 3.29-1.23.64 1.66.24 2.88.12 3.18a4.65 4.65 0 0 1 1.23 3.22c0 4.61-2.8 5.63-5.48 5.92.42.36.81 1.1.81 2.22l-.01 3.29c0 .31.2.69.82.57A12 12 0 0 0 12 .3Z"/></svg></a></div><starlight-theme-select><label style="--sl-select-width: 6.25em" class="astro-r2p65idu"><span class="sr-only astro-r2p65idu">Select theme</span><svg aria-hidden="true" class="icon label-icon astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M21 14h-1V7a3 3 0 0 0-3-3H7a3 3 0 0 0-3 3v7H3a1 1 0 0 0-1 1v2a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-2a1 1 0 0 0-1-1ZM6 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7H6V7Zm14 10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1h16v1Z"/></svg><select autocomplete="off" class="astro-r2p65idu"><option value="dark" class="astro-r2p65idu">Dark</option><option value="light" class="astro-r2p65idu">Light</option><option value="auto" selected class="astro-r2p65idu">Auto</option></select><svg aria-hidden="true" class="icon caret astro-r2p65idu astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1em;"><path d="M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z"/></svg></label></starlight-theme-select><script>
72
+ StarlightThemeProvider.updatePickers();
73
+ </script></div></div></div></div></nav><div class="main-frame astro-gqpr5s5a"><script type="module">var e=document.getElementById(`starlight__sidebar`),t=e?.querySelector(`sl-sidebar-state-persist`),n=`sl-sidebar-state`,r=()=>{let r=[],i=t?.dataset.hash||``;try{let e=sessionStorage.getItem(n),t=JSON.parse(e||`{}`);Array.isArray(t.open)&&t.hash===i&&(r=t.open)}catch{}return{hash:i,open:r,scroll:e?.scrollTop||0}},i=e=>{try{sessionStorage.setItem(n,JSON.stringify(e))}catch{}},a=()=>i(r()),o=(e,t)=>{let n=r();n.open[t]=e,i(n)};t?.addEventListener(`click`,e=>{if(!(e.target instanceof Element))return;let t=e.target.closest(`summary`)?.closest(`details`);if(!t)return;let n=t.querySelector(`sl-sidebar-restore`),r=parseInt(n?.dataset.index||``);isNaN(r)||o(!t.open,r)}),addEventListener(`visibilitychange`,()=>{document.visibilityState===`hidden`&&a()});</script><div class="lg:sl-flex astro-abfeecmu"><aside class="right-sidebar-container print:hidden astro-abfeecmu"><div class="right-sidebar astro-abfeecmu"><div class="lg:sl-hidden astro-q5mffni3"><mobile-starlight-toc data-min-h="2" data-max-h="3" class="astro-5ulgm6bh"><nav aria-labelledby="starlight__on-this-page--mobile" class="astro-5ulgm6bh"><details id="starlight__mobile-toc" class="astro-5ulgm6bh"><summary id="starlight__on-this-page--mobile" class="sl-flex astro-5ulgm6bh"><span class="toggle sl-flex astro-5ulgm6bh">On this page<svg aria-hidden="true" class="caret astro-5ulgm6bh astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1rem;"><path d="m14.83 11.29-4.24-4.24a1 1 0 1 0-1.42 1.41L12.71 12l-3.54 3.54a1 1 0 0 0 0 1.41 1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.24-4.24a1.002 1.002 0 0 0 0-1.42Z"/></svg></span><span class="display-current astro-5ulgm6bh"></span></summary><div class="dropdown astro-5ulgm6bh"><ul class="isMobile astro-cxyftcne" style="--depth: 0;"><li style="--depth: 0;" class="astro-cxyftcne"><a href="#_top" style="--depth: 0;" class="astro-cxyftcne"><span style="--depth: 0;" class="astro-cxyftcne">Overview</span></a></li><li style="--depth: 0;" class="astro-cxyftcne"><a href="#vendors" style="--depth: 0;" class="astro-cxyftcne"><span style="--depth: 0;" class="astro-cxyftcne">Vendors</span></a><ul class="isMobile astro-cxyftcne" style="--depth: 1;"><li style="--depth: 1;" class="astro-cxyftcne"><a href="#hardware" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Hardware</span></a></li><li style="--depth: 1;" class="astro-cxyftcne"><a href="#software" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Software</span></a></li><li style="--depth: 1;" class="astro-cxyftcne"><a href="#consultants" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Consultants</span></a></li></ul></li></ul></div></details></nav></mobile-starlight-toc><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/MobileTableOfContents.astro_astro_type_script_index_0_lang.BcSo_yiZ.js"></script></div><div class="right-sidebar-panel sl-hidden lg:sl-block astro-q5mffni3"><div class="sl-container astro-q5mffni3"><starlight-toc data-min-h="2" data-max-h="3"><nav aria-labelledby="starlight__on-this-page"><h2 id="starlight__on-this-page">On this page</h2><ul class="astro-cxyftcne" style="--depth: 0;"><li style="--depth: 0;" class="astro-cxyftcne"><a href="#_top" style="--depth: 0;" class="astro-cxyftcne"><span style="--depth: 0;" class="astro-cxyftcne">Overview</span></a></li><li style="--depth: 0;" class="astro-cxyftcne"><a href="#vendors" style="--depth: 0;" class="astro-cxyftcne"><span style="--depth: 0;" class="astro-cxyftcne">Vendors</span></a><ul class="astro-cxyftcne" style="--depth: 1;"><li style="--depth: 1;" class="astro-cxyftcne"><a href="#hardware" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Hardware</span></a></li><li style="--depth: 1;" class="astro-cxyftcne"><a href="#software" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Software</span></a></li><li style="--depth: 1;" class="astro-cxyftcne"><a href="#consultants" style="--depth: 1;" class="astro-cxyftcne"><span style="--depth: 1;" class="astro-cxyftcne">Consultants</span></a></li></ul></li></ul></nav></starlight-toc><script type="module" src="/@rhizomatics/signalk-boat-tech-directory-plugin/_astro/TableOfContents.astro_astro_type_script_index_0_lang.Csloo1VZ.js"></script></div></div></div></aside><div class="main-pane astro-abfeecmu"><main data-pagefind-body class="astro-vdxcvpsm" lang="en" dir="ltr"><div class="content-panel astro-oil7k7jf"><div class="sl-container astro-oil7k7jf"><h1 id="_top" class="astro-2sm4b3ln">Vendors</h1></div></div><div class="content-panel astro-oil7k7jf"><div class="sl-container astro-oil7k7jf"><div class="sl-markdown-content"><!-- Generated from ../../../../README.md by scripts/sync-readme.mjs — do not edit directly. -->
74
+ <div class="sl-heading-wrapper level-h2"><h2 id="vendors">Vendors</h2><a class="sl-anchor-link" href="#vendors"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Vendors”</span></a></div>
75
+ <div class="sl-heading-wrapper level-h3"><h3 id="hardware">Hardware</h3><a class="sl-anchor-link" href="#hardware"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Hardware”</span></a></div>
76
+ <div class="sl-heading-wrapper level-h4"><h4 id="full-integration">Full Integration</h4><a class="sl-anchor-link" href="#full-integration"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Full Integration”</span></a></div>
77
+ <p>Vendors offering full suite of products for modern boats, including plotters, instruments and sensors.</p>
78
+ <ul>
79
+ <li><a href="https://www.bandg.com">B&amp;G</a> - Sensors, radars, plotters, displays for racing and cruising.</li>
80
+ <li><a href="https://www.furunousa.com/en">Furono</a> - Sensors, sonar, radar, plotters, autopilots.</li>
81
+ <li><a href="https://www.garmin.com/">Garmin</a> - Sensors, plotters, radars, sonar, displays, auto-pilots, charts, cameras and integration.</li>
82
+ <li><a href="https://humminbird.johnsonoutdoors.com/us">Humminbird</a> - Plotter, sonar, charts, apps, One-Boat network.</li>
83
+ <li><a href="https://www.lowrance.com">Lowrance</a> - Plotters, transducers, charts, trolling motors.</li>
84
+ <li><a href="https://nke-marine-electronics.com/instruments/">NKE</a> - Plotters, AIS, autopilot, sensors for cruising and ocean racing.</li>
85
+ <li><a href="https://www.pixelsurmer.com/en">Pixel Sur Mer</a> - Racing oriented plotters, auto-pilot, data integration, voice, 3D sail scanning and safety management.</li>
86
+ <li><a href="https://www.raymarine.com">Raymarine</a> - Sensors, radars, plotters, displays, VHF, AIS and Seatalk NG.</li>
87
+ <li><a href="https://www.simrad-yachting.com">Simrad</a> - Plotters, auto-pilots, sonar, radar, AIS, VHF, transducers, charts, apps.</li>
88
+ <li><a href="https://www.si-tex.com">SI-TEX</a> - Plotters, sonar, AIS, radar, autopilot, sensors.</li>
89
+ </ul>
90
+ <div class="sl-heading-wrapper level-h4"><h4 id="nmea-interfacing">NMEA Interfacing</h4><a class="sl-anchor-link" href="#nmea-interfacing"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “NMEA Interfacing”</span></a></div>
91
+ <p>See <img src="https://github.com/favicon.ico" width="16" height="16"> <a href="https://sy-sea-jade.github.io/boatstuff/nmea_wifi">NMEA Wifi Options</a> for comparison of available products.</p>
92
+ <ul>
93
+ <li><a href="https://actisense.com">Actisense</a> - NMEA bridges and gateways.</li>
94
+ <li><a href="http://www.chetcodigital.com">Chetco</a> - NMEA bridges, marine PC, SeaGauge and SeaSmart.NET for Bluetooth, 4G and Wifi.</li>
95
+ <li><a href="https://comarsystems.com">Comar</a> - AIS focused with NMEA bridge, multiplexer and sensors.</li>
96
+ <li><a href="https://copperhilltech.com">Copperhill</a> - Raspberry PI and ESP32 NMEA2000 boards, simulators, HATs.</li>
97
+ <li><a href="https://digitalyacht.co.uk">Digital Yacht</a> - NMEA multiplexers, sensors, gateways plus AIS and 4G/5G.</li>
98
+ <li><a href="http://www.gadgetpool.de">Gadget Pool</a> - German vendor, with English info, of NMEA and Seatalk interfaces and displays.</li>
99
+ <li><a href="https://www.gedad.de">gedad</a> - German vendor, <em>Marine Control Server</em> for NMEA0183, NMEA2000 and i2c, with SignalK support.</li>
100
+ <li><a href="https://hatlabs.fi">HAT Labs</a> - Open Source NMEA2000, ESP32 and RasPi hardware, including the <a href="https://github.com/halos-org/halos">Halos</a> containerized marine OS for Raspberry Pi.</li>
101
+ <li><a href="https://www.ebay.co.uk/usr/luissa.351">Luissa 351</a> - NMEA gateways, multiplexers and Wifi integration. Portugal selling internationally through eBay.</li>
102
+ <li><a href="https://open-boat-projects.org/en/marine-control-server/">Marine Control Server</a> - Raspberry Pi based NMEA 0183 and NMEA 2000 interface with OpenPlotter and SignalK integration.</li>
103
+ <li><a href="http://www.matsutec.cn">Matsutec</a> - Chinese supplier of NMEA hardware, testers, gateways plus AIS and auto-pilots.</li>
104
+ <li><a href="https://mysmartboat.com/">MySmartBoat</a> - Monitoring and integration hardware, electrical components, MySmartApp unified dashboard.</li>
105
+ <li><a href="https://nauti-control.com">Nauti-Control</a> - Seatalk and NMEA2000 wifi bridges and remote controls. Also on <img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@Nauti-Control">YouTube</a>.</li>
106
+ <li><a href="https://ocenav.com">Oceanav</a> - Spanish vendor, with English info, of NMEA wifi gateways and auto-pilot remote control.</li>
107
+ <li><a href="https://www.onwamarine.com/NMEA_Devices.html">Onwa</a> - NMEA converters and multiplexers, and general marine electronics.</li>
108
+ <li><a href="https://openmarine.net">OpenMarine</a> - NMEA <a href="https://macarthur-hat-documentation.readthedocs.io">MacArthur HAT</a>for Raspberry PI with OpenPlotter.</li>
109
+ <li><a href="https://pitufino.com">Pitufino</a> - Wifi gateway for NMEA0183 and NMEA2000 with optional Seatalk 1 and cloud access.</li>
110
+ <li><a href="https://www.quark-elec.com">Quark</a> - NMEA devices, sensors, internet gateways, gauges and remote monitoring.</li>
111
+ <li><a href="https://www.rusoku.com">Rosuku</a> - TouCAN Marine NMEA2000 USB adaptor.</li>
112
+ <li><a href="https://www.sailorguard.com">SailorGuard</a> - Micro-controller minimal implementation of SignalK for performance and low power, and windlass integration with mobile app (<a href="https://www.sailorguard.com/anchor-guard">AnchorGuard</a>).</li>
113
+ <li><a href="https://www.see-sailing.com">See Sailing</a> - NMEA data visualization for yacht race analysis and NMEA to Bluetooth hardware.</li>
114
+ <li><a href="https://shipmodul.com">Shipmodul</a> - NMEA/Seatalk multiplexers and LAN gateways, macOS and Windows configuration client (<a href="https://www.cricalix.net/2023/05/07/miniplex-and-linux/">workaround for Linux</a>).</li>
115
+ <li><a href="https://www.skpang.co.uk">SK Pang Electronics</a> - Raspberry Pi boards and HATs for CAN-Bus integration, NMEA2000 simulators, GPS modules, LCD displays.</li>
116
+ <li><a href="https://www.tinleyelectronics.com/">Tinley</a> - NMEA interfaces, sensors, multiplexers, converters.</li>
117
+ <li><a href="https://veinland.net">Veinland</a> - German vendor, with English info, of commercial NMEA multiplexers, embedded PCs and instruments.</li>
118
+ <li><a href="https://www.vela-navega.com">Vela Navgea</a> - Portuguese sailor who builds <em>NMEA4Wifi</em> range of multiplexers for NMEA0183, N2K and Seatalk.</li>
119
+ <li><a href="https://wegmatt.com">Wegmatt</a> - <em>dAISy</em> AIS receivers and NMEA0183 interfacing.</li>
120
+ <li><a href="https://www.yachtd.com">Yacht Devices</a> - NMEA bridges, gateways and sensors.</li>
121
+ <li><a href="https://yakbitz.com">Yakbitz</a> - Seatalk, NMEA, AIS and Autopilot interfaces.</li>
122
+ </ul>
123
+ <div class="sl-heading-wrapper level-h4"><h4 id="marine-pcs-and-components">Marine PCs and Components</h4><a class="sl-anchor-link" href="#marine-pcs-and-components"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Marine PCs and Components”</span></a></div>
124
+ <ul>
125
+ <li><a href="https://austral-eng.com/">Austral</a> - Marinized Raspberry Pi, sensors, apps including racing auto-pilot.</li>
126
+ <li><a href="https://www.beetronics.co.uk/c-marine?_gl=1*1f0b82j*_up*MQ..*_gs*MQ..&amp;gbraid=0AAAAADm9gnpX9qEe0DYsgTxrXqGaGG_4d">Beetronics</a> - Marine monitors and touchscreens.</li>
127
+ <li><a href="https://www.bluestonetechnology.co.uk/">Bluestone</a> - Marine LCD displays.</li>
128
+ <li><a href="https://www.bvm.co.uk/industries-2/transport-solutions/marine-solutions/">BVM</a> - Marine displays and PCs.</li>
129
+ <li><a href="https://www.cybernetman.com/">Cybernet</a> - Marine rackmount and mini PCs.</li>
130
+ <li><a href="https://www.impulse-embedded.co.uk/solutions/industrial-computing-solutions/marine-and-subsea">Impulse</a> - Marine PCs and displays.</li>
131
+ <li><a href="https://marinedatasolutions.com">Marine Data Solutions</a> - Satellite and mobile internet integration, <em>MDS Blender</em> marine router.</li>
132
+ <li><a href="https://poynting.tech/marine-coastal-antennas/">Poynting</a> - Marine antennas for 4G/5G/Wifi.</li>
133
+ </ul>
134
+ <div class="sl-heading-wrapper level-h4"><h4 id="instruments-and-autopilots">Instruments and Autopilots</h4><a class="sl-anchor-link" href="#instruments-and-autopilots"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Instruments and Autopilots”</span></a></div>
135
+ <ul>
136
+ <li><a href="https://www.airmar.com/">Airmar</a> - Transducers, sensors, NMEA bridging, weather instruments and apps.</li>
137
+ <li><a href="https://www.cyclopsmarine.com">Cyclops Marine</a> - Smart load sensors and displays.</li>
138
+ <li><a href="https://daniamant.com">Daniamant</a> - Forward looking sonar (previously <em>EchoPilot</em>), alarms and other safety related products.</li>
139
+ <li><a href="https://em-trak.com">em-trak</a> - VHF and AIS.</li>
140
+ <li><a href="https://www.icomamerica.com/lineup/marine/">ICOM</a> - Marine VHF, SSB, GMDSS, AIS, radar.</li>
141
+ <li><a href="https://lcjcapteurs.com/en/categorie-girouette-anemometres-capteur-vent/marine-en/">LCJ Capteurs</a> - Wind and weather instruments, StatMETEO wind data recording software.</li>
142
+ <li><a href="https://www.maptattoo.com">MAPTATTOO</a> - eInk chart plotter.</li>
143
+ <li><a href="https://www.nasamarine.com">NASA Marine</a> - Instruments, monitors, AIS, displays.</li>
144
+ <li><a href="https://nautinect.com">Nautinect</a> - Open source hardware design and mobile app, controller with wheel or tiller drive.</li>
145
+ <li><a href="https://www.navinet-autopilot.com/">Navinet</a> - SmartSail autopilot with OpenCPN and NMEA integration.</li>
146
+ <li><a href="https://pcnautic.com">PCNautic</a> - Tiller auto-pilot with mobile apps, plus BoatController NMEA and Wifi interfacing and related instruments.</li>
147
+ <li><a href="https://safiery.com/marine-new/">Safiery</a> - Digital switching, monitoring, Victron and NMEA integration.</li>
148
+ <li><a href="https://go.scadys.io">Scadys</a> - MDD400 TFT display for NMEA 2000, NMEA 0183 and Seatalk data, usable as ST60 replacements. Kickstarter project by cruising sailor.</li>
149
+ <li><a href="https://www.vakaros.com">Vakaros</a> - Racing oriented instruments. Instruction videos on <img src="https://www.youtube.com/favicon.ico" width="16" height="16"> <a href="https://www.youtube.com/@Safiery">YouTube channel</a>.</li>
150
+ <li><a href="https://veratron.com/pages/marine">Veratron</a> - NMEA instruments, gateways and sensors, displays.</li>
151
+ <li><a href="https://wema.co.uk">Wema</a> - NMEA instruments, gauges, bridges, analog to digital converters.</li>
152
+ </ul>
153
+ <div class="sl-heading-wrapper level-h4"><h4 id="boat-integration-and-remote-monitoring">Boat Integration and Remote Monitoring</h4><a class="sl-anchor-link" href="#boat-integration-and-remote-monitoring"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Boat Integration and Remote Monitoring”</span></a></div>
154
+ <ul>
155
+ <li><a href="https://www.boatmonitor32.co.uk">BoatMonitor32</a> - Mobile app and boat hardware hub with Victron integration.</li>
156
+ <li><a href="https://hello-sailor.co.uk">Hello Sailor</a> - LTE/SMS based remote boat monitoring, subscription-free.</li>
157
+ <li><a href="https://www.inav4u.com">iNav4u</a> - <strong>Zora</strong> integrated monitoring, navigation, dashboards.</li>
158
+ <li><a href="https://www.maretron.com">Maretron</a> - Integrated monitoring and visualization, NMEA bridges and sensors.</li>
159
+ <li><a href="https://nauticalert.com">Nautic Alert</a> - Remote GPS tracking, bilge and power monitoring.</li>
160
+ <li><a href="https://navigationlaptops.com">Navigation Laptops</a> - Laptops setup for navigation with instrument packages.</li>
161
+ <li><a href="https://getorca.com/orca-core/">Orca</a> - Data hub for NMEA, auto-pilot, radar with chart plotter and remote monitoring.</li>
162
+ <li><a href="https://www.paj-gps.co.uk">PAJ GPS</a> - UK remote GPS tracking hardware and app.</li>
163
+ <li><a href="https://www.philippi-online.de/">Philippi</a> - German supplier of monitoring, sensors and electrical power components, including refit panels for Bavaria yachts.</li>
164
+ <li><a href="https://www.predictwind.com/datahub">PredictWind DataHub</a> - Data logging, remote monitoring, internet data, NMEA and auto-pilot interface.</li>
165
+ <li><a href="https://raspmarine.dk">Raspmarine</a> - Danish. Raspberry Pi based integration.</li>
166
+ <li><a href="https://www.renogy.com/">Renogy</a> - Power management and monitoring.</li>
167
+ <li><a href="https://sensarmarine.com">Sensar Marine</a> - Subscription-based remote monitoring with app, SMS and NMEA integration.</li>
168
+ <li><a href="https://sirenmarine.com/">Siren Marine</a> - Remote boat monitoring.</li>
169
+ <li><a href="https://smartboatia.com">Smartboatia</a> - Smart boat hub with anchor alarm, remote monitoring, logging and AI-based trim suggestions.</li>
170
+ <li><a href="https://vesscomm.com">Vesscomm</a> - Mobile data (2G/4G) based monitoring hubs and mobile apps.</li>
171
+ <li><a href="https://www.victronenergy.com">Victron</a> - Power devices with associated monitoring, integration, power sensors, displays.</li>
172
+ <li><a href="https://www.vircru.com">Vircru</a> - Remote boat monitoring with mobile app.</li>
173
+ <li><a href="https://www.zigboat.com">Zigboat</a> - Zigbee based remote boat sensors and monitoring with SMS and mobile app notifications by Glomex.</li>
174
+ </ul>
175
+ <div class="sl-heading-wrapper level-h4"><h4 id="audio-electrical-safety-accessories">Audio, Electrical, Safety, Accessories</h4><a class="sl-anchor-link" href="#audio-electrical-safety-accessories"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Audio, Electrical, Safety, Accessories”</span></a></div>
176
+ <ul>
177
+ <li><a href="https://www.aquaticav.com/pages/environments-marine">Aquatic AV</a> - Speakers, amplifiers, head units.</li>
178
+ <li><a href="https://avtex.co.uk">Avtex</a> - 12V TVs popular on boats.</li>
179
+ <li><a href="https://www.bluesea.com">Blue Sea</a> - Electrical components, meters, cable glands and enclosures, on-line and mobile calculators, monitoring.</li>
180
+ <li><a href="https://crimp.studio">Crimp</a> - On-line DC diagram editor with simulation and validation.</li>
181
+ <li><a href="https://www.cruisingsolutions.com/collections/communication">Cruising Solutions</a> - ‘Marriage Savers’ intercom headsets.</li>
182
+ <li><a href="https://kickeruk.com/pages/boat-audio">Kicker Audio</a> - Speakers, amplifiers, cables.</li>
183
+ <li><a href="https://marinedcac.com">MarineDCAC</a> - Cruising sailor run, builds <a href="https://marinedcac.com/pages/bankmanager">BankManager</a> for controlling traditional/lithium battery banks, and DC aircon.</li>
184
+ <li><a href="https://www.peplink.com/">Peplink</a> - Marine antennas and routers for 5G.</li>
185
+ <li><a href="https://docs.hatlabs.fi/sh-rpi/">Sailor Hat for Raspberry Pi</a> - Power Pi from NMEA2000 bus, safe shutdown, glitch protection.</li>
186
+ <li><a href="https://simarine.net">Simarine</a> - Slovenian company supplying battery monitors, control panels, switching, sensors and accessories.</li>
187
+ <li><a href="https://www.topargee.com.au/">Topargee</a> - Bluetooth enabled water and fuel flow meters, automated shut-off valves.</li>
188
+ <li><a href="https://www.yachtcontroller.com">Yacht Controller</a> - Handheld engine &amp; steering remote control for docking.</li>
189
+ <li><a href="https://www.easyais.com">Weatherdock</a> - German supplier of AIS transceivers and splitters, personal trackers and beacons, boat monitoring.</li>
190
+ </ul>
191
+ <div class="sl-heading-wrapper level-h3"><h3 id="software">Software</h3><a class="sl-anchor-link" href="#software"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Software”</span></a></div>
192
+ <!--lint disable double-link-->
193
+ <p>See also <a href="#open-source-projects">Open Source</a>.</p>
194
+ <!--lint enable double-link-->
195
+ <ul>
196
+ <li><a href="https://www.adrena-software.com">Adrena</a> - Navigation and route optimization packages specialized for cruisers or racing.</li>
197
+ <li><a href="https://www.aggsoft.com">AggSoft</a> - Windows based data loggers/aggregators for NMEA, ModBus, GPS, USB etc.</li>
198
+ <li><a href="https://deepblue.app/">DeepBlue</a> - Yacht management app.</li>
199
+ <li><a href="https://www.expeditionmarine.com">Expedition Marine</a> - Windows-based navigation, weather routing and racing app, official supplier to The Volvo Ocean Race, Americas Cup, Sail GP etc.</li>
200
+ <li><a href="https://www.guardiandigital.tech/">Guardian Digital</a> - Soft plotter / MFD for Apple devices.</li>
201
+ <li><a href="https://luckgrib.com">LuckGRIB</a> - Weather data download, view and routing.</li>
202
+ <li><a href="https://www.meltemus.com/index.php/en/">Meltemus</a> - Navigation, weather and charts for Android, iOS, Windows, macOS and Linux. <strong>qtVLM</strong> weather and chart viewer free on some platforms.</li>
203
+ <li><a href="https://maintenanceros.com">Maintenance ROS</a> - Boat maintenance management.</li>
204
+ <li><a href="https://navigatrix.net/nx/">Navigatrix</a> - Custom Linux distribution for navigation. Free.</li>
205
+ <li><a href="https://navimetrix.com">Navimetrix</a> - Integrated navigation, weather, charting, routing for Android, Windows, iOS and macOS.</li>
206
+ <li><a href="https://navstation.net">Navstation</a> - <strong>MacENCx64Integrate</strong> plotting, navigation, charts and NMEA integration for macOS.</li>
207
+ <li><a href="https://www.nmea2000solutions.com">NMEA 2000 Solutions</a> - NMEA BridgeBuilder and NMEA Gateway packages, consultancy.</li>
208
+ <li><a href="https://oceansignal.com">Ocean Signal</a> - PLBs, EPIRBs, AIS alarms, VHF and radar transponders.</li>
209
+ <li><a href="https://osmand.net/">OsmAnd</a> - Offline mobile apps for OpenStreetMap, with nautical support in Pro and higher.</li>
210
+ <li><a href="https://www.rosepoint.com">Rose Point</a> - Navigation software, North America gazatteer, NMEA gateway.</li>
211
+ <li><a href="https://saillogger.com">Sail Logger</a> - Logbook for mobiles, with NMEA integration.</li>
212
+ <li><a href="https://www.sailingperformance.com">Sailing Performance</a> - Racing performance analysis.</li>
213
+ <li><a href="https://sailrouter.org">SailRouter</a> - AI based routing for onboard Raspberry Pi with NMEA and SignalK integration. Community Edition with planned commercial and SaaS versions.</li>
214
+ <li><a href="https://sailsense.xyz">SailSense</a> - Local GenAI assisted analysis, advice and alarms. SignalK based.</li>
215
+ <li><a href="https://www.angelnav.co.uk">SailTrack</a> - <strong>AngelNav</strong> plotter app for mobile and PC with charts and traditional charting techniques and NMEA integration.</li>
216
+ <li><a href="https://www.savvy-navvy.com">SavvyNavvy</a> - Plotter app for mobile with integrated weather, AIS, charting and NMEA integration.</li>
217
+ <li><a href="https://seaiq.com">SeaIQ</a> - Navigation for pilots, on Windows, macOS, iOS, iPadOS. Lower price version for recreational sailors.</li>
218
+ <li><a href="https://www.skipperapp.net">SKipper</a> - SignalK instrumentation display app for iOS, Android, Linux, Windows, macOS and Raspberry Pi.</li>
219
+ <li><a href="https://www.skippo.se">Skippo</a> - Swedish navigation app for iOS, Android and web.</li>
220
+ <li><a href="https://mytimezero.com">TimeZero</a> - Software based full-featured chart plotter.</li>
221
+ <li><a href="https://vesselvault.app">Vessel Vault</a> - Boat maintenance management.</li>
222
+ <li><a href="https://www.wilhelmsk.com">WilhemSK</a> - SignalK dashboard app for iPhone, iPad, macOS, Apple Watch and Apple TV.</li>
223
+ <li><a href="https://www.zapfware.de">Zapfware</a> - Mobile apps including <em>NMEARemote</em> dashboard, <em>NMEAConnect</em> bridging and ORC racing.</li>
224
+ </ul>
225
+ <div class="sl-heading-wrapper level-h3"><h3 id="consultants">Consultants</h3><a class="sl-anchor-link" href="#consultants"><span aria-hidden="true" class="sl-anchor-icon"><svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="m12.11 15.39-3.88 3.88a2.52 2.52 0 0 1-3.5 0 2.47 2.47 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42m8.58-12.08a4.49 4.49 0 0 0-6.33 0l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.52 2.52 0 0 1 3.5 0 2.47 2.47 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3.88-3.89a4.49 4.49 0 0 0 0-6.33M8.83 15.17a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42"></path></svg></span><span class="sr-only" data-pagefind-ignore>Section titled “Consultants”</span></a></div>
226
+ <ul>
227
+ <li><a href="https://nautibus.de">Nautibus</a> - NMEA2000 design, testing, installation. German and English.</li>
228
+ <li><a href="https://francis-fustier.fr">Francis Fustier</a> - France. Training, advice and integration. News and articles, focused on Apple products onboard.</li>
229
+ <li><a href="https://www.pysystems.com">Pacific Yacht Systems</a> - Electrical and electronics consultancy, retail and educational articles &amp; videos.</li>
230
+ <li><a href="https://seatech.systems">Seatech Systems</a> - Marine electronics consultancy, with free advice articles on marine internet.</li>
231
+ <li><a href="https://tweedsmarine.nz/">Tweeds Marine</a> - New Zealand. Consultancy plus free articles, news and calculators online.</li>
232
+ </ul>
233
+ </div><footer class="sl-flex astro-xhxjzfa7"><div class="meta sl-flex astro-xhxjzfa7"></div><div class="pagination-links print:hidden astro-jgq3vlii" dir="ltr"><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/protocols/" rel="prev" class="astro-jgq3vlii"><svg aria-hidden="true" class="astro-jgq3vlii astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1.5rem;"><path d="M17 11H9.41l3.3-3.29a1.004 1.004 0 1 0-1.42-1.42l-5 5a1 1 0 0 0-.21.33 1 1 0 0 0 0 .76 1 1 0 0 0 .21.33l5 5a1.002 1.002 0 0 0 1.639-.325 1 1 0 0 0-.219-1.095L9.41 13H17a1 1 0 0 0 0-2Z"/></svg><span class="astro-jgq3vlii">Previous<br class="astro-jgq3vlii"><span class="link-title astro-jgq3vlii">Protocols</span></span></a><a href="/@rhizomatics/signalk-boat-tech-directory-plugin/education/" rel="next" class="astro-jgq3vlii"><svg aria-hidden="true" class="astro-jgq3vlii astro-n5k4ipy7" width="16" height="16" viewBox="0 0 24 24" fill="currentColor" style="--sl-icon-size: 1.5rem;"><path d="M17.92 11.62a1.001 1.001 0 0 0-.21-.33l-5-5a1.003 1.003 0 1 0-1.42 1.42l3.3 3.29H7a1 1 0 0 0 0 2h7.59l-3.3 3.29a1.002 1.002 0 0 0 .325 1.639 1 1 0 0 0 1.095-.219l5-5a1 1 0 0 0 .21-.33 1 1 0 0 0 0-.76Z"/></svg><span class="astro-jgq3vlii">Next<br class="astro-jgq3vlii"><span class="link-title astro-jgq3vlii">News, Education and Reference</span></span></a></div></footer></div></div></main></div></div></div></div></body></html>