Closed Hutgib81 closed 1 week ago
Pwease hweap mee
I recommend adjusting this issue. Put your requests in the issue description. List and describe what each of the components are, and how you intend to use them.
In wokwi, the parts
are independent of the microcontroller, so the Arduino parts
work with ESP
, STM
, Raspberry Pi Pico
, ...
Generally speaking, you can replace any analog sensor with a potentiometer and a digital actuator with an LED.
Therefore, you can exchange the active buzzer for an LED. Just like you can replace the Soil Moisture Sensor with a potentiometer
1)Active Buzzer => LED 3)Water Valve => LED 4)Soil Moisture Sensor => Potentiometer
5)ESP32 Dev Kit V1 => board-esp32-devkit-c-v4
The esp32 devkit v1 already exists on wokwi, however it has been discontinued. If possible, use esp32-devkit-c-v4
. It is compatible with the DEV kit V1. And in wokwi dev kit-c-v4
is the default for new ESP32 projects.
If ESP32 Dev Kit V1
is really necessary, put it in diagram.json
...
"parts": [
{ "type": "board-esp32-devkit-v1", "id": "esp", "top": 0, "left": 0, "attrs": {} }
],
...
example: diagram.json
{
"version": 1,
"author": "Anonymous maker",
"editor": "wokwi",
"parts": [
{ "type": "board-esp32-devkit-v1", "id": "esp", "top": 0, "left": 0, "attrs": {} }
],
"connections": [ [ "esp:TX", "$serialMonitor:RX", "", [] ], [ "esp:RX", "$serialMonitor:TX", "", [] ] ],
"dependencies": {}
}
These replacements are just to be able to simulate the project, and code without having to change the code to test on the physical component.
And by making some abstractions in the code, it is possible to exchange the 2)Waterflow sensor
for a Potentiometer
My project is "SMALL SCALE FARMING SOLUTION (CROP MONITORING & MANAGEMENT)" I will attach the schematic I made from EasyEDA and the list of components that I need (Not available in Wokwi).
List of components: 1) Water Flow Sensor 2) Active Buzzer 3) Water Valve 4) Soil Moisture Sensor
I am truly sorry for the inconvenience caused, I just need these components for simulation purposes.
On Thu, 7 Nov 2024 at 13:42, Uri Shaked @.***> wrote:
Closed #909 https://github.com/wokwi/wokwi-features/issues/909 as completed.
— Reply to this email directly, view it on GitHub https://github.com/wokwi/wokwi-features/issues/909#event-15169908025, or unsubscribe https://github.com/notifications/unsubscribe-auth/BMXF33OM2PQAXSIBMNMHRTTZ7L4UVAVCNFSM6AAAAABRKHDHG2VHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJVGE3DSOJQHAYDENI . You are receiving this because you authored the thread.Message ID: @.***>
Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like A clear and concise description of what you want to happen.