Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
An improved version of [nw-atom](https://github.com/M4xi1m3/nw-atom), but escher compliant.

This is a Mendeleiev table for Epsilon ([numworks'](https://numworks.com) firmware). This is a WIP, and not official :p

Corrections of typos within original atomic app (https://github.com/M4xi1m3/nw-atom).
Exceptions in the d-block and f-block have been added.
8 changes: 5 additions & 3 deletions list_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,20 +313,22 @@ const ListController::Electronical::rowsSubLayers ListController::Electronical::
{ true, 7, true, 5, true, 6, true, 7 }, // 6s² 4f¹⁴ 5d¹⁰ 6p⁶
};

const ListController::Electronical::exceptionStruct ListController::Electronical::exceptions[18] = {
const ListController::Electronical::exceptionStruct ListController::Electronical::exceptions[20] = {
{ 24, true, 1, false, -1, true, 5, false, -1},
{ 29, true, 1, false, -1, true, 10, false, -1},

{ 41, true, 1, false, -1, true, 4, false, -1},
{ 42, true, 1, false, -1, true, 5, false, -1},
{ 44, true, 1, false, -1, true, 7, false, -1},
{ 45, true, 1, false, -1, true, 8, false, -1},
{ 46, false, -1, false, -1, false, -1, false, -1},
{ 46, false, -1, false, -1, true, 10, false, -1},
{ 47, true, 1, false, -1, true, 10, false, -1},

{ 57, true, 2, false, -1, true, 1, false, -1},
{ 58, true, 2, true, 1, true, 1, false, -1},
{ 78, true, 1, true, 14, true, 19, false, -1},
{ 64, true, 2, true, 7, true, 1, false, -1},
{ 78, true, 1, true, 14, true, 9, false, -1},
{ 79, true, 1, true, 14, true, 10, false, -1},

{ 89, true, 2, false, -1, true, 1, false, -1},
{ 90, true, 2, false, -1, true, 2, false, -1},
Expand Down
2 changes: 1 addition & 1 deletion list_controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class ListController : public StackViewController, public ListViewDataSource, pu
int pContent;
};
const static rowsSubLayers rows[];
const static exceptionStruct exceptions[18];
const static exceptionStruct exceptions[20];

};

Expand Down