Hello guys. I was writing code in nano editor for analogWrite and it worked fine. Thing is that I experimented with it and add different values in the same code. My concern is that can it damage the microcontroller. Uploading video and code for context.
from boltiot import Bolt
api_key = “XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX”
device_id = “BOLTXXXXX”
mybolt = Bolt(api_key, device_id)
response = mybolt.analogWrite(‘0’, ‘10’)
print (response)
response = mybolt.analogWrite(‘0’, ‘122’)
print (response)
response = mybolt.analogWrite(‘0’, ‘254’)
print (response)
response = mybolt.analogWrite(‘0’, ‘0’)
print (response)