|
Raspbian OSRaspberry Pi
|
|
|
BLDC 12V 24V 3200rpm Micro Electrical BLDC MotorGuangdong ChangJinCheng Tech Co., Ltd
|
|
|
Piezoelectric Ring 3 MHzSteiner & Martins, Inc
|
|
|
PLAeSun
|
|
|
Raspberry Pi 4Raspberry Pi
|
Portable Multi Therapy Device for Non Invasive Pain Management
In the realm of pain relief and therapy treatment, traditional single modality treatment approaches do not suffice in offering meaningful and long-lasting therapeutic effects which is the thrust of this paper. Our innovation integrates three distinct treatment methods: laser, vibration and ultrasonic, within a single, hand-held device that is user friendly with an aim of enhancing the synergistic effect during treatment. It has been established that a laser, either red or infrared, is effective for promoting collagen synthesis and healing wounds by utilizing light to alter chemical and structural components at the cellular level. Muscles are made to relax and blood flow is enhanced by vibration therapy’s stimulation of blood circulation and overall muscle relaxation. The healing of tissue and the alleviation of pain have both been shown to improve with ultrasonic therapy, which enhances cellular activities and increasing the permeability of tissues with sound waves. The proposed combination therapy device merges these three modalities into a ‘therapy gun’ which is small and easy to handle. The intensity and time of treatment may be changed depending on the patient’s requirements. The targeted and multi-faceted therapies have integrated with the focus of overcoming the single modality treatment limits to improving patient treatment. This device however addresses pain relief, non invasive muscle relaxation and promotion of healing through the fusion of laser, vibration, and ultrasonic therapeutic approaches This paper discusses the three-in-one device and its various therapeutic areas and expects the device to be a breakthrough in pain management and rehabilitation industries. In such a way, supported by the detailed research and experimental results, we show the readiness of this device to improve clinical results of human kind treatment and in this way enhance the multi-modality therapeutic technologies.
import RPi.GPIO as GPIO
import time
from PIL import Image, ImageDraw, ImageFont
import Adafruit_SSD1306
RST = None
disp = Adafruit_SSD1306.SSD1306_128_64(rst=RST)
disp.begin()
disp.clear()
disp.display()
width = disp.width
height = disp.height
image = Image.new('1', (width, height))
draw = ImageDraw.Draw(image)
font = ImageFont.load_default()
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
D5 = 21
D6 = 20
D7 = 16
D8 = 12
D9 = 25
D10 = 24
D3 = 18
D4 = 23
D11 = 22
GPIO.setup(D5, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(D6, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(D7, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(D8, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(D9, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(D10, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(D3, GPIO.OUT)
GPIO.setup(D4, GPIO.OUT)
GPIO.setup(D11, GPIO.OUT)
def update_display(message):
draw.rectangle((0, 0, width, height), outline=0, fill=0)
draw.text((0, 10), message, font=font, fill=255)
disp.image(image)
disp.display()
try:
while True:
a = GPIO.input(D5)
b = GPIO.input(D6)
c = GPIO.input(D7)
d = GPIO.input(D8)
e = GPIO.input(D9)
f = GPIO.input(D10)
if a == GPIO.LOW:
GPIO.output(D3, GPIO.HIGH)
GPIO.output(D4, GPIO.LOW)
GPIO.output(D11, GPIO.LOW)
update_display("IR REHABILITATION MODE")
time.sleep(3)
elif b == GPIO.LOW:
GPIO.output(D3, GPIO.LOW)
GPIO.output(D4, GPIO.HIGH)
GPIO.output(D11, GPIO.LOW)
update_display("VIBRATOR MODE")
time.sleep(3)
elif c == GPIO.LOW:
GPIO.output(D3, GPIO.HIGH)
GPIO.output(D4, GPIO.HIGH)
GPIO.output(D11, GPIO.LOW)
update_display("HYBRID REHABILITATION MODE")
time.sleep(3)
elif d == GPIO.LOW:
GPIO.output(D3, GPIO.LOW)
GPIO.output(D4, GPIO.LOW)
GPIO.output(D11, GPIO.LOW)
update_display("POWER OFF")
time.sleep(3)
elif e == GPIO.LOW:
GPIO.output(D3, GPIO.LOW)
GPIO.output(D4, GPIO.LOW)
GPIO.output(D11, GPIO.HIGH)
update_display("ULTRASONIC MODE")
time.sleep(3)
elif f == GPIO.LOW:
GPIO.output(D3, GPIO.HIGH)
GPIO.output(D4, GPIO.HIGH)
GPIO.output(D11, GPIO.HIGH)
update_display("COMBINATION MODE (ALL)")
time.sleep(3)
except KeyboardInterrupt:
print("Exiting program...")
GPIO.cleanup()
Portable Multi Therapy Device for Non Invasive Pain Management
*PCBWay community is a sharing platform. We are not responsible for any design issues and parameter issues (board thickness, surface finish, etc.) you choose.
- Comments(0)
- Likes(0)
- 0 USER VOTES
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
More by Engineer
-
-
TEKTRONIX THS710,THS720,THS730 External Battery Charger with 3D Printed Case
61 1 0 -
100 LED Chaser Circuit Using IC555 and CD4017
128 1 1