This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| include <BOSL2/std.scad> | |
| include <BOSL2/walls.scad> | |
| /* [Panel settings] */ | |
| // panel width: 254 = 10 inch | |
| panel_width=254; | |
| // panel height: 44.5: 1U, 89: 2U | |
| panel_height=44.5; | |
| // panel thickness: 3 (shelf thickness in "Misc") | |
| panel_thick=3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [include mainsail.cfg] | |
| [mcu] | |
| serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0 | |
| restart_method: command | |
| [virtual_sdcard] | |
| path: /home/ado/printer_data/gcodes | |
| [stepper_x] | |
| step_pin: PE5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // is 'then()' awaitable? | |
| // YES! this is proof of concept. | |
| // | |
| (async () => { | |
| console.log('start') | |
| function timeoutFunc() { | |
| console.log('timeout') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @interface ViewController : UIViewController <MKMapViewDelegate> { | |
| IBOutlet MKMapView *mapView; | |
| } | |
| @property (nonatomic, retain) MKTileOverlay *tile_overlay; | |
| @end |