Sephfox commited on
Commit
e623318
Β·
verified Β·
1 Parent(s): 26a5842

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -20
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
- data_display = f"""
379
- ```
380
- β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
381
- β”‚ Pressure : {measured_pressure:.2f} β”‚
382
- β”‚ Temperature : {measured_temp:.2f}Β°C β”‚
383
- β”‚ Texture : {measured_texture} β”‚
384
- β”‚ EM Field : {measured_em:.2f} ΞΌT β”‚
385
- β”‚ Quantum State: {quantum_state:.2f} β”‚
386
- β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
387
- β”‚ Pain Level : {pain_level:.2f} β”‚
388
- β”‚ Pleasure : {pleasure_level:.2f} β”‚
389
- β”‚ Tickle : {tickle_level:.2f} β”‚
390
- β”‚ Itch : {itch_level:.2f} β”‚
391
- β”‚ Proprioception: {proprioception:.2f} β”‚
392
- β”‚ Synesthesia : {synesthesia} β”‚
393
- β”‚ Neural Response: {neural_response:.2f} β”‚
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