completed V0.2 version
This commit is contained in:
parent
c0f4e4ea2a
commit
3e63ec43fa
16 changed files with 25938 additions and 26892 deletions
BIN
V0.2.FCStd
BIN
V0.2.FCStd
Binary file not shown.
BIN
V0.2.FCStd1
BIN
V0.2.FCStd1
Binary file not shown.
BIN
V0.2_bk.FCStd1
Normal file
BIN
V0.2_bk.FCStd1
Normal file
Binary file not shown.
23
main.py
Normal file
23
main.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
from machine import Pin, PWM
|
||||
from time import sleep
|
||||
|
||||
# Set up PWM Pin for servo control
|
||||
servo_pin = machine.Pin(10)
|
||||
servo = PWM(servo_pin)
|
||||
|
||||
# Set Duty Cycle for Different Angles
|
||||
max_duty = 7864
|
||||
min_duty = 1802
|
||||
half_duty = int(max_duty/2)
|
||||
|
||||
#Set PWM frequency
|
||||
frequency = 50
|
||||
servo.freq (frequency)
|
||||
|
||||
|
||||
for i in range(20000):
|
||||
servo.duty_u16(max_duty)
|
||||
sleep(1)
|
||||
servo.duty_u16(min_duty)
|
||||
sleep(1)
|
||||
|
||||
BIN
pinchvalve.FCStd
BIN
pinchvalve.FCStd
Binary file not shown.
Binary file not shown.
27
script
27
script
|
|
@ -1,27 +0,0 @@
|
|||
Start with all parts and tools layed out infront of you.
|
||||
Name all the parts
|
||||
* Lower and upper housing
|
||||
* Bell Crank
|
||||
* lower and upper crank shaft
|
||||
* lower and upper linkage
|
||||
* Servo + its screws
|
||||
* 8x 2x12mm pins
|
||||
* 4x M3x10 screws
|
||||
|
||||
* 2mm drill bit
|
||||
* Vise
|
||||
* Screwdriver
|
||||
* FDM 3D-Printer
|
||||
|
||||
Position servo
|
||||
Install servo
|
||||
Orient and push on lower crank
|
||||
Connect linkage and bell crank
|
||||
Insert linkage and bell crank while pushing on linkage to crankshaft
|
||||
Push on upper crank
|
||||
Push in Contact pin to upper housing
|
||||
Push in crank bearing pin to upper housing
|
||||
Add upper housing
|
||||
|
||||
Show simple connection to RPi pico
|
||||
Show bubbles/no bubbles
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
25915
step_export/V0.2.step
Normal file
25915
step_export/V0.2.step
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
11356
step_export/lower.step
11356
step_export/lower.step
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
5
todo
5
todo
|
|
@ -1,5 +0,0 @@
|
|||
X Test Pressure (20260615)
|
||||
Test Reliability
|
||||
Design Bearing Version
|
||||
Add Servo Feedback/Manual control knob to design
|
||||
Remake Models with nice mastersketch technique
|
||||
Loading…
Add table
Add a link
Reference in a new issue