I have tackled the #BMP280 temperature/pressure #sensor on the #picoCalc. Byte level I2C programming (actually normal) in #MMBasic. 24 byte of calibration data and a lengthy calculation procedure included. And I have learned about weather service and actual air pressure:
November 1, 2025 at 11:26 AM
its 2025 and i am relearning BASIC, which i used a LOT from ages 6-18, be it GW, Q, TI or Apple
getting into the MMBASIC spec and i like it, it feels very modern while still being recognizably doofy ol BASIC
getting into the MMBASIC spec and i like it, it feels very modern while still being recognizably doofy ol BASIC
October 13, 2025 at 5:49 AM
its 2025 and i am relearning BASIC, which i used a LOT from ages 6-18, be it GW, Q, TI or Apple
getting into the MMBASIC spec and i like it, it feels very modern while still being recognizably doofy ol BASIC
getting into the MMBASIC spec and i like it, it feels very modern while still being recognizably doofy ol BASIC
New RP2350B board just dropped: really designed for MMBasic, but will likely do for MicroPython:
PicoMite RP2350B DIL Development board, 16Mb flash + 8 MB PSRAM — www.thebackshed.com/forum/ViewTo...
#RP2350 #MMBasic #MicroPython
PicoMite RP2350B DIL Development board, 16Mb flash + 8 MB PSRAM — www.thebackshed.com/forum/ViewTo...
#RP2350 #MMBasic #MicroPython
TheBackShed.com - Forum
The Back Shed's Homegrown Power home page.
www.thebackshed.com
June 24, 2025 at 12:16 PM
New RP2350B board just dropped: really designed for MMBasic, but will likely do for MicroPython:
PicoMite RP2350B DIL Development board, 16Mb flash + 8 MB PSRAM — www.thebackshed.com/forum/ViewTo...
#RP2350 #MMBasic #MicroPython
PicoMite RP2350B DIL Development board, 16Mb flash + 8 MB PSRAM — www.thebackshed.com/forum/ViewTo...
#RP2350 #MMBasic #MicroPython
Behold the glory of MODE 1...
January 8, 2025 at 8:52 AM
Behold the glory of MODE 1...
Surprised to see MMBasic up there. Fun language, but that support forum over at TheBackShed ... oof
March 25, 2025 at 5:14 PM
Surprised to see MMBasic up there. Fun language, but that support forum over at TheBackShed ... oof
Raspberry Pi PicoでPicoMite(MMBasic)を使う〜OLEDディスプレイへの出力 #RaspberryPiPico – Qiita
LCDディスプレイへの出力ができるようになったので次にI2Cベースのディスプレイを接続し、文字列およびグラフィックス出力を行なう。 Amazonで購入したOLEDディスプレイ 0.96インチ 2個入り OLEDモジュール I2C 128X64 4ピン ホワイト Arduinoに対応を使用する。このディスプレイは次のような特徴のOLEDディスプレイです。 サイズ:0.96インチ 解像度:128×64ピクセル 表示色:白…
LCDディスプレイへの出力ができるようになったので次にI2Cベースのディスプレイを接続し、文字列およびグラフィックス出力を行なう。 Amazonで購入したOLEDディスプレイ 0.96インチ 2個入り OLEDモジュール I2C 128X64 4ピン ホワイト Arduinoに対応を使用する。このディスプレイは次のような特徴のOLEDディスプレイです。 サイズ:0.96インチ 解像度:128×64ピクセル 表示色:白…
Raspberry Pi PicoでPicoMite(MMBasic)を使う〜OLEDディスプレイへの出力 #RaspberryPiPico – Qiita
LCDディスプレイへの出力ができるようになったので次にI2Cベースのディスプレイを接続し、文字列およびグラフィックス出力を行なう。 Amazonで購入したOLEDディスプレイ 0.96インチ 2個入り OLEDモジュール I2C 128X64 4ピン ホワイト Arduinoに対応を使用する。このディスプレイは次のような特徴のOLEDディスプレイです。 サイズ:0.96インチ 解像度:128×64ピクセル 表示色:白 Radpberry Pi PicoとOLEDディスプレイは下記のピンを接続する。 OLEDのピン Picoのピン(物理ピン) VDD 3V3(36) GND GND(3) SDA GP14(19) SCL GPD15(20) 配線は次の通り。 PicoMiteがサポートするディスプレイやRTCなどのシステムデバイスを接続するI2CピンはコマンドプロンプトでOPTIONコマンドを使ってプログラムを実行する目に登録する必要がある。また、今回利用するOLEDディスプレイのドライバSD1306はPicoMiteでサポートされているのでOPTIONコマンドでドライバチップを指定すればMMBasicのコマンドで容易に出力を制御できる。システムで使用するI2Cピンとディスプレイのドライバチップの登録コマンドを次に示す。これらのコマンドはコマンドプロンプトで実行する。 システムデバイスを接続するI2Cポートの指定 > OPTION SYSTEM I2C GP14, GP15 ディスプレイのチップとディスプレイの向きの指定 > OPTION LCDPANEL SSD1306I2C, LANDSCAPE SSD1306I2Cは解像度128×64で初期化、SSD1306I2C32を指定すると解像度128×32で初期化されます ディスプレイの向きはLANDSCAPE(横向き)、PORTRAIT(縦向き)、RLANDSCAPE(逆さの横向き)またはRPORTRAIT(逆さの縦向き)のいずれかを指定します。これらは、L、P、RLまたはRPの短縮表記を利用できます 参考:LCDパネル設定を無効化 ディスプレイの向きを変更したい場合、次のコマンドで無効化し、再度設定する。 ディスプレイの1行目に文字列Hello MMBasicをデフォルトのフォントで、2行目に文字列Helloをフォント番号2で、3行目に文字列worldをフォント番号3で表示するプログラムを以下に示す。 CLS ' Clear screen Text 0, 0, "Hello MMBasic!" Text 0, 12, "Hello!",, 2 Text 0, 32, "World!",, 3 …
inmobilexion.com
May 2, 2025 at 4:36 PM
Raspberry Pi PicoでPicoMite(MMBasic)を使う〜OLEDディスプレイへの出力 #RaspberryPiPico – Qiita
LCDディスプレイへの出力ができるようになったので次にI2Cベースのディスプレイを接続し、文字列およびグラフィックス出力を行なう。 Amazonで購入したOLEDディスプレイ 0.96インチ 2個入り OLEDモジュール I2C 128X64 4ピン ホワイト Arduinoに対応を使用する。このディスプレイは次のような特徴のOLEDディスプレイです。 サイズ:0.96インチ 解像度:128×64ピクセル 表示色:白…
LCDディスプレイへの出力ができるようになったので次にI2Cベースのディスプレイを接続し、文字列およびグラフィックス出力を行なう。 Amazonで購入したOLEDディスプレイ 0.96インチ 2個入り OLEDモジュール I2C 128X64 4ピン ホワイト Arduinoに対応を使用する。このディスプレイは次のような特徴のOLEDディスプレイです。 サイズ:0.96インチ 解像度:128×64ピクセル 表示色:白…
... and now for something that takes more than an hour on the Altair 8800
November 28, 2024 at 6:44 AM
... and now for something that takes more than an hour on the Altair 8800
Enjoy the MMBasic 😊👍🏻
June 14, 2025 at 8:46 AM
Enjoy the MMBasic 😊👍🏻
Das beliebte und moderne MMBasic ist nun auch auf Pico2 verfügbar. Die hohe Leistung des Pico2 ermöglicht jetzt weitere Grafikmodi auf VGA und HDMI. #Maker
PicoMite: MMBasic auf Raspberry Pico2
Das beliebte und moderne MMBasic ist nun auch auf Pico2 verfügbar. Die hohe Leistung des Pico2 ermöglicht jetzt weitere Grafikmodi auf VGA und HDMI.
www.heise.de
September 17, 2024 at 10:16 AM
Das beliebte und moderne MMBasic ist nun auch auf Pico2 verfügbar. Die hohe Leistung des Pico2 ermöglicht jetzt weitere Grafikmodi auf VGA und HDMI. #Maker
MMBasic is pretty good...🤔👍🏻
I’ll be there. BBC basic was the best basic!
May 16, 2025 at 10:11 PM
MMBasic is pretty good...🤔👍🏻
There are already a number of Pico based boards with video out:
PicoVision (2040 based)
PicoSystem (2040 based handheld console)
PicoMite - runs MMBasic
PicoCalc
These are just off the top of my head 😎👍🏻
PicoVision (2040 based)
PicoSystem (2040 based handheld console)
PicoMite - runs MMBasic
PicoCalc
These are just off the top of my head 😎👍🏻
April 22, 2025 at 4:05 AM
There are already a number of Pico based boards with video out:
PicoVision (2040 based)
PicoSystem (2040 based handheld console)
PicoMite - runs MMBasic
PicoCalc
These are just off the top of my head 😎👍🏻
PicoVision (2040 based)
PicoSystem (2040 based handheld console)
PicoMite - runs MMBasic
PicoCalc
These are just off the top of my head 😎👍🏻
Fun fact of the day. #MMBasic on the #ClockworkPi #PicoCalc does not implement libraries the same was that #MMBasic on the #Maximite implements libraries. This is not mentioned in the PDF. *sob*
April 16, 2025 at 5:27 PM
Fun fact of the day. #MMBasic on the #ClockworkPi #PicoCalc does not implement libraries the same was that #MMBasic on the #Maximite implements libraries. This is not mentioned in the PDF. *sob*
It runs from a raspberry pi pico h. It comes with mmbasic flashed in it for writing code and interfacing with the GPIO pins. You can flash other softwares onto it such as pico-8 & Doom. Since it’s a coding language environment you can also use it as a calculator :)
May 15, 2025 at 5:36 PM
It runs from a raspberry pi pico h. It comes with mmbasic flashed in it for writing code and interfacing with the GPIO pins. You can flash other softwares onto it such as pico-8 & Doom. Since it’s a coding language environment you can also use it as a calculator :)
Raspberry Pi Pico 2 W running WebMite V6.00.02 beta 3
January 25, 2025 at 7:05 AM
Raspberry Pi Pico 2 W running WebMite V6.00.02 beta 3
I've completed "Encoding Error" - Day 9 - Advent of Code 2020 #AdventOfCode adventofcode.com/2020/day/9
On the #clockworkpi #picocalc in #mmbasic
On the #clockworkpi #picocalc in #mmbasic
Day 9 - Advent of Code 2020
adventofcode.com
April 21, 2025 at 9:18 PM
I've completed "Encoding Error" - Day 9 - Advent of Code 2020 #AdventOfCode adventofcode.com/2020/day/9
On the #clockworkpi #picocalc in #mmbasic
On the #clockworkpi #picocalc in #mmbasic
... now with underclocking support.
January 11, 2025 at 4:55 AM
... now with underclocking support.
Network access confirmed...
A packet stuffed Pi!
A packet stuffed Pi!
January 25, 2025 at 10:21 PM
Network access confirmed...
A packet stuffed Pi!
A packet stuffed Pi!
I've been doing the same. Learned to program in MSBASIC on a TRS-80 and made a career of it. MMBASIC is a fun throwback whether on a handheld PicoCalc or a super-fast CMM2.
October 14, 2025 at 11:30 AM
I've been doing the same. Learned to program in MSBASIC on a TRS-80 and made a career of it. MMBASIC is a fun throwback whether on a handheld PicoCalc or a super-fast CMM2.
I did wonder if it was going to be MMBasic. I have a Colour Maxmite 2 so that's great news 😊👍🏻
I've not really spent much time on the forums, just searched for what I needed at the time, so I didn't realise it was that bad! That is a shame🤦🏻♂️
I've not really spent much time on the forums, just searched for what I needed at the time, so I didn't realise it was that bad! That is a shame🤦🏻♂️
March 26, 2025 at 7:10 AM
I did wonder if it was going to be MMBasic. I have a Colour Maxmite 2 so that's great news 😊👍🏻
I've not really spent much time on the forums, just searched for what I needed at the time, so I didn't realise it was that bad! That is a shame🤦🏻♂️
I've not really spent much time on the forums, just searched for what I needed at the time, so I didn't realise it was that bad! That is a shame🤦🏻♂️
I got tired of practicing SMD and Drag soldering last night and remembered I had a kit for a Pico VGA board. I got it soldered up and had a blast writing some basic Programs in MMBasic. I recommend this as a great Starter Project. www.siliconchip.com.au/Issue/2022/J...
geoffg.net/picomitevga....
geoffg.net/picomitevga....
December 7, 2024 at 10:45 PM
I got tired of practicing SMD and Drag soldering last night and remembered I had a kit for a Pico VGA board. I got it soldered up and had a blast writing some basic Programs in MMBasic. I recommend this as a great Starter Project. www.siliconchip.com.au/Issue/2022/J...
geoffg.net/picomitevga....
geoffg.net/picomitevga....
Just completed #AOC 2020 day 1 on a #ClockworkPi #PicoCalc using #MMBasic
The screen in real life is quite readable, unlike the mirror in the photo.
The screen in real life is quite readable, unlike the mirror in the photo.
April 2, 2025 at 12:45 PM
Just completed #AOC 2020 day 1 on a #ClockworkPi #PicoCalc using #MMBasic
The screen in real life is quite readable, unlike the mirror in the photo.
The screen in real life is quite readable, unlike the mirror in the photo.
... and now for something completely pointless
December 14, 2024 at 11:12 AM
... and now for something completely pointless