Hi Steve,
Click on your name - top right - used control - board preferences - my board style. You can choose 'element ' or prosilver.
Prosilver is a light scheme like the old board..
Martin
Search found 1656 matches
- Sun Mar 07, 2021 1:50 pm
- Forum: General
- Topic: Colour scheme
- Replies: 11
- Views: 13988
- Sat Mar 06, 2021 10:30 pm
- Forum: Bug Reports
- Topic: Serial port issues & Arduino pro 3.3v
- Replies: 3
- Views: 5248
Re: Serial port issues & Arduino pro 3.3v
It's strange - I modified: avrc_arduinoA.bat - :ProgFlash @SET AVRDUDEcmd="%~dp0..\bin\avrdude.exe" -p m328p -P%ComPort% -b %BaudRate% -c %2 -D -U flash:w:"%FileName%" @SHIFT @GOTO Send :Config @SET AVRDUDEcmd="%~dp0..\bin\avrdude.exe" -p m328p -P%ComPort% -b %BaudRate%...
- Sat Mar 06, 2021 5:43 pm
- Forum: Bug Reports
- Topic: Serial port issues & Arduino pro 3.3v
- Replies: 3
- Views: 5248
Serial port issues & Arduino pro 3.3v
So - this is probably related to other issues - but couldn't find the topic :-( If one of the other VCs wants to move this across then please do... I tried to program an Arduino Pro (maybe it's a mini?) 3.3v. This doesn't have a USB port and programming is via a FTDI convertor. Anyway - using the Pr...
- Sat Mar 06, 2021 2:13 pm
- Forum: General
- Topic: Education Packs
- Replies: 2
- Views: 4171
Education Packs
I wanted to highlight the education packs at https://www.flowcode.co.uk/education/ - complete, well presented courses on 'embedded internet', 'canbus', 'RFID' amongst others.
What an excellent resource - many thanks to MatrixTSL for making this available.
Martin
What an excellent resource - many thanks to MatrixTSL for making this available.
Martin
- Wed Mar 03, 2021 5:19 pm
- Forum: General
- Topic: ESP Programming
- Replies: 5
- Views: 7029
Re: ESP Programming
Thanks Ben,
Mouse wheel - that's great. Now I can read the pin labels... 5v & 3.3v swapped top RHS, VEXT marked as GND pin 4...
#warning "esp_event_loop.h is deprecated, please include esp_event.h instead"
Martin
Mouse wheel - that's great. Now I can read the pin labels... 5v & 3.3v swapped top RHS, VEXT marked as GND pin 4...
#warning "esp_event_loop.h is deprecated, please include esp_event.h instead"
Martin
- Wed Mar 03, 2021 3:29 pm
- Forum: General
- Topic: ESP Programming
- Replies: 5
- Views: 7029
Re: ESP Programming
Using CAL SPI - if 'use chip references' is unticked - then, for example, having (Software mode) MOSI = $pin15 gives compilation error (port5 doesn't exist did you mean portA?)
Should there be 2 available channels for SPI?
Martin
Should there be 2 available channels for SPI?
Martin
- Wed Mar 03, 2021 3:03 pm
- Forum: General
- Topic: ESP Programming
- Replies: 5
- Views: 7029
ESP Programming
Just trying to get ESP programming working - and encountered a few things which I'm not sure about.. 1) If the program 'falls' off the end (loop: goto loop) then I get watchdog timer fired - program didn't respond in time - message on the uart. This is if auto clear watchdog is set/not set. It doesn...
- Tue Mar 02, 2021 11:13 pm
- Forum: General
- Topic: Binary to BCD conversion
- Replies: 1
- Views: 3195
Re: Binary to BCD conversion
I posted an implementation of this here https://www.flowcode.co.uk/mmforums/view ... hp?t=20462
If memory serves then I converted binary to one digit per byte for output as a string rather than BCD - but it should give you some idea of the bit manipulation needed..
Martin
If memory serves then I converted binary to one digit per byte for output as a string rather than BCD - but it should give you some idea of the bit manipulation needed..
Martin
- Mon Mar 01, 2021 1:48 pm
- Forum: General
- Topic: Syntax help
- Replies: 6
- Views: 7228
Re: Syntax help
You could put it as a normal decimal?
0.000187
The form given is slightly odd - normally would be 1.87e-6 ?
Martin
0.000187
The form given is slightly odd - normally would be 1.87e-6 ?
Martin
- Sat Feb 27, 2021 4:57 pm
- Forum: General
- Topic: UNO SCADA SPI Prescaler question
- Replies: 11
- Views: 14901
Re: UNO SCADA SPI Prescaler question
Hi Peter, The problem - the hardware mode on USI gives no signal. (Implementation uses MOSI (which label refers to connection for programmer such as USBTiny) - but needs to use DOUT which on ATTiny 85 is d1 and not d0. I've occasionally hit a problem where there is no signal on MOSI on Arduino - and...