Please follow all the following instructions exactly. If there is anything you don't understand then stop there and come back here and explain exactly what step you're on and what trouble you're having.
Since I don't know what you've been doing previously we're going to need to start from scratch. If there is anything you need to save in any of these folders back them up.
- Start the Arduino IDE
- Click the link at the line following File > Preferences > More preferences can be edited directly in the file. This will open the Arduino15 folder.
- Delete everything in the folder, including the subfolders.
- Delete the C:\Users\Willem\Documents\Arduino\hardware folder
Now to install the hardware package, modify the hardware package, and upload the firmware to your printer board:
- If you don't already have it installed, download and install Arduino IDE 1.8.5
- (in the Arduino IDE) File > Preferences > Additional Boards Manager URLs > https://raw.githubusercontent.com/Lauszus/Sanguino/master/package_lauszus_sanguino_index.json > OK
- Tools > Board > Boards Manager
- Wait for downloads to finish
- Click on "Arduino AVR Boards"
- From the dropdown menu select 1.6.11
- Click "Install"
- Wait for installation to finish
- Scroll down until you see "Sanguino by Kristian Sloth Lauszus" and click on it.
- Click "Install"
- Wait for installation to finish
- Click "Close"
- Click the link at the line following File > Preferences > More preferences can be edited directly in the file. This will open the Arduino15 folder.
- Navigate to the Arduino15\packages\Sanguino\hardware\avr\1.0.2 folder
- Open the file boards.txt in a text editor.
- Add the following to the file:
########################################
## Anet V1 (sanguino clone)
########################################
anet.name=Anet V1.0
anet.upload.tool=arduino:avrdude
anet.upload.protocol=arduino
anet.upload.maximum_size=131072
anet.upload.speed=57600
anet.bootloader.low_fuses=0xD6
anet.bootloader.high_fuses=0xDA
anet.bootloader.extended_fuses=0xFD
anet.bootloader.path=atmega
anet.bootloader.unlock_bits=0x3F
anet.bootloader.lock_bits=0x0F
anet.build.mcu=atmega1284p
anet.build.f_cpu=16000000L
anet.build.board=AVR_SANGUINO
anet.build.core=arduino:arduino
anet.build.variant=sanguino
###CHANGE ME###anet.bootloader.file=ATmegaBOOT_168_atmega1284p.hex
- Save the file
- Download https://github.com/pedromreis/Skynet3d/archive/master.zip
- Unzip the downloaded file.
- Restart the Arduino IDE
- If the Arduino IDE prompts you to update to the latest version of Arduino IDE, click "Cancel"
- File > Open
- Select the file SkyNet3D_V1.1alfa\SkyNet3D_V1.1alfa.ino from the place where you unzipped the downloaded file
- Plug the USB cable of your 3D printer board into your computer
- Tools > Board > ANet V1.0
- Tools > Port > select the COM port of your 3D printer board
- Sketch > Upload