已授权发明专利:
CN201410516641.2 一种带导向杆箱锥的型箱及该型箱的造型方法 杜争争;王洪涛;杨洪林;苏少静
CN201410593150.8 一种用于金属型铸造的超长多齿铸铁芯骨及其铸造方法 王洪涛
CN201410838856.6 一种发电机缸体铸造砂芯的冷铁芯骨组合装置及制作方法 王洪涛
CN201410512427.X 一种改善厚大断面灰铸铁石墨等级的方法 孙升;张守全;苏少静;周文军;王洪涛;杨万虎;陶涛;周杰
CN201510480725.X 砂芯吊运装置 于苏杭;王洪涛
CN201410838823.1 一种悬磨式矿石粉碎部件的造型工装及其制作方法 王洪涛
CN201510142943.2 一种斜立式陶瓷过滤网座及采用该过滤网座的浇注系统 王洪涛;宋亮
CN201410276161.3 一种灰铸铁铸件及球铁铸件铸造用的直冷冷铁 刘国峰;苏少静;徐国强;王洪涛;朱伟;陈洪涛;刘剑
审查中发明专利(审查生效日):
CN201610276316.2 铸造用内定位箱锥销套 王洪涛;侯斌 20160817
CN201610489690.0 过滤网支撑座、浇注系统及浇注方法 王洪涛 20161109
CN201710082851.9 设置孕育、球化同步定位机构的浇注装置 王洪涛 20170707
CN201510281833.4 用于铸造生产的定位箱锥及其铸造方法 杜争争;王洪涛 20170201
CN201610020390.8 组合式浇口盆 王洪涛;杜文强 20160622
CN201710383909.3 一种半永久式双浇口盆组合结构及其组合使用方法 王洪涛 20171201
rpi-es9018k2m-dac.c
Version:1.0 StartHTML:000000247 EndHTML:000004138 StartFragment:000000356 EndFragment:000004106 StartSelection:000000356 EndSelection:000004106 SourceURL:https://raw.githubusercontent.com/luoyi/Rpi-ES9018K2M-DAC/master/rpi-es9018k2m-dac.c Continue reading rpi-es9018k2m-dac.c
raspberry pi volumio 9018k2m trick
Volumio 1.4, 1.5 and 1.51 needs to be tricked to play music through the ES9018K2M. If you select a generic DAC driver, you cannot use it for audio output directly using the GUI.
Continue reading raspberry pi volumio 9018k2m trick
raspberry pi moodeaudio device list
Version:1.0 StartHTML:000000189 EndHTML:000003871 StartFragment:000001686 EndFragment:000003815 StartSelection:000001686 EndSelection:000003805 SourceURL:http://www.moodeaudio.org/moodeaudio.org Continue reading raspberry pi moodeaudio device list
failed to open vchiq instance raspbian volumio
If you get an error like “failed to open vchiq instance” you’ll need to do as root:
echo 'SUBSYSTEM=="vchiq",GROUP="video",MODE="0660"' > /etc/udev/rules.d/10-vchiq-permissions.rules
usermod -a -G video [your_username]
- Or as one time temporary solution (until reboot):
chmod a+rw /dev/vchiq
RPi.GPIO on Runeaudio
Thanks for the suggestion MeiT, but i figured how to install RPi.GPIO using this guide i found:http://blog.ghatasheh.com/2013/08/raspberry-pi-setting-up-python-and.html
Continue reading RPi.GPIO on Runeaudio
rpi.gpio on volumio
sudo apt-get update and then sudo apt-get install python-rpi.gpio
用树莓派Raspberry pi+piCorePlayer做HiFi DSD播放端
Getting a Python script to run in the background (as a service) on boot
For some of my projects I write a simple service in Python and need it to start running in the background when the Raspberry Pi boots. Different Linux distributions use different ways of starting and stopping services (some now use Upstart, some systemd). I am using the “Wheezy” Debian distribution on my Raspberry Pi, and in this case the proper way to do this is using an “init script”. These are stored in the /etc/init.d folder. In there you can find scripts that for instance, start the networking system or a print server. Debian Wheezy uses the old Sys V init system which means that these scripts are run according to symbolic links in the /etc/rc.x directories. The Debian documentationexplains this. Continue reading Getting a Python script to run in the background (as a service) on boot