-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Example | ||
|
||
## SAMFi-OS_OrangePi_zero | ||
|
||
Before you config the [SAMF-OS_OrangePi_zero](https://github.com/FYSETC/FYSETC-SAMFi-OS). You need an TF card with at least 8G capacity. | ||
|
||
### Step 1 | ||
|
||
Download and flash the OS image with `balenaEtcher` software to your TF card. Insert your flashed TF card to OrangePi-zero and connect Ethernet cable then power on. Find the ip address of OrangePi-zero on your router, host name is `orangepizero`. | ||
|
||
 | ||
|
||
### Step 2 | ||
|
||
You can find the firmware `klipper.bin` in `OrangePi-zero` folder after you download the github repository. It is also stay in the OS path `firmwares\spider.bin` after you login the OS with SSH. | ||
|
||
Original SSH account and password: | ||
|
||
``` | ||
account: fysetc | ||
password: fysetc123 | ||
``` | ||
|
||
Enter DFU mode(set a jumper on `3.3V` and `BT0` pin and re-power on the board ), and flash the firmware with the command below after you connect your OrangePi and Spider with USB cable. | ||
|
||
``` | ||
dfu-util -R -a 0 -s 0x08008000:leave -D firmwares/spider.bin | ||
``` | ||
|
||
or follow the instructions [here](https://github.com/FYSETC/FYSETC-SPIDER#44--firmware-upload) for firmware uploading. Remember to remove the `3.3v` `BT0` jumper and click the reset button after you flashed the firmware. | ||
|
||
 | ||
|
||
### Step 3: | ||
|
||
Prepare the `pinter.cfg`, using the command below | ||
|
||
``` | ||
cp klipper_config/spider.cfg klipper_config/printer.cfg | ||
``` | ||
|
||
You probably need to change `id` by `ls /dev/serial/by-id` command. | ||
|
||
I use the spider github voron2.4 config for this example, you need search this file for "SpiderVersion" and uncomment the appropriate line for each for different spider board version, and need to change it according to your machine. Now visit the webpage with your orangepi-zero IP address. Good to go. |