8Bit or 32Bit processors
-
The M0 chip cost less that the 8bit 328, so building your own boards, it cost less...
Then you need to add a radio, $2 to $9. Crystal, $.50, connectors, flash, voltage regulators, leds, capacitors, resistors, pcb board.... ect, all add cost....
But vendors building board, need to make a profit to stay alive, so you pay for their work....
So yes, finish boards in small quantity cost $20 to $40 or so.... not a bad price for what you get.....
-
I see, I didn't realize there were M0 chips so insanely cheap.
-
As manufacturing of chips goes to smaller and smaller die size, chip cost go down and preformance goes up..... older processors cost more to build that newer parts!
It all means better performance, less power and more features for less money...
The intel 8080 when it was introduced was $360, power hungry, no ram, no storage, no I/O, needed a lot of support chips.... we have come a long way!!!!
-
I'm on travel, and do not have any hardware to test with...
some notes:
Use generic M0 processor definition tool-->board--> Arduino zero (native USB port)
If I remember, 2.1.1 has NOT yet implemented sleep for M0 processors
Here is a striped down version of your code.... get it to work first sending messages to your gateway, then start adding your real code back.... This complies, but I DID NOT HAVE ANY HW to test it on...
Make sure you check the radio pins on the feather and that they are correct.
/** * The MySensors Arduino library handles the wireless radio link and protocol * between your home built sensors/actuators and HA controller of choice. * The sensors forms a self healing radio network with optional repeaters. Each * repeater and gateway builds a routing tables in EEPROM which keeps track of the * network topology allowing messages to be routed to nodes. * * Created by Henrik Ekblad <henrik.ekblad@mysensors.org> * Copyright (C) 2013-2015 Sensnology AB * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors * * Documentation: http://www.mysensors.org * Support Forum: http://forum.mysensors.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 2 as published by the Free Software Foundation. * ******************************* * * DESCRIPTION * * Example sketch showing how to send in DS1820B OneWire temperature readings back to the controller * http://www.mysensors.org/build/temp */ // Enable debug prints to serial monitor //#define MY_DEBUG // Enable and select radio type attached //#define MY_RADIO_NRF24 #define MY_RADIO_RFM69 #include <SPI.h> #include <MySensors.h> unsigned long SEND_FREQUENCY = 10000; // Minimum time between send (in milliseconds). We don't want to spam the gateway. unsigned long currentTime = 0; unsigned long lastSendTime = 0; unsigned long keepaliveTime = 0; #define MY_RF69_SPI_CS 8 #define MY_RF69_IRQ_PIN 7 #define MY_RF69_IRQ_NUM 4 // Initialize temperature message MyMessage msg(0,V_TEMP); /* ******************************************** */ void before() { } /* ******************************************** */ void setup() { } /* ******************************************** */ void presentation() { // Send the sketch version information to the gateway and Controller sendSketchInfo("Temperature Sensor", "1.1"); //present(0, S_TEMP); } /* ******************************************** */ void loop() { currentTime = millis(); /* ***************** Send Sensor Data ***************** */ if (currentTime - lastSendTime >= SEND_FREQUENCY) // Only send values at a maximum rate { Serial.println("*** Sending Sensor Data"); lastSendTime = currentTime; // lets send some data float temperature = 67.4; // Send in the new temperature send(msg.setSensor(0).set(temperature,1)); } // end of if } // end of loopYou should also add this to your test code to see debug messages from the MySensor stack.. Also add to gateway, so that you can see what happening on both ends....
/* Enable debug prints to serial monitor on port 0 */ #define MY_DEBUG // used by MySensor #define MY_DEBUG_VERBOSE_RFM69 -
I'm on travel, and do not have any hardware to test with...
some notes:
Use generic M0 processor definition tool-->board--> Arduino zero (native USB port)
If I remember, 2.1.1 has NOT yet implemented sleep for M0 processors
Here is a striped down version of your code.... get it to work first sending messages to your gateway, then start adding your real code back.... This complies, but I DID NOT HAVE ANY HW to test it on...
Make sure you check the radio pins on the feather and that they are correct.
/** * The MySensors Arduino library handles the wireless radio link and protocol * between your home built sensors/actuators and HA controller of choice. * The sensors forms a self healing radio network with optional repeaters. Each * repeater and gateway builds a routing tables in EEPROM which keeps track of the * network topology allowing messages to be routed to nodes. * * Created by Henrik Ekblad <henrik.ekblad@mysensors.org> * Copyright (C) 2013-2015 Sensnology AB * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors * * Documentation: http://www.mysensors.org * Support Forum: http://forum.mysensors.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 2 as published by the Free Software Foundation. * ******************************* * * DESCRIPTION * * Example sketch showing how to send in DS1820B OneWire temperature readings back to the controller * http://www.mysensors.org/build/temp */ // Enable debug prints to serial monitor //#define MY_DEBUG // Enable and select radio type attached //#define MY_RADIO_NRF24 #define MY_RADIO_RFM69 #include <SPI.h> #include <MySensors.h> unsigned long SEND_FREQUENCY = 10000; // Minimum time between send (in milliseconds). We don't want to spam the gateway. unsigned long currentTime = 0; unsigned long lastSendTime = 0; unsigned long keepaliveTime = 0; #define MY_RF69_SPI_CS 8 #define MY_RF69_IRQ_PIN 7 #define MY_RF69_IRQ_NUM 4 // Initialize temperature message MyMessage msg(0,V_TEMP); /* ******************************************** */ void before() { } /* ******************************************** */ void setup() { } /* ******************************************** */ void presentation() { // Send the sketch version information to the gateway and Controller sendSketchInfo("Temperature Sensor", "1.1"); //present(0, S_TEMP); } /* ******************************************** */ void loop() { currentTime = millis(); /* ***************** Send Sensor Data ***************** */ if (currentTime - lastSendTime >= SEND_FREQUENCY) // Only send values at a maximum rate { Serial.println("*** Sending Sensor Data"); lastSendTime = currentTime; // lets send some data float temperature = 67.4; // Send in the new temperature send(msg.setSensor(0).set(temperature,1)); } // end of if } // end of loopThank you very much! This is a big step in the right direction for me and I hope that I can get it to work with that :)
To add to this discussion:
These radios come already assembled. It is true that you could save some money by assembling them yourself and maybe more by ordering directly from Hong Kong (which takes anything between 4-10 weeks) and hoping that they sent you the right stuff. But if you add up the stuff that you would need and the time to solder etc. then at least I would end up spending more for a bigger and uglier radio. -
Still a pro mini is well tested platform, performance is not an issue for a sensor node anyway
-
The only way we can get the shiny new things to be proven hardware, is to have people build stuff using it :) That way, we can have more people testing the hardware, and reporting any bugs (if there is any), and have a better chance for getting it to be the next big thing :)
-
I was wondering where you can get a M0 processor for less then the price of an atmega328p ? Most SAMD21's I see are 5 times the price of an atmega328p (normal given it's much better capacities).
-
atmega328p costs 2.07$ on mouser : http://www.mouser.dk/ProductDetail/Microchip-Technology-Atmel/ATMEGA328P-AU/
If you take the equivalent atsamd20E15, it cost 1.84$ http://www.mouser.dk/ProductDetail/Microchip-Technology-Atmel/ATSAMD20E15A-AU
(both have 32Kb flash)
If you beef up the atsam to the largest memory, it costs 2.36$ http://www.mouser.dk/ProductDetail/Microchip-Technology-Atmel/ATSAMD20E18A-AU
But then you also have 256Kb of flash and 32Kb ram available, for .29$ extra (compared to the atmega328)..
Of course that is not atsamd21, but for a standard node you don't need the USB capabilities of the '21, and a '20 should be enough..
-
On AliExpress you can find STM32 with Cortex M0 for as low as 0.4$ per unit. Not compatible with Arduino unfortunately but for that price the specs are pretty impressive...
And the STM32F103C8T6 which are compatible with Arduino and soon compatible with MySensors are around 1$, similar price than AtMega328 but for Cortex M3 at 48MHz, 64KB of flash, 20KB or RAM and lots of extras. -
@tbowmo said in 8Bit or 32Bit processors:
ATSAMD20E18A-AU
Too bad that MOUSER still charges me 20 EUR for transport, even for something as small as a single chip. I would need to buy for more then 50 EUR before transport cost is waived. How the suppliers on Aliexpress do it, I do not know.
-
@tbowmo said in 8Bit or 32Bit processors:
ATSAMD20E18A-AU
Too bad that MOUSER still charges me 20 EUR for transport, even for something as small as a single chip. I would need to buy for more then 50 EUR before transport cost is waived. How the suppliers on Aliexpress do it, I do not know.
@GertSanders said in 8Bit or 32Bit processors:
How the suppliers on Aliexpress do it, I do not know.
They just use cheaper shipping options that are much slower. It's possible in the US too as you can order PCBs from PCBs.io for 5$ shipping included, and they are in the US.
-
@tbowmo said in 8Bit or 32Bit processors:
ATSAMD20E18A-AU
Too bad that MOUSER still charges me 20 EUR for transport, even for something as small as a single chip. I would need to buy for more then 50 EUR before transport cost is waived. How the suppliers on Aliexpress do it, I do not know.
@GertSanders
ali, or chinese supplier, in fact are cheating a bit for getting those price.when ordering at mouser, i generally order some stock for future boards, and regarding some parts, like passives it's almost same price as ali and you're sure of the quality (and for some sensors i'm sure they're not out of specs, clones..) , with a bigger choice.
but sometimes i have some missing parts too :grimacing:
tme has low shipping cost, or Arrow.com is nice too as it's 20€ minimum order for getting free express shipping ;)I don't know how to get cheaper then..
-
@GertSanders
ali, or chinese supplier, in fact are cheating a bit for getting those price.when ordering at mouser, i generally order some stock for future boards, and regarding some parts, like passives it's almost same price as ali and you're sure of the quality (and for some sensors i'm sure they're not out of specs, clones..) , with a bigger choice.
but sometimes i have some missing parts too :grimacing:
tme has low shipping cost, or Arrow.com is nice too as it's 20€ minimum order for getting free express shipping ;)I don't know how to get cheaper then..
@scalz said in 8Bit or 32Bit processors:
Arrow.com is nice too as it's 20€ minimum order for getting free express shipping ;)
Free shipping to Vietnam also :o
Thank you @scalz I love you :D -
@GertSanders
ali, or chinese supplier, in fact are cheating a bit for getting those price.when ordering at mouser, i generally order some stock for future boards, and regarding some parts, like passives it's almost same price as ali and you're sure of the quality (and for some sensors i'm sure they're not out of specs, clones..) , with a bigger choice.
but sometimes i have some missing parts too :grimacing:
tme has low shipping cost, or Arrow.com is nice too as it's 20€ minimum order for getting free express shipping ;)I don't know how to get cheaper then..
@scalz said in 8Bit or 32Bit processors:
Arrow.com is nice too as it's 20€ minimum order for getting free express shipping ;)
Looks promising! Thank you :)
Anything about quality - is it all genuine parts? -
@sundberg84 for sure ;) they are the same as mouser, digikey, farnell etc.. But they don't all have same stock and price. And it exists even more semiconductors suppliers. As always it depends what you need
-
A number of people have ask me about why I'm using 32bit processors when an 8bit will do. Well its simple, for small development projects of less that a few hundreds unit, the larger flash, larger ram, faster CPU, lower power devices, and cheaper raw devices, allow for faster code development... no time wasted on how to save flash or ram space.. seldom having to concern myself about CPU speed.
If I'm doing a project that requires very large volume, or special needs, I will again consider an 8 or 16bit processor, but again, these days often the 32bit devices are cheaper and more functional.
Below are a number of CPU boards with RFM69 or RFM95 Radios attach that can be used with MySensor.
In MySensor space, for my projects, my favorite 32bit processor board is:
RocketScream M0 ultra pro Ver2, RFM69 or RFM95 radio, battery connector/charger, USB port, EUI64 chip, large external flash, very low power, u.FL or SMA connector, great support...
http://www.rocketscream.com/blog/product/mini-ultra-pro-v2-with-radio/Other 32 Bit:
Adafruit Feather LoRa M0, NO EUI64, No External flash, battery connector
https://www.adafruit.com/product/3178 RFM95
https://www.adafruit.com/product/3176 RFM69Non 32 bit processors:
MoteinoMega LoRa, ATmega1284P, RFM69 or RFM95, EUI64 chip, large external flash, u.FL or SMA connector
https://lowpowerlab.com/shop/product/119Moteino LoRa, ATmega328P, RFM69 or RFM95, large external flash, NO EUI64 chip
https://lowpowerlab.com/shop/product/99Adafruit Feather LoRa, ATmega32U4 CPU, NO EUI64, No External flash, battery connector, RFM69 or RFM95
https://www.adafruit.com/product/3078@lafleur
Which IDE do you use/recommend for the 32-bit mcu's?In the 8-bit realm, I'm most familiar with the atmega328p. RAM is certainly limited, the 10-bit ADC leaves me wanting, no DAC, no RTC, and the only asynchronous counter is only 8 bits! So, for an upgrade, I'd like all those things and a wider counter. Ideally, it would have a large enough memory that I could easily download new sketches OTA without having to buy and install additional external flash memory (which is how the Moteino does it) to hold a new sketch until it has been validated as correctly received before it is installed and then activated as the primary sketch. On the other hand, I wouldn't want current consumption during sleep to be any worse than the atmega328p. It's ultra-low powerdown current consumption is what I find most attractive about the atmega328p, and it's one of the main reasons why I use it.
I suppose the other reason is an abundance of libraries that work with it and that are well supported (due to the large number of Arduino users asking and answering questions as well as writing libraries).