Skip to content

Instantly share code, notes, and snippets.

@jgroman
jgroman / Configuration.h
Created April 21, 2021 17:14
Marlin SKR Mini E3 V2.0 config (BTTouch, BTT Relay V1.2)
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
@jgroman
jgroman / gist:8c2cd5b60be8f519c2cdf3e97af89e28
Created June 6, 2017 08:41
Flutter: Load shared_preferences before main app
void main() {
runApp(new LoadingScreen());
await asynStuff();
runApp(new App());
}