The solution for drone airdrops uses a 4G module for an elegant airdrop; a simple phone call is all it takes to land the drone, which is far more graceful than circling twice in the air. Currently, the module feels too heavy; the servo alone weighs 10 grams, and with the battery and Air780 module, it's still too heavy compared to the 25-gram module sold online. However, a more elegant, lightweight solution without servos has flashed through my mind. Of course, I'll definitely consider it next time.
```
Luatos servo control reference code (SMS control, the servo will rotate upon receiving any SMS message)
PROJECT = 'kongtou'
VERSION = '0.0.1'
-- sys library is standard
_G.sys = require("sys")
---------------------------------------
local PWM_ID = 1
-- Define servo control function
local function setServoAngle(pwmId, angle)
-- Convert angle to pulse width (microseconds)
local pulseWidth = (angle * 10) + 500 -- From 500 to 2500 microseconds
-- Convert pulse width to duty cycle
local dutyCycle = (pulseWidth / 20000) * 100
-- Set PWM
pwm.open(pwmId, 50, dutyCycle, 0, 100) -- 50Hz frequency, corresponding to the duty cycle of the angle
end
sys.subscribe("SMS_INC", function(phone,sms)
log.info("sms",phone,sms)
setServoAngle(PWM_ID, 0)
end)
sys.subscribe("CC_IND", function(status, value)
log.info("cc status", status, value)
setServoAngle(PWM_ID, 0)
end)
sys.taskInit(function()
-- pwm.open(PWM_ID, 50, 1500) -- Initial position is 1800 degrees
setServoAngle(PWM_ID, 180)
end)
-- User code has ended---------------------------------------------
-- The ending is always this line
sys.run()
-- Do not add any statements after sys.run()!!!!!
```
![IMG_1527.jpg]

![IMG_1526.jpg]

![IMG_1521.jpg]
mini4k Open Source Universal Airdrop Tool.mp4
PDF_Drone Servo Airdrop Module.zip
Altium_Drone Servo Airdrop Module.zip
PADS_UAV Servo Airdrop Module.zip
BOM_Drone Servo Airdrop Module.xlsx
94385
Tmall brand practical gadgets: banana plug to USB adjustable voltage regulator adapter.
As an electronics engineer, an adjustable regulated power supply is essential, and a USB cable is universal. However, a USB cable cannot be directly connected to an adjustable regulated power supply, so I made a small board with a banana plug to USB adapter, which made wiring much easier.
↓ The golden banana head is made with a lot of investment, hahahahahaha

↓ Soldered USB Type-A female connector

↓ Golden banana pre-assembled

↓ Successfully assembled

↓ Add an extra nut for double the strength

↓ Showing off the golden banana head, hahahahaha

↓ Full view

↓ Instantly transforms into a Tmall store
banana_usb.dxf
PDF_Tmall Brand Practical Gadgets: Banana Head to USB Adjustable Voltage Regulator Adapter.zip
Altium_Tmall Brand Practical Gadgets Banana Head to USB Adjustable Voltage Regulator Adapter.zip
PADS_Tmall Brand Practical Small Tools Banana Head to USB Adjustable Voltage Regulated Power Supply Adapter.zip
BOM_Tmall Brand Practical Gadget Banana Head to USB Adjustable Voltage Regulator Adapter.xlsx
94386
STM32F103C8T6 Development Board
This project utilizes the classic STM32F103C8T6 chip to create a Type-C development board with a serial port chip.
Features:
STM32F1 classic chip, STM32F103C8T6,
a Type C development board with a serial port chip,
appearance



, function testing,
LED lighting,

serial port testing.
PDF_STM32F103C8T6 development board.zip
Altium_STM32F103C8T6 development board.zip
PADS_STM32F103C8T6 development board.zip
BOM_STM32F103C8T6 Development Board.xlsx
94388
SU-63T Offline Voice Development Board - with Bluetooth
The SU-06T features offline voice control, and its Bluetooth can play music or communicate with the official mini-program to achieve IoT connectivity, but the downloader is relatively expensive.
1. Other offline voice development boards: SU-22T,
SU-03T,
CI-03T.
2. SU-63T physical description
: Includes power indicator, microphone, and speaker. The USB port is for downloading, and the Type-C port is for serial communication. All I/O pins are printed.

3. Download tutorial
will be added later; please see the attachment below.
03. SU-63T Development Kit; Version 2303201108.zip
PDF_SU-63T Offline Voice Development Board - with Bluetooth.zip
Altium_SU-63T Offline Voice Development Board - with Bluetooth.zip
PADS_SU-63T Offline Voice Development Board - with Bluetooth.zip
BOM_SU-63T Offline Voice Development Board with Bluetooth.xlsx
94389
electronic