2020-01-14 20:27:56 +01:00
2020-01-07 16:32:33 +01:00
2020-01-14 20:26:50 +01:00
2020-01-14 20:27:56 +01:00
2019-10-15 09:45:21 +02:00
2019-12-24 17:33:32 +01:00
2019-12-30 22:02:01 +01:00
2019-12-24 01:07:22 +01:00
2020-01-14 20:26:50 +01:00
2019-12-19 00:31:23 +01:00
2019-10-16 10:01:00 +02:00
2018-11-26 13:46:27 +01:00
2019-12-28 00:51:18 +01:00
2019-12-24 10:57:56 +01:00
2019-11-01 16:57:54 +01:00
2019-12-08 15:40:12 +01:00
2019-10-29 21:44:10 +01:00
2020-01-05 18:47:12 +01:00

cc by-nc-sa 4.0 Issues
Discord Pipeline

About

Omega is a fork of Numworks' Epsilon, the OS that runs on their calculator, which brings many features to it. Omega is for the people who want to add features to the calculator, but cannot because they have been rejected by Numworks (for reasons that are 100% understandable!).

Some new features

  • Adding symbolic calculation back into the calculator
  • An app for RPN
  • A periodic table app + all of the molar masses for the elements in the toolbox
  • More steps for brightness (16 instead of 5)
  • 32 KB Python heap instead of 16 KB
  • And more...

The main new features are listed here, and the complete changelog can be found here.

Installation

First of all, follow step 1 here. Then:

Model n0100
git clone --recursive https://github.com/Omega-Numworks/Omega.git
cd Omega
git checkout omega-master
make MODEL=n0100 clean
make MODEL=n0100 USERNAME="{Your name, max 15 characters}" -j4
make MODEL=n0100 epsilon_flash

Important: Don't forget the --recursive tag, because Omega relies on submodules. Also, you can change the number of processes that run in parallel during the build by changing the value of the -j flag.

Model n0110
git clone --recursive https://github.com/Omega-Numworks/Omega.git
cd Omega
git checkout omega-master
make clean
make USERNAME="{Your name, max 15 characters}" -j4
make epsilon_flash

Important: Don't forget the --recursive tag, because Omega relies on submodules. Also, you can change the number of processes that run in parallel during the build by changing the value of the -j flag.

Bin files

These can be used to distribute Omega (so that it can be flashed by anyone with Webdfu_Numworks).

git clone --recursive https://github.com/Omega-Numworks/Omega.git
cd Omega
git checkout omega-master
make clean
make MODEL=n0100 USERNAME="" -j8
make MODEL=n0100 USERNAME="" binpack -j8
make USERNAME="" -j8
make USERNAME="" binpack -j8

Important: Don't forget the --recursive tag, because Omega relies on submodules. Also, you can change the number of processes that run in parallel during the build by changing the value of the -j flag.

Web simulator

First, install emsdk :

git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install latest-fastcomp
./emsdk activate latest-fastcomp
source emsdk_env.sh

Then, compile Omega :

git clone --recursive https://github.com/Omega-Numworks/Omega.git
cd Omega
git checkout omega-master
make clean
make PLATFORM=simulator TARGET=web USERNAME="{Your name, max 15 characters}" -j4

The simulator is now in output/release/simulator/web/simulator.zip

Important: Don't forget the --recursive tag, because Omega relies on submodules. Also, you can change the number of processes that run in parallel during the build by changing the value of the -j flag.

Contributing

To contribute, please refer to the Wiki

Branches

  • omega-master : stable releases
  • omega-dev : beta releases
  • omega-hotfix : developers only, branch to fix issues

Omega License

NumWorks is a registered trademark. Omega is not affiliated with Numworks. Omega is released under a CC BY-NC-SA License.


NumWorks Epsilon logo

cc by-nc-sa 4.0 Issues

Epsilon is a high-performance graphing calculator operating system. It includes eight apps that cover the high school mathematics curriculum.

You can try Epsilon straight from your browser in the online simulator.

Diving in

We highly recommend you start by reading the online documentation for this project. You'll learn how to install the SDK and about the overall architecture of the Epsilon.

Contributing

If you run into an issue, we would be very happy if you would file a bug on the issue tracker.

We welcome contributions. For smaller changes just open a pull request straight away. For larger changes we recommend you open an issue first for discussion.

License

NumWorks is a registered trademark. Omega is not affiliated with Numworks. NumWorks Epsilon is released under a CC BY-NC-SA License.

Description
No description provided
Readme 44 MiB
Languages
C++ 60.3%
C 31.1%
Python 3.4%
Java 1.9%
Makefile 1.6%
Other 1.5%