{"id":28290996,"url":"https://github.com/mowi12/uulm-card-zero","last_synced_at":"2025-10-13T21:41:14.273Z","repository":{"id":255983450,"uuid":"853741064","full_name":"mowi12/uulm-card-zero","owner":"mowi12","description":"uulm-card-zero is an application for the Flipper Zero which shows the most important information such as the current amount of credit.","archived":false,"fork":false,"pushed_at":"2024-09-08T13:44:22.000Z","size":17,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-22T03:13:08.218Z","etag":null,"topics":["application","flipper-zero","flipperzero","uulm"],"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/mowi12.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":"2024-09-07T12:06:14.000Z","updated_at":"2024-11-16T23:48:12.000Z","dependencies_parsed_at":"2024-09-08T09:52:20.853Z","dependency_job_id":"5a30feba-c874-494c-b979-f401ee67cc52","html_url":"https://github.com/mowi12/uulm-card-zero","commit_stats":null,"previous_names":["mowi12/uulm-card-zero"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mowi12/uulm-card-zero","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mowi12%2Fuulm-card-zero","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mowi12%2Fuulm-card-zero/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mowi12%2Fuulm-card-zero/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mowi12%2Fuulm-card-zero/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mowi12","download_url":"https://codeload.github.com/mowi12/uulm-card-zero/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mowi12%2Fuulm-card-zero/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017051,"owners_count":26085951,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["application","flipper-zero","flipperzero","uulm"],"created_at":"2025-05-22T03:13:07.585Z","updated_at":"2025-10-13T21:41:14.268Z","avatar_url":"https://github.com/mowi12.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# skeleton_app\nYou can use this application as a starting point for creating your own application.  It contains the skeleton framework to get an application running on the Flipper Zero.\n\nPlease let me know any feedback! \n- Discord - https://discord.com/invite/NsjCvqwPAd  (@CodeAllNight)\n- YouTube - https://youtube.com/@MrDerekJamison/playlists\n- GitHub - https://github.com/jamisonderek/flipper-zero-tutorials\n- Wiki - https://github.com/jamisonderek/flipper-zero-tutorials/wiki\n\n## Overview\n\nThis application has three submenu items:\n* Config\n* Play\n* About\n\n## Config\nThe \"Config\" menu item currently has 2 settings.  The first setting has a selection of 3 options (and demonstrates how the numeric values associated with them don't have to be sequential.)  The other setting has a text field which is set by clicking OK while selecting the setting (depending on your application, you may want to do something else when an item is clicked, like bring up a hex selector.)\n\n## Play\nThe \"Play\" screen is where you would put your primary application.  The current implementation renders some data.  When Left/Right buttons are clicked the value of x changes and the icon moves left/right.  Up/Down buttons don't do anything in our implementation.  As soon as the OK button is pressed, a tone is made based on the value of x.  Pressing the back button goes back to the menu.\n\n## About\n\nThe \"About\" menu item contains information about your application, so people know what to do with it \u0026 how to contact you.\n\n## Modifying the project\n\n### application.fam\n\nSet the `appid` to a unique value for your application. This should be lowercase letters, numbers, and underscores. Your icons header file will be impacted by this change (in app.c).\n\nSet the `name` to the name to dispay in the UI when selecting an application to load.\n\nSet the `entry_point` to the name of the method in your app.c file, that should get executed when your application is selected to be run. This method should take a (void\\*) input parameter and return a uint32_t status code.\n\nFor most applications a 4K `stack_size` should be a good default.\n\nMake sure `fap_icon` is the name of the PNG file with your 10x10 pixel icon that should be displayed when selecting your application.\n\nThe `fap_category` is the category that your application is mostly related to. If your primary purpose is not GPIO then change this category. This will determine what folder it is in when starting, as well as where people will locate your application in the Hub mobile app.\n\n### app.png\n\nThis is a 10x10 PNG icon to display when selecting your application. If you want to rename this file to something other than `app.png`, be sure to also edit the application.fam `fap_icon` value.\n\n### app.c\n\n#### Icons file\n\nReplace `my_app_id_42_icons.h` with your `appid`\\_icons.h (based on the you set in application.fam)\n\n#### TAG value\n\nChange the #define TAG to be the name of the application to appear in log messages.\n\n#### BACKLIGHT_ALWAYS_ON\n\nRemove the `#define BACKLIGHT_ALWAYS_ON` statement if you don't want the backlight to automatically turn off after some duration.\n\n#### MyApp and my_app\n\nReplace all occurances of `MyApp` and `my_app_` with the name of your application.\n\n#### FlipTheWorld\n\nReplace `\"Play\"` with the action you want for your main applicaiton.\n\n#### \"This is a sample application\"\n\nReplace the about text in your application. Search for `This is a sample application`. You can use '\\n' to force a newline.\n\n#### my_app_view_draw_callback\n\nChange the code in `..._view_draw_callback` to draw the primary screen for your application.\n\n#### my_app_view_input_callback\n\nChange the code in `..._view_input_callback` to handle user input in the primary screen for your application.\n\n#### setting_1_values\n\nMake sure the number of items in `setting_1_values` and `setting_1_names` is the same length. Change these settings to whatever values makes sense for your user to configure. You may also want to change `\"Setting 1\"` to be a more descriptive name for the setting and perhaps update the variable names as well.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmowi12%2Fuulm-card-zero","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmowi12%2Fuulm-card-zero","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmowi12%2Fuulm-card-zero/lists"}