Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -375,26 +375,25 @@ with col2:
|
|
375 |
st.write(f"Duration: {touch_duration:.1f} s | Intensity: {touch_pressure:.2f}")
|
376 |
|
377 |
# Create a futuristic data display
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
st.code(data_display, language="")
|
398 |
|
399 |
|
400 |
|
|
|
375 |
st.write(f"Duration: {touch_duration:.1f} s | Intensity: {touch_pressure:.2f}")
|
376 |
|
377 |
# Create a futuristic data display
|
378 |
+
data_display = f"""
|
379 |
+
+---------------------------------------------+
|
380 |
+
| Pressure : {measured_pressure:.2f} |
|
381 |
+
| Temperature : {measured_temp:.2f}Β°C |
|
382 |
+
| Texture : {measured_texture} |
|
383 |
+
| EM Field : {measured_em:.2f} ΞΌT |
|
384 |
+
| Quantum State: {quantum_state:.2f} |
|
385 |
+
+---------------------------------------------+
|
386 |
+
| Pain Level : {pain_level:.2f} |
|
387 |
+
| Pleasure : {pleasure_level:.2f} |
|
388 |
+
| Tickle : {tickle_level:.2f} |
|
389 |
+
| Itch : {itch_level:.2f} |
|
390 |
+
| Proprioception: {proprioception:.2f} |
|
391 |
+
| Synesthesia : {synesthesia} |
|
392 |
+
| Neural Response: {neural_response:.2f} |
|
393 |
+
+---------------------------------------------+
|
394 |
+
"""
|
395 |
+
|
396 |
+
st.code(data_display, language="")
|
|
|
397 |
|
398 |
|
399 |
|