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
# This file contains common pin mappings for MKS Robin Nano (v1.2.004) | |
# boards. To use this config, the firmware should be compiled for the | |
# STM32F103. When running "make menuconfig", enable "extra low-level | |
# configuration setup", select the 28KiB bootloader, disable "USB for | |
# communication", and select USART3 for the "Serial Port". | |
# Note that the "make flash" command does not work with MKS Robin | |
# boards. After running "make", run the following command: | |
# ./scripts/update_mks_robin.py out/klipper.bin out/Robin_nano.bin | |
# Copy the file out/Robin_nano.bin to an SD card and then restart the |
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
# -*- coding: utf-8 -*- | |
""" | |
Created on 2019-10-17 20:09:09 | |
@Author: ZHAO Lingfeng | |
@Version : 0.0.1 | |
""" | |
import random | |
from faker import Faker | |
# pylint: disable=maybe-no-member |
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
# -*- coding: utf-8 -*- | |
""" | |
Created on Fri Jun 30 13:59:19 2017 | |
@author: 凌丰 | |
""" | |
import sys | |
import os | |
from urllib.parse import unquote, quote |