Other

Overleg gebruiker:INJMVO

πŸ‡³πŸ‡± Β· Bitlair Β· INJMVO

Komma vergeten ← Oudere versie Versie van 4 jul 2026 04:46 (Een tussenliggende versie door dezelfde gebruiker niet weergegeven) Regel 7: Regel 7: |motto=''' "I'll Patch It!"''' |motto=''' "I'll Patch It!"''' }} }} Bij gebrek aan overleg en door het vinden van een D&D club in Drowton lijkt het leuk om mijn voorderingen bij te houden terwijl ik mijn character speel, dit is vanzelfsprekend een [https://www.dndbeyond.com/characters/166356853| Artificer met als Subclass Cartographer ] Bij gebrek aan overleg en door het vinden van een D&D club in Drowton lijkt het leuk om mijn voorderingen bij te houden terwijl ik mijn character speel, dit is vanzelfsprekend een Artificer met als Subclass Cartographer Bij Bitlair heb ik diverse [[Projects/Dungeons_and_Dragons/GameMaster/Language|talen]] gecatalogiseerd Bij Bitlair heb ik diverse [[Projects/Dungeons_and_Dragons/GameMaster/Language|talen]] gecatalogiseerd

Vaatwasser

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· LucasV

Nieuwe pagina aangemaakt met ' Category:Tools Category:Kitchen Tools Category:Cleaning Tools <!-- Add any additional category labels --> {{SafetyCat6}} <!-- Determine the safety category and update label above --> {{NoiseCat3}} <!-- Determine the noise category and update label above --> '''Instructions for using this template:''' Adding a new machine page is done easiest by copying the text from a similar machine and adapting it. Be sure to include a picture and cover all section…' Nieuwe pagina [[Category:Tools]][[Category:Kitchen Tools]][[Category:Cleaning Tools]] <!-- Add any additional category labels --> {{SafetyCat6}} <!-- Determine the safety category and update label above --> {{NoiseCat3}} <!-- Determine the noise category and update label above --> '''Instructions for using this template:''' Adding a new machine page is done easiest by copying the text from a similar machine and adapting it. Be sure to include a picture and cover all sections below, especially what the machine is '''not designed to do''' and material restrictions. =What is it?= ==Identification== What is it called? What is its primary use? What is it '''not designed to do'''? Where is it located? Whose property is it? What sort of material can it best handle - and what '''sort of material may damage it'''? ''Add a picture of the machine here'' De vaatwasser bevind zich in de keuken, is eigendom van MakerSpace Leiden, en is bedoeld voor het wassen van vaat. Gebruik voor het schoonmaken van allerhande ander spul de [[ultrasoonreiniger]] of een doekje. ==Status== Is it fully operational or are there any issues with it? ==Accessories== Which accessories does it have? ==Manuals== Which manuals does it have? Link to the manual if available. ==Safety documentation== Which safety documentation does it have? =Which safety precautions should I take?= ==Risk Inventory & Evaluation== Which Risk Inventory & Evaluation actions have been taken or are still pending? ==Safety Sheet== Include reference to [[Safety Sheet]] and key safety points below. ==Mandatory Instruction== Which instructions are mandatory? ==Mandatory Personal Protective Equipment== Which personal protective equipment is mandatory? ==Key Safety Points== Repeat the key risks and how to mitigate them How to avoid common hazards Practical safety checks to perform =How should I use it?= ==Preparation== What should I do before I start my job? ==Usage== How should I use it to perform my job? ==Known Issues & Surprises== What are the known issues, quirks, or surprises users should be aware of? ==Cleaning up== What should I do after I finished my job? ==Power Off Instructions== How should the machine be properly powered down? =Out of Order Procedures= What should be done when the machine needs to be taken out of service? How should it be marked as out of order? =How should I maintain it= ==Regular Maintenance== What maintenance should be done on a regular basis? ==Installation & Technical Details== Document any non-trivial installation details, wiring, setup configurations, etc. =Supply Management= ==Consumable Supplies== Which supplies need regular replacement? Where can these supplies be obtained? Who is responsible for ordering/replacing them? =What should I do when...?= ==When I find it in use== ==When I find it dirty== ==When something is broken== ==When parts are missing== ==When supplies have run out== ==When it is time for regular maintenance== =Who is involved in...= ==Ownership== ==Maintenance== ==Materials== ==Instructions== ==Maintaining this Wiki page== =Maintenance Log= ''Note: Consider keeping a separate 'setup' or 'build' page during machine installation to document the project of getting the machine up and running. Parts of this documentation can later be used as the basis for the maintenance section.''

MQTT Unified Namespace

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· MarkKlaauw

← Oudere versie Versie van 4 jul 2026 20:49 (13 tussenliggende versies door dezelfde gebruiker niet weergegeven) Regel 1: Regel 1: [[Category:Servers network & websites]] == MQTT Unified Namespace == At the Makerspace, MQTT is used to exchange data between the different systems in the space, ESP32 nodes on machines, Node-RED, Home Assistant, and the intranet/CRM. Any of these can publish to it, and any of them can subscribe. This page describes one particular topic structure used on that broker: the Unified Namespace. Topics here all start with <code>msl/olga/</code>. Other topic structures may exist on the broker alongside this one. For more on MQTT in general, and how to connect to the broker, see the [[MQTT|MQTT page]]. The Unified Namespace approach comes from industrial automation, where large factories faced the same underlying problem: many MQTT topics, no shared structure, and no easy way to find anything. This was addressed in the ISA-95 guidelines, which describe a hierarchy with six levels: Enterprise β†’ Site β†’ Area β†’ Line β†’ Cell β†’ Equipment In a factory, this might look like: ''acme-corp β†’ factory-haarlem β†’ assembly-hall β†’ line-3 β†’ station-7 β†’ welding-robot''. From the topic name alone, you can tell exactly where a piece of data comes from. For the makerspace, this maps onto: msl/olga/... <code>msl</code> stands for Makerspace Leiden, and <code>olga</code> for the Olga business complex, the building we're in. Below that, the hierarchy follows the physical layout of the space: first the area, then a category (machines, doors, lights, environment), then the specific thing. Most topics fit this model well. Some don't, the IT monitoring topics, for example, aren't tied to any physical area, so they're placed under a functional domain instead (<code>msl/olga/it/</code>). For the makerspace that maps onto: msl/olga/... <code>msl</code> for makerspace Leiden, <code>olga</code> for the Olga building. Below that, the hierarchy follows the physical layout of the space: area, then a category (machines, doors, lights, environment), then the specific machine or object. Most topics fit this model well. Some don't, the IT monitoring topics, for example, don't really belong to any physical area, so they live under a functional domain (<code>msl/olga/it/</code>) instead. == Guidelines for publishing == To keep the namespace easy to use, if you publish new topics to the unified namespace, you can follow the following guidelines. Some of these guidelines come from general MQTT practice, others from the Unified Namespace conventions. ; Payloads : Use JSON for payloads, even for simple values β€” for instance <code>{"value": "on"}</code> instead of just <code>on</code>. This makes it easier to add fields later without breaking anything, and easier for applications to parse. ; Topic naming : For MQTT topic names, use lowercase letters, no capitals, with no spaces, underscores, or other special characters. To seperate words you can use dashes. ; Clearing old topics : If a topic moves or gets renamed, the broker will keep showing the old message if it was published with <code>retain=true</code>. To remove such an old remaining topic, publish a message to the topic, with an empty payload, again with <code>retain=true</code>. This clears the stale retained message from the broker. ; Retained messages : For almost all messages, we want new subscribers receive the message when subscribing to the broker, instead of having to wait for the next update. So, publish with <code>retain=true</code> in almost all cases. The exception is short-lived events, like a check-in event: these are a moment in time rather than a persistent state, so use <code>retain=false</code> for them. ; Topic structure : Create new topics under the relevant area where possible. Under the area, use a category β€” like <code>machines</code> or <code>doors</code> β€” to specify further. This makes topics easy to find, and easy to subscribe to in bulk later: for example, using the single-level wildcard <code>+</code> to get the status of every machine in every area at once, <code>msl/olga/+/machines/+/status</code>. ; MQTT publisher : Since multiple applications publish into the Unified Namespace, it helps to include an <code>mqtt_publisher</code> field in the payload, naming the system the message came from. Handy when you need to troubleshoot later, and you're trying to trace where the meassage originated from: : <code>{"value": "on", "mqtt_publisher": "intranet-crm"}</code> ; Timestamp : Adding a <code>timestamp</code> field, set to the time the message was published, makes it easy to see how recent a message is β€” useful for telling a fresh retained value apart from a stale one. For timestamps, use local time whenever possible, to avoid confusing people who have less experience with universal time and aren't used to converting it to local time. : <code>{"value": "on", "mqtt_publisher": "intranet-crm", "timestamp": "2026-06-23T20:36:08"}</code> == Topic hierarchy example: circular table saw == Below is an example of a topic tree for one machine. Think of the topic hierarchy like a folder structure: each line is a place where a message gets published. So <code>status</code> is where you'd look to find out if the machine is on or off. msl/olga/wood-workshop/machines/circular-table-saw/ β”œβ”€β”€ info β”œβ”€β”€ status β”œβ”€β”€ user-is-logged-in β”œβ”€β”€ out-of-order β”œβ”€β”€ telemetry/ β”‚ β”œβ”€β”€ runtime-total-seconds β”‚ β”œβ”€β”€ runtime-today-seconds β”‚ β”œβ”€β”€ last-start-time β”‚ β”œβ”€β”€ last-stop-time β”‚ β”œβ”€β”€ last-activated-time β”‚ └── last-activated-by β”œβ”€β”€ maintenance/ β”‚ └── servicelog └── nodes/ └── tablesaw/ β”œβ”€β”€ mac-address β”œβ”€β”€ ip-address β”œβ”€β”€ hostname β”œβ”€β”€ poe β”œβ”€β”€ last-seen β”œβ”€β”€ connected-to-mqtt β”œβ”€β”€ last-reboot β”œβ”€β”€ status β”œβ”€β”€ telemetry └── raw-mqtt

Afzuig-systeem

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· LucasV

← Oudere versie Versie van 4 jul 2026 10:01 Regel 1: Regel 1: [[Categorie:The building & furniture]][[Categorie:Historic Projects ]] [[Categorie:The building & furniture]][[Categorie:Historic projects ]] Dit betreft de ventilator /afzuiging die boven de deur tussen grote en kleine ruimte hangt / hing in de Volmolengracht-locatie en die eerder in bovenruimte van de Volmolengracht in gebruik was. Mogelijk wordt deze in de Olga hergebruikt? Dit betreft de ventilator /afzuiging die boven de deur tussen grote en kleine ruimte hangt / hing in de Volmolengracht-locatie en die eerder in bovenruimte van de Volmolengracht in gebruik was. Mogelijk wordt deze in de Olga hergebruikt? {{NeedsWorkOlga|Is deze nog in gebruik?}} {{NeedsWorkOlga|Is deze nog in gebruik?}}

File:Its-g5.png

πŸ‡³πŸ‡± Β· Revelation space Β· Bertrik Sikken

Bertrik Sikken uploaded a new version of File:Its-g5.png New page

Projects/Dungeons and Dragons

πŸ‡³πŸ‡± Β· Bitlair Β· INJMVO

Todo list: add guild ← Oudere versie Versie van 4 jul 2026 04:34 Regel 19: Regel 19: == Todo list== == Todo list== * [[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" tavern 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) : * [[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" tavern of guild hall heb je hier geen questboard maar moet je het hebben van je medegevangenen "This place is not a place of honor" : "This place is not a place of honor" No highly esteemed deed is commemorated here. Nothing of value is here No highly esteemed deed is commemorated 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! (vergeet een loopje langs de bewakers naar de wapenkamer niet, rumor has it dat de ThievesGuild has hidden a strongbox somewhere) * [[ 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

Kitchen

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· LucasV

Intro ← Oudere versie Versie van 4 jul 2026 20:53 Regel 3: Regel 3: ==Intro== ==Intro== We have a kitchen at [[Olga]]. It is located in the [[MakerKeet]]. De keuken bied uiteraard koffie en thee, maar er is ook de mogelijkheid een lichte maaltijd te Maken: Er is een fornuis, een oven, een magnetron en een vaatwasser, alsmede een koffie-apparaat, koelkasten en vriezer. We have a kitchen at [[Olga]]. It is located in the [[MakerKeet]]. De keuken bied uiteraard koffie en thee, maar er is ook de mogelijkheid een lichte maaltijd te Maken: Er is een fornuis, een oven, een magnetron en een [[ vaatwasser ]] , alsmede een koffie-apparaat, koelkasten en vriezer. The kitchen contains: The kitchen contains: Regel 10: Regel 10: * Microwave * Microwave * Hotplate (induction stove, not a soldering hotplate) * Hotplate (induction stove, not a soldering hotplate) * Dishwasher machine * [[vaatwasser| Dishwasher machine ]] * Coffee machine * Coffee machine * Kettle * Kettle

Gebruiker:LucasV

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· LucasV

Intranet notes ← Oudere versie Versie van 4 jul 2026 15:54 (4 tussenliggende versies door dezelfde gebruiker niet weergegeven) Regel 14: Regel 14: Nieuwe versie gebruikt het crm: [[https://code.makerspaceleiden.nl/msl/intranet]], en de firmware in de nodes staat (nog?) [[https://github.com/MakerSpaceLeiden/AccesSystem/tree/test_v111/lib-arduino|hier]] (Bij de oude versie dus). Nieuwe versie gebruikt het crm: [[https://code.makerspaceleiden.nl/msl/intranet]], en de firmware in de nodes staat (nog?) [[https://github.com/MakerSpaceLeiden/AccesSystem/tree/test_v111/lib-arduino|hier]] (Bij de oude versie dus). = Intranet notes = Om de test-omgeving van het intranet te installeren op Mint liep ik tegen een aantal issues aan: # UV zit niet in mint of in enige repository, en de standaard instalatiemethode bestaat uit het downloaden en uitvoeren van een shellscript - dat voelt erg onveilig en ga ik niet doen # Hoewel de readme.md UV als enige dependency vermeld, is ook mysqlclient nodig (En git), (en mosquitto, en mosquitto_client, maar die had ik al. Of waren die alleen voor de 'oude' ACL nodig?) (En Mogelijk ook python3-dev etc.) ==Testje van lokatiesjabloonding = = Ik heb het nu draaiend, vermoedelijk op de volgende manier (Ik heb notities bijgehouden die uitgebreider zijn dan onderstaande, ik hoop in onderstaande dubbele of onnodige stappen te hebben verwijderd.): * git clone https://code.makerspaceleiden.nl/msl/intranet.git ** Dat haalt de 'intranet' software binnen. Als je nog geen git hebt, dan eerst "apt install git", maar ik had al git * python3 -m venv .syspyvenv ** dat maakt een virtual environment aan, met de in python3 ingebakken methode. Mint komt met Python3, dus dit moet gewoon werken * source .syspyvenv/bin/activate ** Dat activeert het virtual environment. In een Virtual Environment laat UV zich namelijk we installeren, en met UV kan dan weer het vitrual environment gemaakt worden dat de MakerSpace Intranet Software nodig heeft. Als het goed is zie je nu (.syspyenv) voor je prompt. * (.syspyvenv) user@networkname:~/intranet$ pip install uv ** Dat installeert uv in het virtual environment syspyenv * cp example.env .env ** Uit readme.md overgenomen * ./loaddemo.sh ** Dit werkt nog niet, maar maakt wel een nieuw Virtual Environment aan: .venv <pre> Using uv warning: `VIRTUAL_ENV = .syspyvenv` does not match the project environment path `.venv` and will be ignored; use `--active` to target the active environment instead Using CPython 3.13.14 Creating virtual environment at: .venv Γ— Failed to build `mysqlclient==2.2.7` β”œβ”€β–Ά The build backend returned an error ... meer uitvoer, weggeknipt... </pre> * deactivate ** Nu zitten we weer in het echte systeem en niet in een venv. Nu we er toch zijn, gelijk mysql installeren dat in een latere stap nodig is: * apt install mysql-client-core-8.0 gcc libmysqlclient-dev python3-dev * source .venv/bin.activate ** Dat activeert het virtual environment dat loaddemo.sh heeft gemaakt. Dat heeft nog geen uv, dus * (makerspaceleiden-crm) pip install uv ** Dat geeft een foutmelding over external managed environment met uitleg * (makerspaceleiden-crm) pip install uv --break-system-packages ** Dat werkt, maar uv -- version geeft nog geen uitvoer. Na een deactivate en een activate weer wel. Maar eerst moet op dezelfde manier ook nog mysql geinstalleerd worden: * pip3 install mysqlclient --break-system-packages ** Dat zou nu moeten lukken (het lukt niet als mysql niet geinstalleerd is buiten het venv) * deactivate * source .venv/bin/activate ** Het venv is nu gedeactiveert en geheractiveerd * ./loaddemo.sh ** Dat gaat een hele hoop uitvoer geven, en af en toe even hangen op "WARNING -- no local configs. You propably want to copy makerspaceleiden/debug.py to local.py & tweak it !!" , maar als het goed is komt het uiteindelijk uit bij: <pre> System check identified no issues (0 silenced). July 04, 2026 - 17:05:54 Django version 4.2.23, using settings 'makerspaceleiden.settings' Starting ASGI/Daphne version 4.2.1 development server at http://127.0.0.1:8000/ Quit the server with CONTROL-C. </pre> * Ga in een webbrowser naar http://localhost:8000/ - je zou het CRM moeten zien. Maar dan de test-omgeving dus. '''Whoa!''' Als ik nu test buiten het venv, is uv beschikbaar op mijn systeem: uv --version in een terminal geeft antwoord! de --break-system-packages heeft het dus daadwerkelijk in mijn systeem-python geinstalleerd en niet alleen in de venv! Dat was niet de bedoeling (al verwacht ik er niet direct problemen mee, als apt install uv gewerkt had, had ik dat gedaan). =Testje van lokatiesjabloonding= <br><br> <br><br> {{Where}} {{Where}}

Stofzuigers

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· LucasV

← Oudere versie Versie van 4 jul 2026 09:58 Regel 109: Regel 109: ** '''Uitblaasfilter''': H12 of H13 - het H12 filter is NIET wasbaar, het H13 filter wel. [[https://www.destofzuigerzak.nl/stofzuigerzakken/aeg/apf6111/efs1w-efh13w-fc8038:aeg-apf6111-hepafilter-h13-origineel H13 filter bij 'destofzuigerzak.nl']], [[https://fixpart.nl/product/stofzuigerfilter-voor-stofzuiger-van-aeg-electrolux-philips-en-meer-altpart-9001677682?apl=2014185 huismerk H13 bij fixpart]] ** '''Uitblaasfilter''': H12 of H13 - het H12 filter is NIET wasbaar, het H13 filter wel. [[https://www.destofzuigerzak.nl/stofzuigerzakken/aeg/apf6111/efs1w-efh13w-fc8038:aeg-apf6111-hepafilter-h13-origineel H13 filter bij 'destofzuigerzak.nl']], [[https://fixpart.nl/product/stofzuigerfilter-voor-stofzuiger-van-aeg-electrolux-philips-en-meer-altpart-9001677682?apl=2014185 huismerk H13 bij fixpart]] ** '''Uitblaas-absorbtiefilter''': artikelnummer 140017215025, bijvoorbeeld [[https://www.destofzuigerzak.nl/stofzuigerzakken/aeg/apf6111/140017215025:aeg-apf6111-absorbeerfilter-origineel "destofzuigerzak.nl"]] of [[https://fixpart.nl/product/electrolux-aeg-1-4001-72-15-02-5-spons-stofzuiger?apl=2014185 fixpart]] - wasbaar. ** '''Uitblaas-absorbtiefilter''': artikelnummer 140017215025, bijvoorbeeld [[https://www.destofzuigerzak.nl/stofzuigerzakken/aeg/apf6111/140017215025:aeg-apf6111-absorbeerfilter-origineel "destofzuigerzak.nl"]] of [[https://fixpart.nl/product/electrolux-aeg-1-4001-72-15-02-5-spons-stofzuiger?apl=2014185 fixpart]] - wasbaar. * [[:Bestand:Stofzuiger_voet_AEG_powerfix.jpg|Voet]] vervangen 07-2026. (De oude was defect/wieltjes er af en borstels versleten. Misschien is er iets te 3dprinten om de nieuwe aan de slede te kunnen haken zoals de oude dat kon?) De zuigkracht is regelbaar. Houd deze stofzuiger voor de vloeren in MakerKeet/MakerHeaven/Catwalk, de zak is vrij klein. Gebruik in plaats van deze de grote Nilfisk Attix voor afzuiging bij een machine. De zuigkracht is regelbaar. Houd deze stofzuiger voor de vloeren in MakerKeet/MakerHeaven/Catwalk, de zak is vrij klein. Gebruik in plaats van deze de grote Nilfisk Attix voor afzuiging bij een machine.

Overleg gebruiker:INJMVO

πŸ‡³πŸ‡± Β· Bitlair Β· INJMVO

Broken link ← Oudere versie Versie van 4 jul 2026 04:28 Regel 4: Regel 4: |name=[[Gebruiker:INJMVO|INJ]] |name=[[Gebruiker:INJMVO|INJ]] |locatie=NL |locatie=NL |URL=https://www.dndbeyond.com/characters /166356853/builder/equipment/manage |URL=https://www.dndbeyond.com/characters |motto=''' "I'll Patch It!"''' |motto=''' "I'll Patch It!"''' }} }}

Ultimaker 2 Klipper 3D Printer

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· LucasV

printen ← Oudere versie Versie van 4 jul 2026 20:51 (Een tussenliggende versie door dezelfde gebruiker niet weergegeven) Regel 1: Regel 1: [[Category:Tools]][[Category:3D printing tools]][[Category:CNC machines]] [[Category:Tools]][[Category:3D printing tools]][[Category:CNC machines]] {{NeedsWorkOlga}} {{NeedsWorkOlga |Work in Progress }} Deze pagina wordt de Gebruikshandleiding van de Ultimaker 2+ met Klipper. De Ultimaker 3+ is nog origineel en heeft zijn eigen pagina:[[Ultimaker_3_3D_Printer]]. Deze pagina wordt de Gebruikshandleiding van de Ultimaker 2+ met Klipper. De Ultimaker 3+ is nog origineel en heeft zijn eigen pagina:[[Ultimaker_3_3D_Printer]]. If you want to print overnight use the [[Ultimaker_3_3D_Printer|unmodified ultimaker]] or wait untill [[Klipper_op_Ultimaker_Project|this project]] is finished and it is decided wheter or not printing unatended is allowed. If you want to print overnight use the [[Ultimaker_3_3D_Printer|unmodified ultimaker]] or wait untill [[Klipper_op_Ultimaker_Project|this project]] is finished and it is decided wheter or not printing unatended is allowed. = Printen met klipper op de Ultimaker = Gelijkaardig aan hoe het met andere 3d printers werkt: Er is een ontwerp, en dat wordt gesliced. Daarna is het gcode, en die moet naar de printer. Bij gebruik van klipper zijn er een paar aandachtspunten: # Zet in de slicer alle slimmigheden uit: Geen pressure advance / lineair advance. Geen 'autospeed', geen 'constant velocity', geen 'constant extruder pressure'. De snelheid mag vrij hoog (100 a 120 mm/s, waar de exacte grens zit is TBD), zowel voor perimeters als infill. Alleen de eerste laag kun je het beste nog op een langzamer tempo doen, tbv de hechting aan het bed (20 a 30 mm/s). ** Een configuratie voor PrusaSlicer tbv de Ultimaker 2+ extended van de makerspace kun je [PrusaSlicerConfigU2pe|hier] downloaden (TODO:die file maken en daar neerzetten). # In plaats van dat de gcode via USB naar de printer wordt gestuurd, of via een SD kaart, wordt de Gcode naar de printer ge-upload via de webbrowser. # In de printer zit een raspberry pi, die moet netjes worden afgesloten voordat je de printer uit zet (Het SD-kaartje is NIET readonly - want je upload er gcode naartoe). <!-- Ja, je zou er een aparte partitie voor op een usb stick kunnen maken, los van het OS... Is niet hoe het standaard in elkaar zit --> == Filament laden / veranderen == TODO: Hiervoor kunnen wat handige macro's in mainsail, zodat er gewoon een knop voor is die de kop warmmaakt en het oude filament terugspoelt, en een andere knop om het nieuwe spul in te laden, eventueel meerdere knoppen voor meerdere stappen. Voorlopig gaat het met de hand. == Printbed voorbereiden == Als de glasplaat erg vuil is kan deze onder de kraan worden afgespoeld, waarna een vers laagje prittstift wordt aangebracht. Dit is hetzelfde als bij een niet-gemodificeerde ultimaker en andere printers met een glazen bed. Maar [[Ultimaker_3_3D_Printer|aldaar]] is het ook slechts sumier omschreven... == Printen == Zorg dat je op het netwerk van de MakerSpace zit, en de printer aan staat. Het kan even duren voor de printer is opgestart. Ga naar msl-mainsail1.local in een webbrowser. Je ziet dan de MainSail interface. Hier kun je de gcode uploaden en printen. Ook is het mogelijk de printer te bedienen (fan aan, temperaturen instellen, assen homen en bewegen, commando's sturen als tekst, etc.). <!--Het is zelfs mogelijk het configuratiebestand aan te passen, maar doe dat alleen in overleg (Vraag het even op de mailinglijst van tevoren). --> In principe heb je in de slicer al ingesteld welk filament je gebruikt en dus welke temperatuur kop en bed moeten hebben, stel deze anders in voordat je je gcode print. ''Hier kunnen wat screenshots van waar te klikken, maar eigenlijk zou Mainsail voor zich moeten spreken''

Node Compressor

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· LucasV

← Oudere versie Versie van 4 jul 2026 10:01 Regel 1: Regel 1: [[Category:Nodes & network devices]][[Categorie: Historic Projects ]] [[Category:Nodes & network devices]][[Categorie: Historic projects ]] [[Bestand:Compressor-mounted.jpg|miniatuur|Compressor node/verklikker]] [[Bestand:Compressor-mounted.jpg|miniatuur|Compressor node/verklikker]] [[Bestand:Compressor-outside.jpg|miniatuur|Compressor node/verklikker]] [[Bestand:Compressor-outside.jpg|miniatuur|Compressor node/verklikker]]

Bestand:Stofzuiger voet AEG powerfix.jpg

πŸ‡³πŸ‡± Β· MakerSpaceLeiden Β· LucasV

LucasV heeft Bestand:Stofzuiger voet AEG powerfix.jpg geΓΌpload Vervangen 07-2026 Nieuwe pagina == Beschrijving == Vervangen 07-2026