Search found 4 matches

by pewamipy
Sun Jul 10, 2022 7:30 pm
Forum: Raspberry Pi microcontroller boards
Topic: The New Pico W (main.py) not boot start ?
Replies: 2
Views: 4467

Re: The New Pico W (main.py) not boot start ? solved...

Hmm i did a flash_nuke on the board and then reloaded version 1.19 108 And that made it work so now the main.py is starting after cold boot, im not shure what did the fault, maybe my reload and reflash different versions cause it to behavie strange ? I will test more and post here if i get this erro...
by pewamipy
Sun Jul 10, 2022 6:50 pm
Forum: Raspberry Pi microcontroller boards
Topic: The New Pico W (main.py) not boot start ?
Replies: 2
Views: 4467

The New Pico W (main.py) not boot start ?

Hello I just got 2 Pico W that i am testing out I have used Thonny and the latest 1.19 versions 106,108,112,113 So far I have test WiFi and simple led test from the latest document "Connecting to the Internet with Raspberry Pi Pico W" However the programs runs smooth on Thonny start/stop But if I di...
by pewamipy
Fri Jul 24, 2020 9:05 am
Forum: ESP8266 boards
Topic: Write to register MCP lib and MCP23008 on ESP-12F
Replies: 3
Views: 3522

Re: Write to register MCP lib and MCP23008 on ESP-12F

SOLVED

I have to write str type argument like this

Code: Select all

m = MCP23008(i2c = i2c, address = 32)  
m.IODIR = '0'  # sets all GPIO to outputs 
m.OLAT = '3'   # sets pin 1 and 2 ON 
by pewamipy
Mon Jun 15, 2020 5:44 pm
Forum: ESP8266 boards
Topic: Write to register MCP lib and MCP23008 on ESP-12F
Replies: 3
Views: 3522

Write to register MCP lib and MCP23008 on ESP-12F

Hi guys My first post here, and I am a bit stuck as a quite new programmer in Micropython I am using a MCP23008 hooked up to a ESP-12F (8266) small blue board. I have this lib MCP installed https://github.com/ShrimpingIt/micropython-mcp230xx Everything is working OK in the examples as this io = mcp....