fix readme file for proper pypi displaying

This commit is contained in:
Nikolay Khabarov
2017-08-23 00:49:13 +03:00
parent 9f7052cf17
commit cf0b4d0a72
2 changed files with 38 additions and 39 deletions
+6 -7
View File
@@ -64,8 +64,8 @@ Raspberry Pi implementation should be connected to A4988, DRV8825 or any other
stepper motor drivers with DIR and STEP pin inputs. stepper motor drivers with DIR and STEP pin inputs.
Default config is created for Raspberry Pi 2-3 and this wiring config: Default config is created for Raspberry Pi 2-3 and this wiring config:
| Circuit | RPi pin | RAMPS pin | Note | | Circuit name | RPi pin name | RAMPSv1.4 board pin name | Note |
|-----------------|-------------|--------------------------|------------------| |-----------------|--------------|--------------------------|-----------------|
| X step | GPIO21 | A0 | | | X step | GPIO21 | A0 | |
| X dir | GPIO20 | A1 | | | X dir | GPIO20 | A1 | |
| steppers enable | GPIO26 | A2, A8, D24, D34, D38 | all steppers | | steppers enable | GPIO26 | A2, A8, D24, D34, D38 | all steppers |
@@ -101,11 +101,10 @@ So having Raspberry Pi connected this way, there is no need to configure
pin map for project. [RAMPS v1.4](http://reprap.org/wiki/RAMPS_1.4) board can pin map for project. [RAMPS v1.4](http://reprap.org/wiki/RAMPS_1.4) board can
be used for this purpose. Full reference circuit diagram and photos of be used for this purpose. Full reference circuit diagram and photos of
assembled controller(click to enlarge): assembled controller(click to enlarge):
[![circuit_small](https://user-images.githubusercontent.com/8740775/28233810-40773186-6902-11e7-8496-5750babfcf44.jpg)](https://user-images.githubusercontent.com/8740775/28233650-d64060e0-6900-11e7-8605-6475384fd2f7.png) [![circuit small](https://user-images.githubusercontent.com/8740775/28233810-40773186-6902-11e7-8496-5750babfcf44.jpg)](https://user-images.githubusercontent.com/8740775/28233650-d64060e0-6900-11e7-8605-6475384fd2f7.png)
[![sample_front_small](https://user-images.githubusercontent.com/8740775/28233812-407820c8-6902-11e7-8de1-35c03509c0e5.jpg)](https://user-images.githubusercontent.com/8740775/28233649-d6402800-6900-11e7-8dca-cd35c8292e0c.jpg) [![sample front small](https://user-images.githubusercontent.com/8740775/28233812-407820c8-6902-11e7-8de1-35c03509c0e5.jpg)](https://user-images.githubusercontent.com/8740775/28233649-d6402800-6900-11e7-8dca-cd35c8292e0c.jpg)
[![sample_back_small](https://user-images.githubusercontent.com/8740775/28233879-db96ea1c-6902-11e7-9298-11150476084b.jpg)](https://user-images.githubusercontent.com/8740775/28233648-d63fa0c4-6900-11e7-8fab-2055e035a6cb.jpg) [![sample back small](https://user-images.githubusercontent.com/8740775/28233879-db96ea1c-6902-11e7-9298-11150476084b.jpg)](https://user-images.githubusercontent.com/8740775/28233648-d63fa0c4-6900-11e7-8fab-2055e035a6cb.jpg)
[![sample_mounted_small](https://user-images.githubusercontent.com/8740775/28233811-40777e8e-6902-11e7-8899-5991860d182c.jpg)](https://user-images.githubusercontent.com/8740775/28233652-d65f82ea-6900-11e7-9e80-d8b0c9238f95.jpg) [![sample mounted small](https://user-images.githubusercontent.com/8740775/28233811-40777e8e-6902-11e7-8899-5991860d182c.jpg)](https://user-images.githubusercontent.com/8740775/28233652-d65f82ea-6900-11e7-9e80-d8b0c9238f95.jpg)
# Usage # Usage
Just clone this repo and run `./pycnc` from repo root. It will start in Just clone this repo and run `./pycnc` from repo root. It will start in
+1 -1
View File
@@ -9,7 +9,7 @@ except(IOError, ImportError):
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup( setup(
name="pycnc", name="pycnc",
version="1.0.0", version="1.1.0",
packages=find_packages(), packages=find_packages(),
scripts=['pycnc'], scripts=['pycnc'],