{"id":24613005,"url":"https://github.com/insoft-uk/prizmsdk","last_synced_at":"2026-05-20T03:11:52.746Z","repository":{"id":273419806,"uuid":"918839774","full_name":"Insoft-UK/PrizmSDK","owner":"Insoft-UK","description":"The PrizmSDK for developing Add-Ins for the Casio FX-CG (Prizm) color graphing calculator. It provides an Xcode project along with sample examples to facilitate the beginning of development. One can test their Add-Ins on macOS to a certain extent before deploying them to an actual FX-CG (Prizm) color graphing calculator.","archived":false,"fork":false,"pushed_at":"2025-03-11T19:57:50.000Z","size":341012,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T20:35:13.301Z","etag":null,"topics":["calculator","casio","casio-fx-cg50","casio-prizm","fxcg","graphical-calculator","libfxcg","mkg3a","prizm","sdk"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Insoft-UK.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-19T01:47:05.000Z","updated_at":"2025-03-11T19:57:54.000Z","dependencies_parsed_at":"2025-02-14T22:19:03.313Z","dependency_job_id":"b7b0ed69-f0e6-4821-92bc-4c0e63d1e775","html_url":"https://github.com/Insoft-UK/PrizmSDK","commit_stats":null,"previous_names":["insoft-uk/prizmsdk"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Insoft-UK%2FPrizmSDK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Insoft-UK%2FPrizmSDK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Insoft-UK%2FPrizmSDK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Insoft-UK%2FPrizmSDK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Insoft-UK","download_url":"https://codeload.github.com/Insoft-UK/PrizmSDK/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244265961,"owners_count":20425822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["calculator","casio","casio-fx-cg50","casio-prizm","fxcg","graphical-calculator","libfxcg","mkg3a","prizm","sdk"],"created_at":"2025-01-24T20:39:24.555Z","updated_at":"2026-05-20T03:11:52.691Z","avatar_url":"https://github.com/Insoft-UK.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"img/SDK.png\" width=\"256\" height=\"256\"\u003e\u003cimg src=\"img/Casio_logo.svg\" width=\"256\" height=\"256\"\u003e\n\n# Getting started on macOS\n\nThis document will walk you through the process of setting up the \u003ca href=\"https://github.com/Jonimoose/libfxcg\"\u003ePrizmSDK\u003c/a\u003e and building your first add-in on macOS.\n\n## Download PrizmSDK\n\nDownload an PrizmSDK binary for Intel or AppleSilicon from the [releases page](https://github.com//Insoft-UK/libfxcg/releases/) and unpack to your Applications/CASIO folder.\n\n![Extracted SDK package](img/sdk-dir.png)\n\nMake sure macOS knows the path of the PrizmSDK.\n```\nexport FXCGSDK=/Applications/CASIO/PrizmSDK\ngrep -qxF 'export PATH=/Applications/CASIO/PrizmSDK:/Applications/CASIO/PrizmSDK/bin:/Applications/CASIO/PrizmSDK/sh3eb-elf/bin:$PATH' ~/.zshrc || echo 'export PATH=/Applications/CASIO/PrizmSDK:/Applications/CASIO/PrizmSDK/bin:/Applications/CASIO/PrizmSDK/sh3eb-elf/bin:$PATH' \u003e\u003e ~/.zshrc\ngrep -qxF 'export FXCGSDK=/Applications/CASIO/PrizmSDK' ~/.zshrc || echo 'export FXCGSDK=/Applications/CASIO/PrizmSDK' \u003e\u003e ~/.zshrc\nsource ~/.zshrc\n```\n\n\u003e[!NOTE]\nIf using the **pre-binary** file, you may require `libpng gmp mpfr libmpc isl imagemagick` are installed.\n`brew install libpng gmp mpfr libmpc isl imagemagick`\nThe installer package is for AppleSilicon only.\n\n## Example Project\n\nDownload the Prizm folder from the GitHub Repositories [Prizm](https://github.com/Insoft-UK/PrizmSDK/tree/main/Prizm) and copy to your ~/Documents folder.\nNavigate to `Prizm/Projects`, then `Template`. This directory contains an Xcode project example project to get you started with and looks like this:\n\n![Example Xcode project](img/Xcode.png)\n\nThe `Icon~sel.bmp` and `Icon~uns.bmp` images are built into the compiled add-in and are the icons shown in the calculator's menus for the add-in when it is selected with the cursor and unselected, respectively.\n\n`Makefile` is a plain-text file that includes instructions that tell the system how to compile the add-in. You can edit this with any text editor of your choice, but in most cases don't need to (and probably shouldn't unless you know what you're doing). If you're just getting started, it's safe to ignore this file. Similarly, `make` allows you to run a single command and compile the add-in and you shouldn't need to touch it.\n\n## Compile the Example project\n\nTo compile the Example project, simply run `make.sh` in the project directory\nusing the Terminal.\n\n![Example project directory layout](img/open-terminal.png)\n\nThe `Example.g3a` file is ready to send to your calculator for running now.\n\n![Example project directory layout](img/result.png)\n\n## Making changes and rebuilding\n\nEvery time you run `make` as above, the system will rebuild the g3a file if there have been any changes to the sources. It's possible that won't always work as you expect, so you can also run `.\\make clean` to erase the output files from the compilation process and ensure you're building a totally fresh version.\n\nUsing the provided **make** script in the Example folder will automatically clean up after building the 3ga file, streamlining the development process.\n\n## Making your own project\n\nNow that you know how to build an add-in, it's time to write your own program. Make a copy of the `Example` project and call it something else (probably a name related to what your project is), then you can write your own code however you like.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finsoft-uk%2Fprizmsdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finsoft-uk%2Fprizmsdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finsoft-uk%2Fprizmsdk/lists"}