Compare commits

...

3 Commits

Author SHA1 Message Date
Ben Combee 9cb6a472b8
Merge 2d08f0a781 into 7b337c908d 2025-09-21 23:49:30 +02:00
Mr.Blinky 7b337c908d
Update README.md
fix links
2025-07-15 14:07:55 +02:00
Ben Combee 2d08f0a781
Typo fixes for basic-example.ino
Fixed spelling of Python and indentation of comment
2023-01-02 02:24:46 -06:00
2 changed files with 6 additions and 6 deletions

View File

@ -9,9 +9,9 @@ Arduino IDE board package for Arduboy and homemade versions with the following a
* Start Arduino IDE and press **CTRL + comma** to select properties. * Start Arduino IDE and press **CTRL + comma** to select properties.
* Copy and paste the URL below in **Additional Boards Manager URLs:** text box and click on **OK** * Copy and paste the URL below in **Additional Boards Manager URLs:** text box and click on **OK**
``` ```
https://raw.githubusercontent.com/MrBlinky/Arduboy-homemade-package/master/package_arduboy_homemade_index.json https://raw.githubusercontent.com/MrBlinky/Arduboy-homemade-package/main/package_arduboy_homemade_index.json
``` ```
![preferences](https://raw.githubusercontent.com/MrBlinky/Arduboy-homemade-package/master/images/preferences.png) ![preferences](https://raw.githubusercontent.com/MrBlinky/Arduboy-homemade-package/main/images/preferences.png)
After this: After this:
* Go to **Tools > Boards > Board manager** * Go to **Tools > Boards > Board manager**
* In the text box type **homemade** or **Arduboy homemade** * In the text box type **homemade** or **Arduboy homemade**
@ -19,7 +19,7 @@ After this:
You can now select **Arduboy, Arduboy DevKit** and **Homemade Arduboy boards** from the Tools menu. You can now select **Arduboy, Arduboy DevKit** and **Homemade Arduboy boards** from the Tools menu.
![menu](https://raw.githubusercontent.com/MrBlinky/Arduboy-homemade-package/master/images/menu.gif) ![menu](https://raw.githubusercontent.com/MrBlinky/Arduboy-homemade-package/main/images/menu.gif)
## Libraries ## Libraries
@ -86,7 +86,7 @@ Flash cart support (new design used by Arduboy FX) :
When using serial flash with the Pro Micro standard wiring, OLED_CS (chip select) cannot be grounded (always active). When using serial flash with the Pro Micro standard wiring, OLED_CS (chip select) cannot be grounded (always active).
In this case a simple circuit with a general purpose PNP transistor and two resistors or a single inverter chip like the 74LVC1G04 can be used to deactive OLED_CS while CART_CS is active. In this case a simple circuit with a general purpose PNP transistor and two resistors or a single inverter chip like the 74LVC1G04 can be used to deactive OLED_CS while CART_CS is active.
[schematic](https://github.com/MrBlinky/Arduboy-homemade-package/raw/master/images/transistor-cs-driver.png) [schematic](https://github.com/MrBlinky/Arduboy-homemade-package/raw/main/images/transistor-cs-driver.png)
(*****) (*****)
support for I2C displays has been added. When using an I2C display the SDA pin should be connected to pin 4 PORTD4 and the SCL pin to pin 6 PORTD7 unless you're using a Pro Micro with the alternate wiring scherme. In that case SCL pin should be connected to pin 1/TXO PORTD3. support for I2C displays has been added. When using an I2C display the SDA pin should be connected to pin 4 PORTD4 and the SCL pin to pin 6 PORTD7 unless you're using a Pro Micro with the alternate wiring scherme. In that case SCL pin should be connected to pin 1/TXO PORTD3.

View File

@ -5,14 +5,14 @@
* This is a basic example that shows how you can draw a image from FX external * This is a basic example that shows how you can draw a image from FX external
* flash memory. It will draw the Arduboy FX logo and move it around the screen. * flash memory. It will draw the Arduboy FX logo and move it around the screen.
* *
* Before this example sketch is uploaded and run on the Arduboy FX, make sure * Before this example sketch is uploaded and run on the Arduboy FX, make sure
* the fxdata this sketch has been build and uploaded to the Arduboy FX. * the fxdata this sketch has been build and uploaded to the Arduboy FX.
* *
* If the Arduboy FX Arduino plugin has been installed you can simply choose the * If the Arduboy FX Arduino plugin has been installed you can simply choose the
* 'Build and upload Arduboy FX data' from the Arduino IDE Tools menu. * 'Build and upload Arduboy FX data' from the Arduino IDE Tools menu.
* *
* Alternatively the fxdata.txt script file can be build using the fxdata-build.py * Alternatively the fxdata.txt script file can be build using the fxdata-build.py
* Phyton script and the fxdata.bin file can be uploaded using the uploader-gui.py, * Python script and the fxdata.bin file can be uploaded using the uploader-gui.py,
* fxdata-upload.py or flash-writer.py Python script using the -d switch. * fxdata-upload.py or flash-writer.py Python script using the -d switch.
* *
******************************************************************************/ ******************************************************************************/