Search found 29 matches
- Sat May 30, 2020 1:15 pm
- Forum: EzSBC1
- Topic: PORT command in Basic
- Replies: 2
- Views: 10538
Re: PORT command in Basic
Well, the PORT command gives you a 32-bit value, which should NOT be considered as a number - rather, each BIT in the value represents the state of one port. So you need some binary operations ( &, |, and ^ ) to get the state of the port. See page 23-24 in the manual. If you use AND and OR comma...
- Thu May 14, 2020 11:49 am
- Forum: EzSBC1
- Topic: Revision of the EzSBC1
- Replies: 1
- Views: 9109
Re: Revision of the EzSBC1
I have used the revised boards, and they are just as good as the old ones - and a little smaller, to boot. Well done! Note, however, that on a Mac, the terminal login to the board is now different: screen /dev/cu.SLAB_USBtoUART 57600 cs8, ixon, ixoff No serial number is needed, anymore. (See the pre...
- Wed Mar 11, 2020 1:31 pm
- Forum: EzSBC1
- Topic: "New" EzSBC1 module & Macs
- Replies: 0
- Views: 18051
"New" EzSBC1 module & Macs
The "new" version of EzSBC1 has a slightly different login procedure than the old one, when using the Mac OSX Terminal Screen command. This command connects to the new board: screen /dev/cu.SLAB_USBtoUART 57600 cs8, ixon, ixoff (there is no serial number, as with the old boards - thus, the...
- Sun Sep 16, 2018 12:16 pm
- Forum: EzSBC1
- Topic: Switching code banks
- Replies: 2
- Views: 11077
Re: Switching code banks
Not necessary to switch banks, really. You can write the BASIC code in two parts, one for sampling, the other for processing. If you're short on memory, you can ask the admin about a version with asymmetrical banks. Then you can fit everything in bank 1 and do the switch-over in your own code. BTW, ...
- Tue Dec 12, 2017 11:37 pm
- Forum: EzSBC1
- Topic: WiFi from the EzSBC1
- Replies: 0
- Views: 17278
WiFi from the EzSBC1
I've successfully implemented WiFi using an ESP8266 module and an EzSBC1 ! The project is a remotely updatable huge LED matrix display for museum use. Data can be sent/received from a smartphone, laptop or PC with WiFi. The EzSBC1 works as an access point, and upon query sends a webpage form which c...
- Mon Nov 20, 2017 2:47 am
- Forum: EzSBC1
- Topic: Video of "Weather Clock" in operation
- Replies: 0
- Views: 16554
- Wed Nov 15, 2017 9:11 am
- Forum: EzSBC1
- Topic: LED matrix video
- Replies: 0
- Views: 16115
LED matrix video
I prepared a short video describing how I built my LED matrix displays:
https://www.youtube.com/watch?v=L3apD3YRf-0
https://www.youtube.com/watch?v=L3apD3YRf-0
- Tue Oct 03, 2017 11:04 am
- Forum: EzSBC1
- Topic: Piggybacking and -bellying
- Replies: 0
- Views: 16176
Piggybacking and -bellying
PB.jpg Running out of both flash and RAM memory (due to several large fonts for big LED matrix displays), I added 24LC512 EEPROM chips to all my EzSBC1 boards, instantly giving me 64 kBytes of non-volatile memory readable and writable from within the BASIC Code - something you cannot do with the Ez...
- Tue Sep 19, 2017 10:49 am
- Forum: EzSBC1
- Topic: Logarithm subroutine
- Replies: 0
- Views: 11957
Logarithm subroutine
I'm working on a color light meter (using a "TCS230/ TCS3200 Color Recognition Sensor" from eBay), and need to calculate some logarithms... The EzSBC1 doesn't have a log function, but I found an old, classic BASIC subroutine, here modified for the EzSBC1: --------------------------------- ...
- Mon Aug 21, 2017 12:49 am
- Forum: EzSBC1
- Topic: Smooth scrolling IS possible...
- Replies: 1
- Views: 10400
Re: Smooth scrolling IS possible...
The above info has been updated, and the link to the rather poor video removed.
- Thu Aug 17, 2017 8:16 am
- Forum: EzSBC1
- Topic: Smooth scrolling IS possible...
- Replies: 1
- Views: 10400
Smooth scrolling IS possible...
Thinking a bit "outside the box" I figured out a way of getting really smooth scrolling on up to 8 MAX7219 modules. The trick is this: The modules are connected 90° rotated, i.e. with input at bottom, not left, and the modules are NOT connected in series, i.e. DOUT to DIN, instead, all DIN...
- Sun Jul 02, 2017 6:31 am
- Forum: EzSBC1
- Topic: Font editing for LED matrix
- Replies: 0
- Views: 10670
Font editing for LED matrix
I don't know if anyone plans to build a LED matrix display like the ones I've built, but here's a font displaying program including the 3 fonts I've designed (well, the first is actually from an Arduino website, with just a few small changes.) This BASIC code will run without any extra hardware what...
- Thu Jun 29, 2017 2:06 pm
- Forum: EzSBC1
- Topic: Open Source BASIC code for LED "Weather Clock"
- Replies: 2
- Views: 11261
NEW VERSION of the code
I enlarged the "Weather Clock" display by two modules (a whopping $ 1.50 each ;-), and it will now display the time with seconds, in the large, condensed, fat font described in another thread. The LED display now consists of 12 modules, 2 rows of 6, i.e. 16x48 pixels, or a total of 768 LED...
- Tue Jun 27, 2017 4:28 am
- Forum: EzSBC1
- Topic: Open Source BASIC code for LED "Weather Clock"
- Replies: 2
- Views: 11261
Re: Open Source BASIC code for LED "Weather Clock"
Note: You should use ControlBASIC version 0.82 for this project - in older versions, there is a subtle bug in the DHT routines that will freeze the temperature and pressure displays after a few days of running.
- Mon Jun 19, 2017 9:08 am
- Forum: EzSBC1
- Topic: HUGE 2560 LED dot matrix - Open source BASIC code
- Replies: 1
- Views: 10439
Re: HUGE 2560 LED dot matrix - Open source BASIC code
Here's another large font for the huge display (will of course work with a smaller one, too) - it is optimized for readability from far away, and also as narrow as possible, in order to fit more text in the available space. The caps are 13 pixels high, so there are 3 pixels at the bottom reserved fo...