[PR #364] [CLOSED] Upsilon numworks upsilon dev #381

Closed
opened 2026-05-06 13:17:06 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/UpsilonNumworks/Upsilon/pull/364
Author: @0x4c756e61
Created: 5/1/2024
Status: Closed

Base: upsilon-devHead: UpsilonNumworks-upsilon-dev


📝 Commits (10+)

  • cb32530 [MicroPythonPort/ION] Added set_led_color and set_dfu functions
  • 5a11bb0 [MicroPythonPort/ION] Added is_plugged function
  • 58d28d8 [MicroPythonPort/ION] Added screen_off / screen_on functions
  • 9232db2 [MicroPythonPort/ION] Added is_screen_on function / added translation helper script
  • 13b188e Updated readme
  • c0b88e6 [MicroPythonPort/ION] Added blink_led function / fixed translation helper script
  • 2b37165 Merge branch 'UpsilonNumworks:upsilon-dev' into upsilon-dev
  • 725d788 [MicroPythonPort] Added Escher module, implemented checks for led related functions
  • 9461b21 [MicroPythonPort] Added Escher module, implemented checks for led related functions
  • 4b8772f [MODescher] Added get_clipboard function

📊 Changes

23 files changed (+397 additions, -11 deletions)

View changed files

📝 README.fr.md (+28 -5)
📝 README.md (+15 -0)
📝 apps/code/catalog.de.i18n (+11 -0)
📝 apps/code/catalog.en.i18n (+11 -0)
📝 apps/code/catalog.es.i18n (+11 -0)
📝 apps/code/catalog.fr.i18n (+11 -0)
📝 apps/code/catalog.hu.i18n (+12 -0)
📝 apps/code/catalog.it.i18n (+12 -1)
📝 apps/code/catalog.nl.i18n (+11 -0)
📝 apps/code/catalog.pt.i18n (+11 -0)
📝 apps/code/catalog.universal.i18n (+13 -0)
📝 apps/code/python_toolbox.cpp (+19 -3)
📝 apps/code/toolbox.universal.i18n (+1 -0)
📝 python/Makefile (+2 -0)
📝 python/port/genhdr/moduledefs.h (+6 -0)
📝 python/port/genhdr/qstrdefs.in.h (+13 -0)
python/port/mod/escher/modescher.cpp (+25 -0)
python/port/mod/escher/modescher.h (+4 -0)
python/port/mod/escher/modescher_table.cpp (+34 -0)
📝 python/port/mod/ion/modion.cpp (+62 -1)

...and 3 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/UpsilonNumworks/Upsilon/pull/364 **Author:** [@0x4c756e61](https://github.com/0x4c756e61) **Created:** 5/1/2024 **Status:** ❌ Closed **Base:** `upsilon-dev` ← **Head:** `UpsilonNumworks-upsilon-dev` --- ### 📝 Commits (10+) - [`cb32530`](https://github.com/UpsilonNumworks/Upsilon/commit/cb325306e688061774cc285670173629963ae155) [MicroPythonPort/ION] Added set_led_color and set_dfu functions - [`5a11bb0`](https://github.com/UpsilonNumworks/Upsilon/commit/5a11bb060be5dcb68b758b7cc58d1da528f93353) [MicroPythonPort/ION] Added is_plugged function - [`58d28d8`](https://github.com/UpsilonNumworks/Upsilon/commit/58d28d8afb4787785186676efbc9539d090158a1) [MicroPythonPort/ION] Added screen_off / screen_on functions - [`9232db2`](https://github.com/UpsilonNumworks/Upsilon/commit/9232db2dd2baf90fdb08574519800a2efca594db) [MicroPythonPort/ION] Added is_screen_on function / added translation helper script - [`13b188e`](https://github.com/UpsilonNumworks/Upsilon/commit/13b188eb6951d35d11882caebf701c268051ef72) Updated readme - [`c0b88e6`](https://github.com/UpsilonNumworks/Upsilon/commit/c0b88e60b569d07a20b1b2fc496e01ff68e22e19) [MicroPythonPort/ION] Added blink_led function / fixed translation helper script - [`2b37165`](https://github.com/UpsilonNumworks/Upsilon/commit/2b371657f27f52e841b5e11728b04d25a6018238) Merge branch 'UpsilonNumworks:upsilon-dev' into upsilon-dev - [`725d788`](https://github.com/UpsilonNumworks/Upsilon/commit/725d788b23ad36a7c4750963ee5a51e0db158cb3) [MicroPythonPort] Added Escher module, implemented checks for led related functions - [`9461b21`](https://github.com/UpsilonNumworks/Upsilon/commit/9461b216faa1bbd462bd9c3a9a61b39e3cd07bcb) [MicroPythonPort] Added Escher module, implemented checks for led related functions - [`4b8772f`](https://github.com/UpsilonNumworks/Upsilon/commit/4b8772f4468d9ea78a464c23e6b09296e119d256) [MODescher] Added get_clipboard function ### 📊 Changes **23 files changed** (+397 additions, -11 deletions) <details> <summary>View changed files</summary> 📝 `README.fr.md` (+28 -5) 📝 `README.md` (+15 -0) 📝 `apps/code/catalog.de.i18n` (+11 -0) 📝 `apps/code/catalog.en.i18n` (+11 -0) 📝 `apps/code/catalog.es.i18n` (+11 -0) 📝 `apps/code/catalog.fr.i18n` (+11 -0) 📝 `apps/code/catalog.hu.i18n` (+12 -0) 📝 `apps/code/catalog.it.i18n` (+12 -1) 📝 `apps/code/catalog.nl.i18n` (+11 -0) 📝 `apps/code/catalog.pt.i18n` (+11 -0) 📝 `apps/code/catalog.universal.i18n` (+13 -0) 📝 `apps/code/python_toolbox.cpp` (+19 -3) 📝 `apps/code/toolbox.universal.i18n` (+1 -0) 📝 `python/Makefile` (+2 -0) 📝 `python/port/genhdr/moduledefs.h` (+6 -0) 📝 `python/port/genhdr/qstrdefs.in.h` (+13 -0) ➕ `python/port/mod/escher/modescher.cpp` (+25 -0) ➕ `python/port/mod/escher/modescher.h` (+4 -0) ➕ `python/port/mod/escher/modescher_table.cpp` (+34 -0) 📝 `python/port/mod/ion/modion.cpp` (+62 -1) _...and 3 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 13:17:06 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Upsilon#381
No description provided.