Browse Source

Better description

anfractuosity 2 years ago
parent
commit
e1c593e8b6
2 changed files with 2 additions and 2 deletions
  1. 1 1
      application.fam
  2. 1 1
      scenes/scope_scene_about.c

+ 1 - 1
application.fam

@@ -9,5 +9,5 @@ App(
     fap_category="GPIO",
     fap_icon="scope_10px.png",
     fap_version="0.1",
-    fap_description="Simple oscilloscope application"
+    fap_description="Oscilloscope application - apply signal to pin 16/PC0, with a voltage ranging from 0V to 2.5V and ground to pin 18/GND"
 )

+ 1 - 1
scenes/scope_scene_about.c

@@ -13,7 +13,7 @@ void scope_scene_about_on_enter(void* context) {
     FuriString* temp_str;
     temp_str = furi_string_alloc();
     furi_string_printf(temp_str, "\e#%s\n", "Information");
-
+    furi_string_cat_printf(temp_str, "Provide signal to pin 16/PC0, with a voltage ranging from 0V to 2.5V and ground to pin 18/GND.\n\n");
     furi_string_cat_printf(temp_str, "Developed by: %s\n", S_DEVELOPED);
     furi_string_cat_printf(temp_str, "Github: %s\n\n", S_GITHUB);