Search found 3 matches
- 28 Aug 2019, 07:32
- Forum: Hardware
- Topic: Core 3 only powers on in boot mode
- Replies: 1
- Views: 3940
- 27 Aug 2019, 09:02
- Forum: Hardware
- Topic: Core 3 only powers on in boot mode
- Replies: 1
- Views: 3940
Core 3 only powers on in boot mode
Hi,
I have Core 3 and I wanted to flash new image. I tried two different raspbian lites (Buster 2019-07-10 and Strech 2018-11-13). With microUSB connected, Power LED is on and I can flash new image successfully. When I power down the Core 3 and remove microUSB and power back up, stays the Power LED ...
I have Core 3 and I wanted to flash new image. I tried two different raspbian lites (Buster 2019-07-10 and Strech 2018-11-13). With microUSB connected, Power LED is on and I can flash new image successfully. When I power down the Core 3 and remove microUSB and power back up, stays the Power LED ...
- 03 Apr 2019, 15:02
- Forum: Hardware
- Topic: Controlling the LED
- Replies: 9
- Views: 25475
Re: Controlling the LED
Hi,
Just went on trial and error basis trying all the GPIO ports out. Found that with python you can control the A1 and A2 leds with a small piece of code
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
sleeptime = 0.2
while (True):
#red A1
GPIO.setup(6,GPIO ...
Just went on trial and error basis trying all the GPIO ports out. Found that with python you can control the A1 and A2 leds with a small piece of code
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
sleeptime = 0.2
while (True):
#red A1
GPIO.setup(6,GPIO ...