Search found 715 matches

by stevech
29 April 2016, 19:23 PM
Forum: ZBasic Language
Topic: 32-bit chips
Replies: 8
Views: 10658

The issue boils down to what targets to implement. STM32F3xxx or STM32F4xxx with ST's open source Standard Peripheral Library (SPL) or the newer Hardware Abstraction Library (HAL), free. The CubeMX free GUI for doing the pinout and auto-generating main.c and all the I/O init make it easy to move be...
by stevech
09 January 2016, 15:08 PM
Forum: General
Topic: $5 WiFi module
Replies: 53
Views: 39586

Hello, all... long time since I've been here. Been busy writing STM32F4xx C code in my consulting work. Love those processors.. much better than Freescale ARM Cortex. On the hobby front: I've bought and played with, so far: New Teensy Low Cost (LC). OK if you are a Teensy devote' which I was at one ...
by stevech
09 January 2016, 14:51 PM
Forum: General
Topic: ESP32
Replies: 16
Views: 20869

by stevech
10 December 2014, 22:18 PM
Forum: ZBasic Language
Topic: Strain gauges and weighing cars
Replies: 18
Views: 10066

I'm working on a professional project using load cells for impact magnitude detection. Pretty easy - just an op-amp (external or if the MCU has it, on-chip), then into an ADC. My round 1 was on AVR mega328, then mega1284, now moving to ST32F415 to get faster ADCs and CPU speed for math. Lots of load...
by stevech
10 December 2014, 22:17 PM
Forum: ZBasic Language
Topic: Load cells
Replies: 0
Views: 4411

Load cells

I'm working on a professional project using load cells for impact magnitude detection.
Pretty easy - just an op-amp (external or if the MCU has it, on-chip), then into an ADC. My round 1 was on AVR mega328, not moving to ST32F415.
Lots of load cells in this project. Mix of 20lb and 200lb.
by stevech
07 April 2014, 20:55 PM
Forum: Files
Topic: Hayes AT modem / UART OK and ERROR handling
Replies: 5
Views: 7566

I'd done it many times.. XBees, modems, GPS, etc. Just read until I get CR; discard LF. Then take that char string to lower case and go into a big if and else if tree where each decision is based on if (strncmp(chars, "keyword", length_of_keyword) == 0) this, rather than one char at a time.
by stevech
05 April 2014, 13:02 PM
Forum: ZBasic Language
Topic: Tracking cats internally
Replies: 3
Views: 3140

Doable but not easy to code, have each IR emitter transmit uniquely. Ways I've seen this done: 1) Receiver on (cat) receives a beacon sent wirelessly house-wide. Each IR emitter then uses a time offset from the beacon. In analyzing the received IR blip, the time offset from the beacon can be used to...
by stevech
14 February 2014, 10:52 AM
Forum: ZBasic Native Mode
Topic: 3-wire Serial
Replies: 7
Views: 12601

Inverse Square Law in RF propagation....
Double the distance to halve the (received) power.

That makes signal strength based ranging hard, with line of sight.
by stevech
01 January 2014, 23:05 PM
Forum: ZBasic Language
Topic: Comments on AN217
Replies: 2
Views: 2047

considered using fixed point in an 16 or 32 bit int?
by stevech
27 October 2013, 13:58 PM
Forum: ZBasic Language
Topic: Pot position measurement
Replies: 6
Views: 3524

Re: Pot position measurement

On my cruise control project, the pedal actuator has a position pot, but strangely I can only find 2 wires, and resistance varies from approx. 0 ohms to 2.8k from end to end travel. I was expecting a 3 wire pot I could put a voltage across and measure the wiper output but this doesn't seem to be av...
by stevech
22 June 2013, 16:12 PM
Forum: General
Topic: ZX device as a USB host
Replies: 6
Views: 9318

Not much RAM, but couldn't ZBasic native target the ATMEGA32U4? You'd have to find/integrate a USB driver.
by stevech
16 June 2013, 22:44 PM
Forum: General
Topic: Field firmware update via GSM
Replies: 4
Views: 7075

Here's how I do it... Field device sends heartbeat via Internet to server. Server must respond. Hearbeat is an application IP packet sent via TCP or UDP. To do an update, the server intentionally stops responding to heartbeats. After a while, the field device says - no heartbeats, so I'll reboot mys...
by stevech
17 April 2013, 20:39 PM
Forum: ZBasic Native Mode
Topic: ZX device as slave to Raspberry Pi
Replies: 10
Views: 15757

> . Oh, you mean USB/RS232 dongles? Yeah, but only two working USB host ports work reliably. Add a hub and you're in trouble, and the ports need to run at 1.1 speed for sound modules. USB glitching is another of the Pi's failings, presumably fixable via firmware - but not so far despite many compla...
by stevech
16 April 2013, 19:46 PM
Forum: ZBasic Native Mode
Topic: ZX device as slave to Raspberry Pi
Replies: 10
Views: 15757

I have an RPi too. Fun little thing. But The Pi has two UARTS but they use the same GPIO pins, oddly, so only one can be used at any moment, and it has no ADC - so a ZX-24x will fill those gaps, add some additional I/O and provide another hardware watchdog. [While very reliable in my testing so far,...
by stevech
24 January 2013, 19:57 PM
Forum: General
Topic: Android USB adapter and app allows ZX control
Replies: 19
Views: 17700

Thanks. I've been reading about Basic4Android...
The current software we have is in Java.