ESP32-S3 OneWire #1521
-
Hi, I recently bought a ESP32-S3-DevKitC-1 N16R8 and try to get onewire working there. In Is there any way to get this working? I guess just a little hint is needed :) best regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Nevermind I figured it out (al lthe changes I made):
This made it work for me :) Leaving this here for other people who came looking for this |
Beta Was this translation helpful? Give feedback.
Nevermind I figured it out (al lthe changes I made):
API_nanoFramework.Device.OneWire": "ON"
toCMAkePresets.json
target_nf_dev_onewire_config.h
set the UARt toUART_NUM1
andRX_PIN
to 18 andTX_PIN
to 17Configuration.SetPinFunction(17, DeviceFunction.COM2_RX); Configuration.SetPinFunction(18, DeviceFunction.COM2_TX);
This made it work for me :) Leaving this here for other people who came looking for this