diff --git a/examples/C/call_c_from_js/main.c b/examples/C/call_c_from_js/main.c index c0f9d68c..21fc5305 100644 --- a/examples/C/call_c_from_js/main.c +++ b/examples/C/call_c_from_js/main.c @@ -17,7 +17,7 @@ void my_function_string(webui_event_t* e) { void my_function_integer(webui_event_t* e) { // JavaScript: - // webui.call('MyID_Two', 123, 456, 789); + // webui.call('MyID_Two', 123, 456, 789, 12345.6789); long long number_1 = webui_get_int(e); // Or webui_get_int_at(e, 0); long long number_2 = webui_get_int_at(e, 1); @@ -26,6 +26,10 @@ void my_function_integer(webui_event_t* e) { printf("my_function_integer 1: %lld\n", number_1); // 123 printf("my_function_integer 2: %lld\n", number_2); // 456 printf("my_function_integer 3: %lld\n", number_3); // 789 + + double float_1 = webui_get_float_at(e, 3); + + printf("my_function_integer 4: %f\n", float_1); // 12345.6789 } void my_function_boolean(webui_event_t* e) { @@ -124,7 +128,7 @@ int main() { "

Call C functions with arguments (See the logs in your terminal)

" " " "
" - " " + " " "
" " " "
"