Other

Projects/Dungeons and Dragons

🇳🇱 · Bitlair · INJMVO

Inspiratie: storytell ← Oudere versie Versie van 21 jun 2026 07:08 (2 tussenliggende versies door dezelfde gebruiker niet weergegeven) Regel 9: Regel 9: <div style="width: 40%; margin: left; background: #ff8400; border: 4px solid black"> <div style="width: 40%; margin: left; background: #ff8400; border: 4px solid black"> === Bitlair heeft een nieuwe locatie! === === Bitlair heeft een nieuwe locatie! === '' Therevis a NEW Mothership One-shot in town!'' '' There is a NEW Mothership One-shot in town!'' [[Events/2025-07-05 Mothership One-shot]] [[Events/2025-07-05 Mothership One-shot]] | | Regel 21: Regel 21: [[File:Sealofapproval.jpg|thump|250px]] [[File:Sealofapproval.jpg|thump|250px]] By [[User:Nelusthenerd|Nelus]] By [[User:Nelusthenerd|Nelus]] * [[Events/2024-12-08|Startpunt]] Elke Bitlair D&D begind na goed gebruik in een gevangenis: * [[Events/2024-12-08|Startpunt]] Elke Bitlair D&D begind na goed gebruik in een gevangenis , dit geeft een rede waarom de spelers elkaar ontmoeten met weinig inv en anders als de "standaard" bar of guild hall heb je hier geen questboard maar moet je het hebben van je medegevangenen (vergeet een loopje langs de bewakers naar de wapenkamer niet) : "This place is not a place of honor" "This place is not a place of honor" No highly esteemed deed is commemorated here No highly esteemed deed is commemorated here . Nothing of value is here Nothing of value is here Go find the way outside and explore the world "just dont look back here!" Go find the way outside and explore the world "just dont look back here!" Or any other place you went before Or any other place you went before ! * [[ Projects/Dungeons and Dragons/Campaign | Campaign]] Outline bedenken waar de duisternis zijn klauwen kan uitstrekken * [[ Projects/Dungeons and Dragons/Campaign | Campaign]] Outline bedenken waar de duisternis zijn klauwen kan uitstrekken Regel 40: Regel 39: * Dusk a Matt Colville D&D [https://www.youtube.com/watch?v=iFegDmqXud8&t=1s] * Dusk a Matt Colville D&D [https://www.youtube.com/watch?v=iFegDmqXud8&t=1s] * Classes [https://www.youtube.com/watch?v=00EvO-X6Wu4&list=PLDnRMnDDjAzK5uZLidDUtHtD1iN06Qe0G] * Classes [https://www.youtube.com/watch?v=00EvO-X6Wu4&list=PLDnRMnDDjAzK5uZLidDUtHtD1iN06Qe0G] ==Storytelling== Om te kijken hoe de spelers het verhaal beleven is het zeker aan te raden om ze tijdens het spelen kaarten en notulen te laten bijhouden die later gebruikt worden om het spelen samen te vaten in een verhaal == Eerdere sessies == == Eerdere sessies ==

Its-g5

🇳🇱 · Revelation space · Bertrik Sikken

opentraffic map interface ← Older revision Revision as of 07:22, 21 June 2026 (7 intermediate revisions by the same user not shown) Line 8: Line 8: == Introduction == == Introduction == This page is about investigating reception and processing of so-called C-ITS or ITS-G5 signals, see also https://en.wikipedia.org/wiki/Vehicle-to-everything This page is about investigating reception and processing of so-called C-ITS or ITS-G5 signals (802.11p) as used in the Netherlands , see also https://en.wikipedia.org/wiki/Vehicle-to-everything These signals are exchanged between passenger cars, emergency vehicles, traffic lights and other traffic-related equipment. These signals are exchanged between passenger cars, emergency vehicles, traffic lights and other traffic-related equipment. Line 17: Line 17: * Crowd-sourced live map of messages received: https://opentrafficmap.org/ * Crowd-sourced live map of messages received: https://opentrafficmap.org/ * Simplest source code for Arduino-based sniffer: https://git.devlol.org/jstsmthrgk/simple-its-g5-receiver-firmware * Simplest source code for Arduino-based sniffer: https://git.devlol.org/jstsmthrgk/simple-its-g5-receiver-firmware * How to contribute to opentrafficmap: https://wiki.opentrafficmap.org/?utm_source=chatgpt.com#zur_karte_beitragen In the Netherlands, SPAT/MAPem messages are not transferred over wifi-p, but over UDAP. In the Netherlands, SPAT/MAPem messages from traffic lights are not transferred over wifi-p, but over UDAP. You need credentials to access that data, it is not clear if it is feasible to hobbyist to access it. You need credentials to access that data, it is not clear if it is feasible to hobbyist to access it. Interesting project: https://github.com/idkmanLool9/Verkeerslicht Interesting project: https://github.com/idkmanLool9/Verkeerslicht Line 24: Line 25: == Hardware == == Hardware == I got this board, and it worked for me: I got this board, and it worked for me: https://nl.aliexpress.com/item/1005012416463528.html * aliexpress product page https://nl.aliexpress.com/item/1005012416463528.html * espressif schematic https://dl.espressif.com/dl/schematics/SCH_ESP32-C5-DevkitC-1_V1.1_20240621.pdf It has an onboard antenna. There are also other boards with an antenna connection, which allows using an external antenna. This may be better, I don't know yet. It has an onboard antenna. There are also other boards with an antenna connection, which allows using an external antenna. This may be better, I don't know yet. Connect your USB-C cable to the "UART" port. It is connected to an actual USB-UART converter chip and always shows up, regardless of whether the ESP32 is in reset or not. == Software == == Software == TODO See https://github.com/bertrik/its-g5-receiver === Compiling the firmware === Needs python. Preparation: * If you didn't have a python venv, create it: python -m venv .venv * Install platformio into the venv: python pip install platformio * Finally activate the venv: bash source .venv/bin/activate Compile and upload: pio run -t upload Watch packets come in: pio device monitor Packets are logged as a 'hexdump'. The can be converted for wireshark, for example: text2pcap -l 105 message.txt message.pcap Then viewed in wireshark: wireshark message.pcap === opentraffic map interface === See https://github.com/MPW1412/openwrt-otm-bridge#wire-format-mimics-the-esp32-c5-firmware for the wire format.