Willy-JL 1 год назад
Родитель
Сommit
ba1f62a7f5

+ 1 - 1
nfc_maker/scenes/nfc_maker_scene_bluetooth.c

@@ -26,7 +26,7 @@ void nfc_maker_scene_bluetooth_on_enter(void* context) {
     byte_input_set_header_text(byte_input, "Enter Bluetooth MAC:");
 
     for(size_t i = 0; i < sizeof(app->mac_buf); i++) {
-        app->mac_buf[i] = 0x69;
+        app->mac_buf[i] = 0x42;
     }
 
     byte_input_set_result_callback(

+ 8 - 1
nfc_maker/scenes/nfc_maker_scene_contact_url.c

@@ -16,7 +16,14 @@ void nfc_maker_scene_contact_url_on_enter(void* context) {
 
     text_input_set_header_text(text_input, "Enter URL Link:");
 
-    strlcpy(app->big_buf, "momentum-fw.dev", sizeof(app->big_buf));
+    strlcpy(
+        app->big_buf,
+#ifdef FW_ORIGIN_Momentum
+        "momentum-fw.dev",
+#else
+        "flipperzero.one",
+#endif
+        sizeof(app->big_buf));
 
     text_input_set_result_callback(
         text_input,

+ 8 - 1
nfc_maker/scenes/nfc_maker_scene_https.c

@@ -16,7 +16,14 @@ void nfc_maker_scene_https_on_enter(void* context) {
 
     text_input_set_header_text(text_input, "Enter Https Link:");
 
-    strlcpy(app->big_buf, "momentum-fw.dev", sizeof(app->big_buf));
+    strlcpy(
+        app->big_buf,
+#ifdef FW_ORIGIN_Momentum
+        "momentum-fw.dev",
+#else
+        "flipperzero.one",
+#endif
+        sizeof(app->big_buf));
 
     text_input_set_result_callback(
         text_input,

+ 8 - 1
nfc_maker/scenes/nfc_maker_scene_url.c

@@ -16,7 +16,14 @@ void nfc_maker_scene_url_on_enter(void* context) {
 
     text_input_set_header_text(text_input, "Enter Plain URL:");
 
-    strlcpy(app->big_buf, "https://momentum-fw.dev", sizeof(app->big_buf));
+    strlcpy(
+        app->big_buf,
+#ifdef FW_ORIGIN_Momentum
+        "https://momentum-fw.dev",
+#else
+        "https://flipperzero.one",
+#endif
+        sizeof(app->big_buf));
 
     text_input_set_result_callback(
         text_input,