2026-02-13 05:20:10 -07:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
|
import starlight from '@astrojs/starlight';
|
2026-02-17 21:02:47 -07:00
|
|
|
import opengraphImages, { presets } from 'astro-opengraph-images';
|
|
|
|
|
import * as fs from 'fs';
|
2026-02-13 05:20:10 -07:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
2026-02-17 21:02:47 -07:00
|
|
|
site: 'https://birdcage.warehack.ing',
|
2026-02-13 05:20:10 -07:00
|
|
|
telemetry: false,
|
|
|
|
|
devToolbar: { enabled: false },
|
|
|
|
|
integrations: [
|
|
|
|
|
starlight({
|
|
|
|
|
title: "Birdcage",
|
2026-02-16 05:08:18 -07:00
|
|
|
description: 'A generic AZ/EL positioner that doesn\'t care about wavelength',
|
2026-02-13 05:20:10 -07:00
|
|
|
social: [
|
|
|
|
|
{
|
|
|
|
|
icon: 'github',
|
|
|
|
|
label: 'GitHub',
|
|
|
|
|
href: 'https://github.com/saveitforparts/Travler_Rotor',
|
|
|
|
|
},
|
|
|
|
|
],
|
2026-02-17 21:02:47 -07:00
|
|
|
components: {
|
|
|
|
|
Head: './src/components/Head.astro',
|
|
|
|
|
},
|
2026-02-13 05:20:10 -07:00
|
|
|
customCss: ['./src/styles/custom.css'],
|
|
|
|
|
sidebar: [
|
|
|
|
|
{ label: 'Home', link: '/' },
|
|
|
|
|
{
|
|
|
|
|
label: 'Getting Started',
|
|
|
|
|
autogenerate: { directory: 'getting-started' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Guides',
|
|
|
|
|
autogenerate: { directory: 'guides' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Reference',
|
|
|
|
|
autogenerate: { directory: 'reference' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'Understanding',
|
|
|
|
|
autogenerate: { directory: 'understanding' },
|
|
|
|
|
},
|
Add Experiments section — 14 RF science experiments across DVB and SDR
New section documents what you can do with the positioner beyond satellite TV:
On-board DVB (7 experiments, ready to test):
- Solar radio monitoring, rain fade radiometry, geostationary arc census,
RFI mapping, antenna pattern measurement, DVB signal intelligence,
differential radiometry
External SDR (7 experiments, planned):
- Hydrogen line (1420 MHz), NOAA HRPT (1.7 GHz), EME monitoring (1296 MHz),
GPS/GNSS (1575 MHz), Iridium (1626 MHz), directional ADS-B (1090 MHz),
Inmarsat L-band (~1.5 GHz)
Also adds shared SDR hardware setup page (feeds, LNAs, bias tee safety,
BladeRF/RTL-SDR specs), overview with status table, Experiments card on
homepage, and sidebar with nested DVB/SDR groups.
2026-02-16 07:41:21 -07:00
|
|
|
{
|
|
|
|
|
label: 'Experiments',
|
|
|
|
|
badge: { text: 'New', variant: 'tip' },
|
|
|
|
|
items: [
|
|
|
|
|
{ label: 'Overview', slug: 'experiments' },
|
|
|
|
|
{ label: 'SDR Hardware Setup', slug: 'experiments/sdr-hardware' },
|
|
|
|
|
{
|
|
|
|
|
label: 'On-Board DVB (Ku-Band)',
|
|
|
|
|
autogenerate: { directory: 'experiments/dvb' },
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'External SDR (Multi-Band)',
|
|
|
|
|
autogenerate: { directory: 'experiments/sdr' },
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2026-02-13 05:20:10 -07:00
|
|
|
{
|
|
|
|
|
label: 'Project Journal',
|
|
|
|
|
badge: { text: 'Living', variant: 'note' },
|
|
|
|
|
autogenerate: { directory: 'journal' },
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
}),
|
2026-02-17 21:02:47 -07:00
|
|
|
opengraphImages({
|
|
|
|
|
options: {
|
|
|
|
|
fonts: [
|
|
|
|
|
{
|
|
|
|
|
name: 'Inter',
|
|
|
|
|
weight: 400,
|
|
|
|
|
style: 'normal',
|
|
|
|
|
data: fs.readFileSync('node_modules/@fontsource/inter/files/inter-latin-400-normal.woff'),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'Inter',
|
|
|
|
|
weight: 700,
|
|
|
|
|
style: 'normal',
|
|
|
|
|
data: fs.readFileSync('node_modules/@fontsource/inter/files/inter-latin-700-normal.woff'),
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
render: presets.blackAndWhite,
|
|
|
|
|
}),
|
2026-02-13 05:20:10 -07:00
|
|
|
],
|
|
|
|
|
});
|